Makefile.i386 revision 1.84
1# $NetBSD: Makefile.i386,v 1.84 1997/09/30 22:10:32 christos Exp $ 2 3# Makefile for NetBSD 4# 5# This makefile is constructed from a machine description: 6# config machineid 7# Most changes should be made in the machine description 8# /sys/arch/i386/conf/``machineid'' 9# after which you should do 10# config machineid 11# Machine generic makefile changes should be made in 12# /sys/arch/i386/conf/Makefile.i386 13# after which config should be rerun for all machines of that type. 14# 15# N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE 16# IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING 17# 18# -DTRACE compile in kernel tracing hooks 19# -DQUOTA compile in file system quotas 20 21# DEBUG is set to -g if debugging. 22# PROF is set to -pg if profiling. 23 24CC?= cc 25LD?= ld 26MKDEP?= mkdep 27STRIP?= strip 28COPTS?= -O2 29 30# source tree is located via $S relative to the compilation directory 31.ifndef S 32S!= cd ../../../..; pwd 33.endif 34I386= $S/arch/i386 35 36INCLUDES= -I. -I$S/arch -I$S -nostdinc 37CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ 38 -Di386 39CWARNFLAGS= -Werror -Wall -Wmissing-prototypes -Wstrict-prototypes 40CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} 41AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 42LINKFLAGS= -z -Ttext F8100000 -e start 43STRIPFLAGS= -d 44 45### find out what to use for libkern 46.include "$S/lib/libkern/Makefile.inc" 47.ifndef PROF 48LIBKERN= ${KERNLIB} 49.else 50LIBKERN= ${KERNLIB_PROF} 51.endif 52 53### find out what to use for libcompat 54.include "$S/compat/common/Makefile.inc" 55.ifndef PROF 56LIBCOMPAT= ${COMPATLIB} 57.else 58LIBCOMPAT= ${COMPATLIB_PROF} 59.endif 60 61# compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 62# HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 63 64NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 65NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 66 67%OBJS 68 69%CFILES 70 71%SFILES 72 73# load lines for config "xxx" will be emitted as: 74# xxx: ${SYSTEM_DEP} swapxxx.o 75# ${SYSTEM_LD_HEAD} 76# ${SYSTEM_LD} swapxxx.o 77# ${SYSTEM_LD_TAIL} 78SYSTEM_OBJ= locore.o \ 79 param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 80SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 81SYSTEM_LD_HEAD= rm -f $@ 82SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 83 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 84SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 85 86DEBUG?= 87.if ${DEBUG} == "-g" 88LINKFLAGS+= -X 89SYSTEM_LD_TAIL+=; \ 90 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 91 echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@ 92.else 93LINKFLAGS+= -S 94.endif 95 96%LOAD 97 98assym.h: $S/kern/genassym.sh ${I386}/i386/genassym.cf 99 sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \ 100 < ${I386}/i386/genassym.cf > assym.h.tmp && \ 101 mv -f assym.h.tmp assym.h 102 103param.c: $S/conf/param.c 104 rm -f param.c 105 cp $S/conf/param.c . 106 107param.o: param.c Makefile 108 ${NORMAL_C} 109 110ioconf.o: ioconf.c 111 ${NORMAL_C} 112 113newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 114 sh $S/conf/newvers.sh 115 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 116 117 118__CLEANKERNEL: .USE 119 @echo "${.TARGET}ing the kernel objects" 120 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 121 [Ee]rrs linterrs makelinks assym.h.tmp assym.h 122 123__CLEANDEPEND: .USE 124 rm -f .depend 125 126clean: __CLEANKERNEL 127 128cleandir: __CLEANKERNEL __CLEANDEPEND 129 130lint: 131 @lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \ 132 ${I386}/i386/Locore.c ${CFILES} \ 133 ioconf.c param.c | \ 134 grep -v 'static function .* unused' 135 136tags: 137 @echo "see $S/kern/Makefile for tags" 138 139links: 140 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 141 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 142 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 143 sort -u | comm -23 - dontlink | \ 144 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 145 sh makelinks && rm -f dontlink 146 147SRCS= ${I386}/i386/locore.s \ 148 param.c ioconf.c ${CFILES} ${SFILES} 149depend: .depend 150.depend: ${SRCS} assym.h param.c 151 ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${I386}/i386/locore.s 152 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 153 ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 154 sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ 155 ${CPPFLAGS} < ${I386}/i386/genassym.cf 156 @sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend 157 @rm -f assym.dep 158 159 160# depend on root or device configuration 161autoconf.o conf.o: Makefile 162 163# depend on network or filesystem configuration 164uipc_proto.o vfs_conf.o: Makefile 165 166# depend on maxusers 167machdep.o: Makefile 168 169# depend on CPU configuration 170locore.o machdep.o: Makefile 171 172 173locore.o: ${I386}/i386/locore.s assym.h 174 ${NORMAL_S} 175 176%RULES 177