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