1 # $NetBSD: Makefile.sparc,v 1.49 1997/11/12 22:26:30 thorpej 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 LORDER?=lorder 27 MKDEP?= mkdep 28 NM?= nm 29 SIZE?= size 30 STRIP?= strip 31 TSORT?= tsort -q 32 COPTS?= -O2 33 34 # source tree is located via $S relative to the compilation directory 35 .ifndef S 36 S!= cd ../../../..; pwd 37 .endif 38 SPARC= $S/arch/sparc 39 40 INCLUDES= -I. -I$S/arch -I$S -nostdinc 41 CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL 42 CWARNFLAGS= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes 43 CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} 44 # add `-mno-fpu' to work around gcc (last noticed in v2.7.2) bug 45 CFLAGS+= -mno-fpu 46 AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 47 LINKFLAGS= -N -p -Ttext F0004000 -e start 48 STRIPFLAGS= -d 49 50 ### find out what to use for libkern 51 .include "$S/lib/libkern/Makefile.inc" 52 .ifndef PROF 53 LIBKERN= ${KERNLIB} 54 .else 55 LIBKERN= ${KERNLIB_PROF} 56 .endif 57 58 ### find out what to use for libcompat 59 .include "$S/compat/common/Makefile.inc" 60 .ifndef PROF 61 LIBCOMPAT= ${COMPATLIB} 62 .else 63 LIBCOMPAT= ${COMPATLIB_PROF} 64 .endif 65 66 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 67 # HOSTED, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 68 69 NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 70 NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 71 72 %OBJS 73 74 %CFILES 75 76 %SFILES 77 78 # load lines for config "xxx" will be emitted as: 79 # xxx: ${SYSTEM_DEP} swapxxx.o 80 # ${SYSTEM_LD_HEAD} 81 # ${SYSTEM_LD} swapxxx.o 82 # ${SYSTEM_LD_TAIL} 83 SYSTEM_OBJ= locore.o \ 84 param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 85 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 86 SYSTEM_LD_HEAD= @rm -f $@ 87 SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 88 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 89 SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ 90 91 DEBUG?= 92 .if ${DEBUG} == "-g" 93 LINKFLAGS+= -X 94 SYSTEM_LD_TAIL+=; \ 95 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 96 echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@ 97 .else 98 LINKFLAGS+= -S 99 .endif 100 101 %LOAD 102 103 assym.h: $S/kern/genassym.sh ${SPARC}/sparc/genassym.cf 104 sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \ 105 < ${SPARC}/sparc/genassym.cf > assym.h.tmp && \ 106 mv -f assym.h.tmp assym.h 107 108 param.c: $S/conf/param.c 109 rm -f param.c 110 cp $S/conf/param.c . 111 112 param.o: param.c Makefile 113 ${NORMAL_C} 114 115 ioconf.o: ioconf.c 116 ${NORMAL_C} 117 118 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 119 sh $S/conf/newvers.sh 120 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 121 122 __CLEANKERNEL: .USE 123 @echo "${.TARGET}ing the kernel objects" 124 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 125 [Ee]rrs linterrs makelinks assym.h.tmp assym.h 126 127 __CLEANDEPEND: .USE 128 rm -f .depend 129 130 clean: __CLEANKERNEL 131 132 cleandir: __CLEANKERNEL __CLEANDEPEND 133 134 lint: 135 @lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \ 136 ${SPARC}/sparc/Locore.c ${CFILES} \ 137 ioconf.c param.c | \ 138 grep -v 'static function .* unused' 139 140 tags: 141 @echo "see $S/kern/Makefile for tags" 142 143 links: 144 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 145 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 146 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 147 sort -u | comm -23 - dontlink | \ 148 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 149 sh makelinks && rm -f dontlink 150 151 SRCS= ${SPARC}/sparc/locore.s \ 152 param.c ioconf.c ${CFILES} ${SFILES} 153 depend: .depend 154 .depend: ${SRCS} assym.h param.c 155 ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${SPARC}/sparc/locore.s 156 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 157 ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 158 sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ 159 ${CPPFLAGS} < ${SPARC}/sparc/genassym.cf 160 @sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend 161 @rm -f assym.dep 162 163 # depend on root or device configuration 164 autoconf.o conf.o: Makefile 165 166 # depend on network or filesystem configuration 167 uipc_proto.o vfs_conf.o: Makefile 168 169 # depend on maxusers 170 machdep.o: Makefile 171 172 # depend on CPU configuration 173 bwtwo.o cgsix.o cgthree.o cgtwo.o cons.o dma.o esp.o fb.o if_ie.o: Makefile 174 ms.c obio.o zs.c autoconf.o clock.o cpu.o disksubr.o locore.o: Makefile 175 machdep.o mem.o openprom.o pmap.o vm_machdep.o: Makefile 176 177 178 locore.o: ${SPARC}/sparc/locore.s assym.h 179 ${NORMAL_S} 180 181 %RULES 182