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