1 # $NetBSD: Makefile.sparc,v 1.36 1996/08/31 21:41:46 mycroft 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/sparc/conf/``machineid'' 9 # after which you should do 10 # config machineid 11 # Machine generic makefile changes should be made in 12 # /sys/arch/sparc/conf/Makefile.sparc 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 24 CC?= cc 25 LD?= ld 26 MKDEP?= mkdep 27 STRIP?= strip -d 28 TOUCH?= touch -f -c 29 30 # source tree is located via $S relative to the compilation directory 31 .ifndef S 32 S!= cd ../../../..; pwd 33 .endif 34 SPARC= $S/arch/sparc 35 36 INCLUDES= -I. -I$S/arch -I$S -nostdinc 37 CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL 38 CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes 39 CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 40 AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 41 LINKFLAGS= -N -p -Ttext F8004000 -e start 42 43 ### find out what to use for libkern 44 .include "$S/lib/libkern/Makefile.inc" 45 .ifndef PROF 46 LIBKERN= ${KERNLIB} 47 .else 48 LIBKERN= ${KERNLIB_PROF} 49 .endif 50 51 ### find out what to use for libcompat 52 .include "$S/compat/common/Makefile.inc" 53 .ifndef PROF 54 LIBCOMPAT= ${COMPATLIB} 55 .else 56 LIBCOMPAT= ${COMPATLIB_PROF} 57 .endif 58 59 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 60 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 61 62 NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 63 NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 64 65 HOSTED_C= ${NORMAL_C:S/^-pg$//:S/^-p$//:S/^-nostdinc$//} 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} 78 SYSTEM_OBJ= locore.o \ 79 param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 80 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 81 SYSTEM_LD_HEAD= @rm -f $@ 82 SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 83 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 84 SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 85 86 DEBUG?= 87 .if ${DEBUG} == "-g" 88 LINKFLAGS+= -X 89 SYSTEM_LD_TAIL+=; \ 90 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 91 echo ${STRIP} $@; ${STRIP} $@ 92 .else 93 LINKFLAGS+= -S 94 .endif 95 96 %LOAD 97 98 assym.h: genassym 99 ./genassym >assym.h 100 101 genassym: genassym.o 102 ${CC} -o $@ genassym.o 103 104 genassym.o: ${SPARC}/sparc/genassym.c 105 ${HOSTED_C} 106 107 param.c: $S/conf/param.c 108 rm -f param.c 109 cp $S/conf/param.c . 110 111 param.o: param.c Makefile 112 ${NORMAL_C} 113 114 ioconf.o: ioconf.c 115 ${NORMAL_C} 116 117 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 118 sh $S/conf/newvers.sh 119 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 120 121 122 clean:: 123 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 124 [Ee]rrs linterrs makelinks genassym genassym.o assym.h 125 126 lint: 127 @lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \ 128 ${SPARC}/sparc/Locore.c ${CFILES} ${SPARC}/sparc/swapgeneric.c \ 129 ioconf.c param.c | \ 130 grep -v 'static function .* unused' 131 132 tags: 133 @echo "see $S/kern/Makefile for tags" 134 135 links: 136 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 137 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 138 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 139 sort -u | comm -23 - dontlink | \ 140 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 141 sh makelinks && rm -f dontlink 142 143 SRCS= ${SPARC}/sparc/locore.s \ 144 param.c ioconf.c ${CFILES} ${SFILES} 145 depend:: .depend 146 .depend: ${SRCS} assym.h param.c 147 ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${SPARC}/sparc/locore.s 148 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 149 ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 150 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${SPARC}/sparc/genassym.c 151 152 153 # depend on root or device configuration 154 autoconf.o conf.o: Makefile 155 156 # depend on network or filesystem configuration 157 uipc_proto.o vfs_conf.o: Makefile 158 159 # depend on maxusers 160 genassym.o machdep.o: Makefile 161 162 # depend on CPU configuration 163 bwtwo.o cgsix.o cgthree.o cgtwo.o cons.o dma.o esp.o fb.o if_ie.o: Makefile 164 ms.c obio.o zs.c autoconf.o clock.o cpu.o disksubr.o locore.o: Makefile 165 machdep.o mem.o openprom.o pmap.o vm_machdep.o: Makefile 166 167 168 locore.o: ${SPARC}/sparc/locore.s assym.h 169 ${NORMAL_S} 170 171 %RULES 172