1 # $NetBSD: Makefile.x68k,v 1.7 1996/08/31 21:42:01 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/x68k/conf/``machineid'' 9 # after which you should do 10 # config machineid 11 # Machine generic makefile changes should be made in 12 # /sys/arch/x68k/conf/Makefile.x68k 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 X68K= $S/arch/x68k 35 36 INCLUDES= -I. -I$S/arch -I$S -nostdinc 37 CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ 38 -Dmc68020 -Dx68k -DFPCOPROC 39 CWARNFLAGS= -Werror 40 CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float 41 AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 42 LINKFLAGS= -n -Ttext 0 -e start 43 44 ### find out what to use for libkern 45 .include "$S/lib/libkern/Makefile.inc" 46 .ifndef PROF 47 LIBKERN= ${KERNLIB} 48 .else 49 LIBKERN= ${KERNLIB_PROF} 50 .endif 51 52 ### find out what to use for libcompat 53 .include "$S/compat/common/Makefile.inc" 54 .ifndef PROF 55 LIBCOMPAT= ${COMPATLIB} 56 .else 57 LIBCOMPAT= ${COMPATLIB_PROF} 58 .endif 59 60 ### for the Motorola 68040 Floating Point Software Product 61 .include "$S/arch/m68k/fpsp/Makefile.inc" 62 63 ### for the Motorola 68060 Software Support Package 64 .include "$S/arch/m68k/060sp/Makefile.inc" 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 HOSTED_C= ${NORMAL_C:S/^-pg$//:S/^-p$//:S/^-nostdinc$//} 73 74 %OBJS 75 76 %CFILES 77 78 #%SFILES 79 80 # load lines for config "xxx" will be emitted as: 81 # xxx: ${SYSTEM_DEP} swapxxx.o 82 # ${SYSTEM_LD_HEAD} 83 # ${SYSTEM_LD} swapxxx.o 84 # ${SYSTEM_LD_TAIL} 85 SYSTEM_OBJ= locore.o ${FPSP} \ 86 param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 87 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 88 SYSTEM_LD_HEAD= @rm -f $@ 89 SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 90 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 91 SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 92 93 DEBUG?= 94 .if ${DEBUG} == "-g" 95 LINKFLAGS+= -X 96 SYSTEM_LD_TAIL+=; \ 97 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 98 echo ${STRIP} $@; ${STRIP} $@ 99 .else 100 LINKFLAGS+= -S 101 .endif 102 103 %LOAD 104 105 assym.h: genassym 106 ./genassym >assym.h 107 108 genassym: genassym.o 109 ${CC} -o $@ genassym.o 110 111 genassym.o: ${X68K}/x68k/genassym.c 112 ${HOSTED_C} 113 114 param.c: $S/conf/param.c 115 rm -f param.c 116 cp $S/conf/param.c . 117 118 param.o: param.c Makefile 119 ${NORMAL_C} 120 121 ioconf.o: ioconf.c 122 ${NORMAL_C} 123 124 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 125 sh $S/conf/newvers.sh 126 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 127 128 129 clean:: 130 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 131 [Ee]rrs linterrs makelinks genassym genassym.o assym.h 132 133 lint: 134 @lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \ 135 ${X68K}/x68k/Locore.c ${CFILES} ${X68K}/x68k/swapgeneric.c \ 136 ioconf.c param.c | \ 137 grep -v 'static function .* unused' 138 139 tags: 140 @echo "see $S/kern/Makefile for tags" 141 142 links: 143 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 144 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 145 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 146 sort -u | comm -23 - dontlink | \ 147 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 148 sh makelinks && rm -f dontlink 149 150 SRCS= ${X68K}/x68k/locore.s \ 151 param.c ioconf.c ${CFILES} ${SFILES} 152 depend:: .depend 153 .depend: ${SRCS} assym.h param.c 154 ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${X68K}/x68k/locore.s 155 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 156 -if test -n "${SFILES}"; then \ 157 ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \ 158 fi 159 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${X68K}/x68k/genassym.c 160 161 162 # depend on root or device configuration 163 autoconf.o conf.o: Makefile 164 165 # depend on network or filesystem configuration 166 uipc_proto.o vfs_conf.o: Makefile 167 168 # depend on maxusers 169 genassym.o machdep.o: Makefile 170 171 # depend on CPU configuration 172 dma.o genassym.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile 173 174 175 locore.o: ${X68K}/x68k/locore.s assym.h 176 ${NORMAL_S} 177 178 %RULES 179