Home | History | Annotate | Line # | Download | only in conf
Makefile.powerpc revision 1.9.2.1
      1  1.9.2.1   thorpej #	$NetBSD: Makefile.powerpc,v 1.9.2.1 1997/11/12 23:45:50 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.1        ws # N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE
     16      1.1        ws #	IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING
     17      1.1        ws #
     18      1.1        ws # -DTRACE	compile in kernel tracing hooks
     19      1.1        ws # -DQUOTA	compile in file system quotas
     20      1.1        ws #
     21      1.1        ws .SUFFIXES:	.S .c .o
     22      1.1        ws 
     23      1.1        ws # DEBUG is set to -g if debugging.
     24      1.1        ws # PROF is set to -pg if profiling.
     25      1.1        ws 
     26  1.9.2.1   thorpej AR?=	ar
     27  1.9.2.1   thorpej AS?=	as
     28      1.1        ws CC?=	cc
     29  1.9.2.1   thorpej CPP?=	cpp
     30      1.1        ws LD?=	ld
     31  1.9.2.1   thorpej LORDER?=lorder
     32      1.1        ws MKDEP?=	mkdep
     33  1.9.2.1   thorpej NM?=	nm
     34  1.9.2.1   thorpej RANLIB?=ranlib
     35      1.1        ws SIZE?=	size
     36  1.9.2.1   thorpej STRIP?=	strip
     37  1.9.2.1   thorpej TSORT?=	tsort -q
     38  1.9.2.1   thorpej 
     39  1.9.2.1   thorpej COPTS?= -O2
     40      1.1        ws 
     41      1.1        ws # source tree is located via $S relative to the compilation directory
     42      1.1        ws .ifndef	S
     43      1.1        ws S!=	cd ../../../..; pwd
     44      1.1        ws .endif
     45      1.1        ws PPC=	$S/arch/powerpc
     46      1.1        ws 
     47      1.1        ws INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     48      1.6   thorpej CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
     49      1.1        ws 		-Dpowerpc
     50      1.1        ws CWARNFLAGS=	-Werror -Wreturn-type
     51      1.2  jonathan CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
     52      1.1        ws AFLAGS=		-D_LOCORE
     53      1.6   thorpej LINKFLAGS=	-N -Ttext 100000 -e __start
     54      1.6   thorpej STRIPFLAGS=	--strip-debug
     55      1.1        ws 
     56      1.1        ws ### find out what to use for libkern
     57      1.1        ws .include "$S/lib/libkern/Makefile.inc"
     58      1.1        ws .ifndef PROF
     59      1.1        ws LIBKERN=	${KERNLIB}
     60      1.1        ws .else
     61      1.1        ws LIBKERN=	${KERNLIB_PROF}
     62      1.1        ws .endif
     63      1.1        ws 
     64      1.1        ws ### find out what to use for libcompat
     65      1.1        ws .include "$S/compat/common/Makefile.inc"
     66      1.1        ws .ifndef PROF
     67      1.1        ws LIBCOMPAT=	${COMPATLIB}
     68      1.1        ws .else
     69      1.1        ws LIBCOMPAT=	${COMPATLIB_PROF}
     70      1.1        ws .endif
     71      1.1        ws 
     72      1.1        ws # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     73      1.1        ws # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     74      1.1        ws 
     75      1.1        ws NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     76      1.1        ws 
     77      1.1        ws NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     78      1.1        ws 
     79      1.1        ws #.c.o:
     80      1.1        ws #	${NORMAL_C}
     81      1.1        ws #
     82      1.1        ws #.S.o:
     83      1.1        ws #	${NORMAL_S}
     84      1.1        ws 
     85      1.1        ws %OBJS
     86      1.1        ws 
     87      1.1        ws %CFILES
     88      1.1        ws 
     89      1.1        ws %SFILES
     90      1.1        ws 
     91      1.1        ws # load lines for config "xxx" will be emitted as:
     92      1.1        ws # xxx: ${SYSTEM_DEP} swapxxx.o
     93      1.1        ws #	${SYSTEM_LD_HEAD}
     94      1.1        ws #	${SYSTEM_LD} swapxxx.o
     95      1.1        ws #	${SYSTEM_LD_TAIL}
     96      1.1        ws SYSTEM_OBJ=	locore.o \
     97      1.1        ws 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     98      1.1        ws SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     99      1.1        ws SYSTEM_LD_HEAD=	rm -f $@
    100      1.1        ws SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
    101      1.1        ws 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
    102      1.1        ws SYSTEM_LD_TAIL=	@${SIZE} $@; chmod 755 $@
    103      1.1        ws 
    104      1.1        ws DEBUG?=
    105      1.1        ws .if ${DEBUG} == "-g"
    106      1.1        ws LINKFLAGS+=	-X
    107      1.1        ws SYSTEM_LD_TAIL+=; \
    108      1.1        ws 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    109      1.1        ws 		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
    110      1.1        ws .else
    111      1.1        ws LINKFLAGS+=	-S
    112      1.1        ws .endif
    113      1.1        ws 
    114      1.1        ws %LOAD
    115      1.1        ws 
    116      1.7   thorpej assym.h: $S/kern/genassym.sh ${PPC}/powerpc/genassym.cf
    117      1.6   thorpej 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
    118      1.7   thorpej 	    < ${PPC}/powerpc/genassym.cf > assym.h.tmp && \
    119      1.6   thorpej 	mv -f assym.h.tmp assym.h
    120      1.1        ws 
    121      1.1        ws param.c: $S/conf/param.c
    122      1.1        ws 	rm -f param.c
    123      1.1        ws 	cp $S/conf/param.c .
    124      1.1        ws 
    125      1.1        ws param.o: param.c Makefile
    126      1.1        ws 	${NORMAL_C}
    127      1.1        ws 
    128      1.1        ws ioconf.o: ioconf.c
    129      1.1        ws 	${NORMAL_C}
    130      1.1        ws 
    131      1.1        ws newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    132      1.1        ws 	sh $S/conf/newvers.sh
    133      1.1        ws 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    134      1.1        ws 
    135      1.9  christos __CLEANKERNEL: .USE
    136      1.9  christos 	@echo "${.TARGET}ing the kernel objects"
    137      1.1        ws 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    138      1.9  christos 	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
    139      1.9  christos 
    140      1.9  christos __CLEANDEPEND: .USE
    141      1.9  christos 	rm -f .depend
    142      1.9  christos 
    143      1.9  christos clean: __CLEANKERNEL
    144      1.9  christos 
    145      1.9  christos cleandir: __CLEANKERNEL __CLEANDEPEND
    146      1.1        ws 
    147      1.1        ws lint:
    148      1.3     perry 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    149      1.4     perry 		${PPC}/powerpc/Locore.c ${CFILES} \
    150      1.1        ws 		ioconf.c param.c | \
    151      1.1        ws 		grep -v 'static function .* unused'
    152      1.1        ws 
    153      1.1        ws tags:
    154      1.1        ws 	@echo "see $S/kern/Makefile for tags"
    155      1.1        ws 
    156      1.1        ws links:
    157      1.1        ws 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    158      1.1        ws 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    159      1.1        ws 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    160      1.1        ws 	  sort -u | comm -23 - dontlink | \
    161      1.1        ws 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    162      1.1        ws 	sh makelinks && rm -f dontlink
    163      1.1        ws 
    164      1.1        ws SRCS=	${PPC}/powerpc/locore.S \
    165      1.1        ws 	param.c ioconf.c ${CFILES} ${SFILES}
    166      1.6   thorpej depend: .depend
    167      1.1        ws .depend: ${SRCS} assym.h param.c
    168      1.1        ws 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${PPC}/powerpc/locore.S
    169      1.1        ws 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    170      1.1        ws .if ${SFILES} != ""
    171      1.1        ws 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    172      1.1        ws .endif
    173      1.8       leo 	sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \
    174      1.8       leo 	  ${CPPFLAGS} < ${PPC}/powerpc/genassym.cf
    175      1.8       leo 	@sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend
    176      1.8       leo 	@rm -f assym.dep
    177      1.1        ws 
    178      1.1        ws # depend on root or device configuration
    179      1.1        ws autoconf.o conf.o: Makefile
    180      1.1        ws 
    181      1.1        ws # depend on network or filesystem configuration
    182      1.1        ws uipc_proto.o vfs_conf.o: Makefile
    183      1.1        ws 
    184      1.1        ws # depend on maxusers
    185      1.6   thorpej machdep.o: Makefile
    186      1.1        ws 
    187      1.1        ws # depend on CPU configuration
    188      1.1        ws locore.o machdep.o: Makefile
    189      1.1        ws 
    190      1.1        ws 
    191      1.1        ws locore.o: ${PPC}/powerpc/locore.S assym.h
    192      1.1        ws 	${NORMAL_S}
    193      1.1        ws 
    194      1.1        ws %RULES
    195