1 1.7 hubertf # $NetBSD: Makefile.news68k,v 1.7 2000/05/09 00:56:25 hubertf Exp $ 2 1.1 tsutsui # 3 1.1 tsutsui # Makefile for NetBSD 4 1.1 tsutsui # 5 1.1 tsutsui # This makefile is constructed from a machine description: 6 1.1 tsutsui # config machineid 7 1.1 tsutsui # Most changes should be made in the machine description 8 1.1 tsutsui # /sys/arch/news68k/conf/``machineid'' 9 1.1 tsutsui # after which you should do 10 1.1 tsutsui # config machineid 11 1.1 tsutsui # Machine generic makefile changes should be made in 12 1.1 tsutsui # /sys/arch/news68k/conf/Makefile.news68k 13 1.1 tsutsui # after which config should be rerun for all machines of that type. 14 1.1 tsutsui # 15 1.1 tsutsui # N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE 16 1.1 tsutsui # IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING 17 1.1 tsutsui # 18 1.1 tsutsui # -DTRACE compile in kernel tracing hooks 19 1.1 tsutsui # -DQUOTA compile in file system quotas 20 1.1 tsutsui 21 1.1 tsutsui # DEBUG is set to -g if debugging. 22 1.1 tsutsui # PROF is set to -pg if profiling. 23 1.1 tsutsui 24 1.1 tsutsui AR?= ar 25 1.1 tsutsui AS?= as 26 1.1 tsutsui CC?= cc 27 1.1 tsutsui CPP?= cpp 28 1.1 tsutsui LD?= ld 29 1.1 tsutsui LORDER?=lorder 30 1.1 tsutsui MKDEP?= mkdep 31 1.1 tsutsui NM?= nm 32 1.1 tsutsui RANLIB?=ranlib 33 1.1 tsutsui SIZE?= size 34 1.5 tsutsui STRIP?= strip 35 1.1 tsutsui TSORT?= tsort -q 36 1.1 tsutsui 37 1.1 tsutsui COPTS?= -O2 38 1.1 tsutsui 39 1.1 tsutsui # source tree is located via $S relative to the compilation directory 40 1.1 tsutsui .ifndef S 41 1.1 tsutsui #S!= cd ../../../..; pwd 42 1.1 tsutsui S= ../../../.. 43 1.1 tsutsui .endif 44 1.1 tsutsui NEWS68K=$S/arch/news68k 45 1.1 tsutsui 46 1.6 thorpej HAVE_EGCS!= ${CC} --version | egrep "^(2\.[89]|egcs)" ; echo 47 1.1 tsutsui INCLUDES= -I. -I$S/arch -I$S -nostdinc 48 1.1 tsutsui CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dnews68k 49 1.1 tsutsui CWARNFLAGS?= -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes \ 50 1.1 tsutsui -Wall -Werror 51 1.6 thorpej # XXX Delete -Wuninitialized for now, since the compiler doesn't 52 1.6 thorpej # XXX always get it right. --thorpej 53 1.6 thorpej CWARNFLAGS+= -Wno-uninitialized 54 1.6 thorpej .if (${HAVE_EGCS} != "") 55 1.1 tsutsui CWARNFLAGS+= -Wno-main 56 1.1 tsutsui .endif 57 1.1 tsutsui CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float 58 1.1 tsutsui AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 59 1.1 tsutsui LINKFLAGS= -n -Ttext 0 -e start 60 1.2 tsutsui STRIPFLAGS= -g 61 1.1 tsutsui 62 1.1 tsutsui %INCLUDES 63 1.1 tsutsui 64 1.1 tsutsui HOSTED_CC= ${CC} 65 1.1 tsutsui HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//} 66 1.1 tsutsui HOSTED_CFLAGS= ${CFLAGS} 67 1.1 tsutsui 68 1.1 tsutsui ### find out what to use for libkern 69 1.1 tsutsui KERN_AS= obj 70 1.1 tsutsui .include "$S/lib/libkern/Makefile.inc" 71 1.1 tsutsui .ifndef PROF 72 1.1 tsutsui LIBKERN= ${KERNLIB} 73 1.1 tsutsui .else 74 1.1 tsutsui LIBKERN= ${KERNLIB_PROF} 75 1.1 tsutsui .endif 76 1.1 tsutsui 77 1.1 tsutsui ### find out what to use for libcompat 78 1.1 tsutsui .include "$S/compat/common/Makefile.inc" 79 1.1 tsutsui .ifndef PROF 80 1.1 tsutsui LIBCOMPAT= ${COMPATLIB} 81 1.1 tsutsui .else 82 1.1 tsutsui LIBCOMPAT= ${COMPATLIB_PROF} 83 1.1 tsutsui .endif 84 1.1 tsutsui 85 1.1 tsutsui # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 86 1.1 tsutsui # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 87 1.1 tsutsui 88 1.1 tsutsui NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 89 1.1 tsutsui NOPROF_C= ${CC} ${CFLAGS} ${CPPFLAGS} -c $< 90 1.1 tsutsui NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 91 1.1 tsutsui 92 1.1 tsutsui HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $< 93 1.1 tsutsui 94 1.1 tsutsui %OBJS 95 1.1 tsutsui 96 1.1 tsutsui %CFILES 97 1.1 tsutsui 98 1.1 tsutsui %SFILES 99 1.1 tsutsui 100 1.1 tsutsui # load lines for config "xxx" will be emitted as: 101 1.1 tsutsui # xxx: ${SYSTEM_DEP} swapxxx.o 102 1.1 tsutsui # ${SYSTEM_LD_HEAD} 103 1.1 tsutsui # ${SYSTEM_LD} swapxxx.o 104 1.1 tsutsui # ${SYSTEM_LD_TAIL} 105 1.1 tsutsui SYSTEM_OBJ= locore.o ${FPSP} 106 1.1 tsutsui SYSTEM_OBJ+= param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 107 1.1 tsutsui SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 108 1.1 tsutsui SYSTEM_LD_HEAD= @rm -f $@ 109 1.1 tsutsui SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o ; \ 110 1.1 tsutsui ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 111 1.1 tsutsui SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ 112 1.1 tsutsui 113 1.1 tsutsui DEBUG?= 114 1.1 tsutsui .if ${DEBUG} == "-g" 115 1.1 tsutsui LINKFLAGS+= -X 116 1.1 tsutsui SYSTEM_LD_TAIL+=; \ 117 1.1 tsutsui echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \ 118 1.5 tsutsui echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \ 119 1.5 tsutsui ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb 120 1.1 tsutsui .else 121 1.1 tsutsui LINKFLAGS+= -S 122 1.1 tsutsui .endif 123 1.1 tsutsui 124 1.1 tsutsui %LOAD 125 1.1 tsutsui 126 1.1 tsutsui assym.h: $S/kern/genassym.sh ${NEWS68K}/news68k/genassym.cf 127 1.1 tsutsui sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \ 128 1.1 tsutsui < ${NEWS68K}/news68k/genassym.cf > assym.h.tmp && \ 129 1.1 tsutsui mv -f assym.h.tmp assym.h 130 1.1 tsutsui 131 1.1 tsutsui 132 1.1 tsutsui param.c: $S/conf/param.c 133 1.1 tsutsui rm -f param.c 134 1.1 tsutsui cp $S/conf/param.c . 135 1.1 tsutsui 136 1.1 tsutsui param.o: param.c Makefile 137 1.1 tsutsui ${NORMAL_C} 138 1.1 tsutsui 139 1.1 tsutsui ioconf.o: ioconf.c 140 1.1 tsutsui ${NORMAL_C} 141 1.1 tsutsui 142 1.1 tsutsui newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 143 1.1 tsutsui sh $S/conf/newvers.sh 144 1.1 tsutsui ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 145 1.1 tsutsui 146 1.1 tsutsui __CLEANKERNEL: .USE 147 1.1 tsutsui @echo "${.TARGET}ing the kernel objects" 148 1.1 tsutsui rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 149 1.1 tsutsui [Ee]rrs linterrs makelinks assym.h.tmp assym.h 150 1.1 tsutsui 151 1.1 tsutsui __CLEANDEPEND: .USE 152 1.1 tsutsui rm -f .depend 153 1.1 tsutsui 154 1.1 tsutsui clean: __CLEANKERNEL 155 1.1 tsutsui 156 1.1 tsutsui cleandir distclean: __CLEANKERNEL __CLEANDEPEND 157 1.1 tsutsui 158 1.1 tsutsui lint: 159 1.1 tsutsui @lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \ 160 1.1 tsutsui ${CFILES} ioconf.c param.c | \ 161 1.1 tsutsui grep -v 'static function .* unused' 162 1.1 tsutsui 163 1.1 tsutsui tags: 164 1.1 tsutsui @echo "see $S/kern/Makefile for tags" 165 1.1 tsutsui 166 1.1 tsutsui links: 167 1.1 tsutsui egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 168 1.1 tsutsui sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 169 1.1 tsutsui echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 170 1.1 tsutsui sort -u | comm -23 - dontlink | \ 171 1.1 tsutsui sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 172 1.1 tsutsui sh makelinks && rm -f dontlink 173 1.1 tsutsui 174 1.1 tsutsui SRCS= ${NEWS68K}/news68k/locore.s \ 175 1.1 tsutsui param.c ioconf.c ${CFILES} ${SFILES} 176 1.1 tsutsui depend: .depend 177 1.1 tsutsui .depend: ${SRCS} assym.h param.c 178 1.1 tsutsui ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${NEWS68K}/news68k/locore.s 179 1.1 tsutsui ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 180 1.1 tsutsui .if ${SFILES} != "" 181 1.1 tsutsui ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 182 1.1 tsutsui .endif 183 1.1 tsutsui sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ 184 1.1 tsutsui ${CPPFLAGS} < ${NEWS68K}/news68k/genassym.cf 185 1.1 tsutsui @sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend 186 1.1 tsutsui @rm -f assym.dep 187 1.4 tron 188 1.4 tron dependall: depend all 189 1.1 tsutsui 190 1.1 tsutsui 191 1.1 tsutsui # depend on root or device configuration 192 1.1 tsutsui autoconf.o conf.o: Makefile 193 1.1 tsutsui 194 1.1 tsutsui # depend on network or filesystem configuration 195 1.1 tsutsui uipc_proto.o vfs_conf.o: Makefile 196 1.1 tsutsui 197 1.1 tsutsui # depend on maxusers 198 1.1 tsutsui machdep.o: Makefile 199 1.1 tsutsui 200 1.1 tsutsui # depend on CPU configuration 201 1.1 tsutsui machdep.o mainbus.o trap.o: Makefile 202 1.1 tsutsui 203 1.1 tsutsui 204 1.1 tsutsui locore.o: ${NEWS68K}/news68k/locore.s assym.h 205 1.1 tsutsui ${NORMAL_S} 206 1.7 hubertf 207 1.7 hubertf # The install target can be redefined by putting a 208 1.7 hubertf # install-kernel-${MACHINE_NAME} target into /etc/mk.conf 209 1.7 hubertf MACHINE_NAME!= uname -n 210 1.7 hubertf install: install-kernel-${MACHINE_NAME} 211 1.7 hubertf .if !target(install-kernel-${MACHINE_NAME}}) 212 1.7 hubertf install-kernel-${MACHINE_NAME}: 213 1.7 hubertf rm -f /onetbsd 214 1.7 hubertf ln /netbsd /onetbsd 215 1.7 hubertf cp netbsd /nnetbsd 216 1.7 hubertf mv /nnetbsd /netbsd 217 1.7 hubertf .endif 218 1.1 tsutsui 219 1.1 tsutsui %RULES 220