Home | History | Annotate | Line # | Download | only in conf
Makefile.powerpc revision 1.13.4.2
      1  1.13.4.2  thorpej #	$NetBSD: Makefile.powerpc,v 1.13.4.2 2002/01/10 19:47:58 thorpej Exp $
      2       1.1       ws #
      3       1.1       ws # Makefile for NetBSD
      4       1.1       ws #
      5       1.1       ws # This makefile is constructed from a machine description:
      6       1.1       ws #	config machineid
      7       1.1       ws # Most changes should be made in the machine description
      8       1.1       ws #	/sys/arch/powerpc/conf/``machineid''
      9       1.1       ws # after which you should do
     10       1.1       ws #	config machineid
     11       1.1       ws # Machine generic makefile changes should be made in
     12       1.1       ws #	/sys/arch/powerpc/conf/Makefile.powerpc
     13       1.1       ws # after which config should be rerun for all machines of that type.
     14       1.1       ws #
     15  1.13.4.2  thorpej # To specify debugging, add the config line: makeoptions DEBUG="-g"
     16  1.13.4.2  thorpej # A better way is to specify -g only for a few files.
     17       1.1       ws #
     18  1.13.4.2  thorpej #	makeoptions DEBUGLIST="uvm* trap if_*"
     19  1.13.4.1  thorpej 
     20  1.13.4.2  thorpej MACHINE_ARCH=powerpc
     21  1.13.4.2  thorpej USETOOLS?=	no
     22  1.13.4.2  thorpej NEED_OWN_INSTALL_TARGET?=no
     23  1.13.4.2  thorpej .include <bsd.own.mk>
     24  1.13.4.2  thorpej 
     25  1.13.4.2  thorpej ##
     26  1.13.4.2  thorpej ## (1) port identification
     27  1.13.4.2  thorpej ##
     28  1.13.4.2  thorpej THISPPC=	$S/arch/${MACHINE}
     29  1.13.4.2  thorpej POWERPC=	$S/arch/powerpc
     30  1.13.4.2  thorpej GENASSYM=	${THISPPC}/${MACHINE}/genassym.cf
     31  1.13.4.2  thorpej .-include "${THISPPC}/conf/Makefile.${MACHINE}.inc"
     32       1.1       ws 
     33  1.13.4.2  thorpej ##
     34  1.13.4.2  thorpej ## (2) compile settings
     35  1.13.4.2  thorpej ##
     36  1.13.4.2  thorpej CPPFLAGS+=	-D${MACHINE}
     37  1.13.4.2  thorpej CWARNFLAGS+=	-Wreturn-type
     38  1.13.4.2  thorpej CFLAGS+=	-msoft-float ${CCPUOPTS}
     39  1.13.4.2  thorpej AFLAGS+=	${AOPTS}
     40  1.13.4.2  thorpej 
     41  1.13.4.2  thorpej ##
     42  1.13.4.2  thorpej ## (3) libkern and compat
     43  1.13.4.2  thorpej ##
     44  1.13.4.2  thorpej 
     45  1.13.4.2  thorpej ##
     46  1.13.4.2  thorpej ## (4) local objects, compile rules, and dependencies
     47  1.13.4.2  thorpej ##
     48  1.13.4.2  thorpej MD_OBJS=	locore.o
     49  1.13.4.2  thorpej MD_CFILES=
     50  1.13.4.2  thorpej MD_SFILES=	${THISPPC}/${MACHINE}/locore.S
     51       1.1       ws 
     52  1.13.4.2  thorpej locore.o: ${THISPPC}/${MACHINE}/locore.S assym.h
     53  1.13.4.2  thorpej 	${NORMAL_S}
     54      1.11  thorpej 
     55  1.13.4.2  thorpej ##
     56  1.13.4.2  thorpej ## (5) link settings
     57  1.13.4.2  thorpej ##
     58  1.13.4.1  thorpej TEXTADDR?=	0x100000
     59  1.13.4.2  thorpej LINKFORMAT=	-N
     60  1.13.4.2  thorpej ENTRYPOINT=	__start
     61       1.1       ws 
     62  1.13.4.2  thorpej .if defined(NEED_SREC)
     63  1.13.4.2  thorpej SYSTEM_LD_TAIL_EXTRA=; \
     64  1.13.4.2  thorpej 		${OBJCOPY} -v -O srec $@ $@.srec
     65       1.1       ws .endif
     66       1.1       ws 
     67  1.13.4.2  thorpej ##
     68  1.13.4.2  thorpej ## (6) port specific target dependencies
     69  1.13.4.2  thorpej ##
     70       1.1       ws 
     71  1.13.4.2  thorpej # depend on CPU configuration
     72  1.13.4.2  thorpej locore.o machdep.o: Makefile
     73  1.13.4.1  thorpej 
     74  1.13.4.2  thorpej ##
     75  1.13.4.2  thorpej ## (7) misc settings
     76  1.13.4.2  thorpej ##
     77  1.13.4.2  thorpej 
     78  1.13.4.2  thorpej ##
     79  1.13.4.2  thorpej ## (8) config(8) generated machinery
     80  1.13.4.2  thorpej ##
     81  1.13.4.1  thorpej %INCLUDES
     82  1.13.4.1  thorpej 
     83       1.1       ws %OBJS
     84       1.1       ws 
     85       1.1       ws %CFILES
     86       1.1       ws 
     87       1.1       ws %SFILES
     88       1.1       ws 
     89       1.1       ws %LOAD
     90       1.1       ws 
     91       1.1       ws %RULES
     92  1.13.4.2  thorpej 
     93  1.13.4.2  thorpej ##
     94  1.13.4.2  thorpej ## (9) port independent kernel machinery
     95  1.13.4.2  thorpej ##
     96  1.13.4.2  thorpej .include "$S/conf/Makefile.kern.inc"
     97