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