Home | History | Annotate | Line # | Download | only in conf
Makefile.ia64 revision 1.1.6.2
      1  1.1.6.2  simonb #	$NetBSD: Makefile.ia64,v 1.1.6.2 2006/04/22 11:37:35 simonb Exp $
      2  1.1.6.2  simonb 
      3  1.1.6.2  simonb # Makefile for NetBSD
      4  1.1.6.2  simonb #
      5  1.1.6.2  simonb # This makefile is constructed from a machine description:
      6  1.1.6.2  simonb #	config machineid
      7  1.1.6.2  simonb # Most changes should be made in the machine description
      8  1.1.6.2  simonb #	/sys/arch/ia64/conf/``machineid''
      9  1.1.6.2  simonb # after which you should do
     10  1.1.6.2  simonb #	config machineid
     11  1.1.6.2  simonb # Machine generic makefile changes should be made in
     12  1.1.6.2  simonb #	/sys/arch/ia64/conf/Makefile.ia64
     13  1.1.6.2  simonb # after which config should be rerun for all machines of that type.
     14  1.1.6.2  simonb #
     15  1.1.6.2  simonb # To specify debugging, add the config line: makeoptions DEBUG="-g"
     16  1.1.6.2  simonb # A better way is to specify -g only for a few files.
     17  1.1.6.2  simonb #
     18  1.1.6.2  simonb #	makeoptions DEBUGLIST="uvm* trap if_*"
     19  1.1.6.2  simonb 
     20  1.1.6.2  simonb MACHINE_ARCH=	ia64
     21  1.1.6.2  simonb USETOOLS?=	no
     22  1.1.6.2  simonb NEED_OWN_INSTALL_TARGET?=no
     23  1.1.6.2  simonb .include <bsd.own.mk>
     24  1.1.6.2  simonb 
     25  1.1.6.2  simonb ##
     26  1.1.6.2  simonb ## (1) port identification
     27  1.1.6.2  simonb ##
     28  1.1.6.2  simonb IA64=		$S/arch/ia64
     29  1.1.6.2  simonb GENASSYM_CONF=	${IA64}/ia64/genassym.cf
     30  1.1.6.2  simonb 
     31  1.1.6.2  simonb ##
     32  1.1.6.2  simonb ## (2) compile settings
     33  1.1.6.2  simonb ##
     34  1.1.6.2  simonb CPPFLAGS+=	-mconstant-gp -Dia64
     35  1.1.6.2  simonb AFLAGS+=	-x assembler-with-cpp -Wa,-x 
     36  1.1.6.2  simonb 
     37  1.1.6.2  simonb ##
     38  1.1.6.2  simonb ## (3) libkern and compat
     39  1.1.6.2  simonb ##
     40  1.1.6.2  simonb KERN_AS=	obj
     41  1.1.6.2  simonb 
     42  1.1.6.2  simonb ##
     43  1.1.6.2  simonb ## (4) local objects, compile rules, and dependencies
     44  1.1.6.2  simonb ##
     45  1.1.6.2  simonb MD_OBJS=	locore.o 
     46  1.1.6.2  simonb MD_CFILES=
     47  1.1.6.2  simonb MD_SFILES=	${IA64}/ia64/locore.S
     48  1.1.6.2  simonb 
     49  1.1.6.2  simonb locore.o: ${IA64}/ia64/locore.S assym.h
     50  1.1.6.2  simonb 	${NORMAL_S}
     51  1.1.6.2  simonb ##
     52  1.1.6.2  simonb ## (5) link settings
     53  1.1.6.2  simonb ##
     54  1.1.6.2  simonb ##TEXTADDR?=	0xdeadbeeffeeddead
     55  1.1.6.2  simonb LINKFLAGS_NORMAL=	-X
     56  1.1.6.2  simonb KERN_LDSCRIPT?=	kern.ldscript
     57  1.1.6.2  simonb LINKFORMAT=	-T ${IA64}/conf/${KERN_LDSCRIPT}
     58  1.1.6.2  simonb 
     59  1.1.6.2  simonb ##
     60  1.1.6.2  simonb ## (6) port specific target dependencies
     61  1.1.6.2  simonb ##
     62  1.1.6.2  simonb 
     63  1.1.6.2  simonb clock.o: config_time.h
     64  1.1.6.2  simonb 
     65  1.1.6.2  simonb ##
     66  1.1.6.2  simonb ## (7) misc settings
     67  1.1.6.2  simonb ##
     68  1.1.6.2  simonb 
     69  1.1.6.2  simonb ##
     70  1.1.6.2  simonb ## (8) config(8) generated machinery
     71  1.1.6.2  simonb ##
     72  1.1.6.2  simonb %INCLUDES
     73  1.1.6.2  simonb 
     74  1.1.6.2  simonb %OBJS
     75  1.1.6.2  simonb 
     76  1.1.6.2  simonb %CFILES
     77  1.1.6.2  simonb 
     78  1.1.6.2  simonb %SFILES
     79  1.1.6.2  simonb 
     80  1.1.6.2  simonb %LOAD
     81  1.1.6.2  simonb 
     82  1.1.6.2  simonb %RULES
     83  1.1.6.2  simonb 
     84  1.1.6.2  simonb 
     85  1.1.6.2  simonb ##
     86  1.1.6.2  simonb ## (9) port independent kernel machinery
     87  1.1.6.2  simonb ##
     88  1.1.6.2  simonb .include "$S/conf/Makefile.kern.inc"
     89  1.1.6.2  simonb 
     90  1.1.6.2  simonb ##
     91  1.1.6.2  simonb ## (10) Appending make options.
     92  1.1.6.2  simonb ##
     93  1.1.6.2  simonb %MAKEOPTIONSAPPEND
     94