1 # $NetBSD: Makefile.amiga,v 1.37 1996/02/09 02:21:17 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/amiga/conf/``machineid'' 9 # after which you should do 10 # config machineid 11 # Machine generic makefile changes should be made in 12 # /sys/arch/amiga/conf/Makefile.amiga 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 AS= as 25 AWK= awk 26 CC= cc 27 CPP= cpp 28 LD= ld 29 STRIP= strip -d 30 TOUCH= touch -f -c 31 32 # source tree is located via $S relative to the compilation directory 33 S= ../../../.. 34 AMIGA= ../.. 35 36 INCLUDES= -I. -I$S/arch -I$S 37 CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Damiga 38 CFLAGS= ${DEBUG} -O2 -Werror -mc68020 -msoft-float 39 AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 40 LINKFLAGS= -n -Ttext 0 -e start 41 42 ### find out what to use for libkern 43 .include "$S/lib/libkern/Makefile.inc" 44 .ifndef PROF 45 LIBKERN= ${KERNLIB} 46 .else 47 LIBKERN= ${KERNLIB_PROF} 48 .endif 49 50 ### find out what to use for libcompat 51 .include "$S/compat/common/Makefile.inc" 52 .ifndef PROF 53 LIBCOMPAT= ${COMPATLIB} 54 .else 55 LIBCOMPAT= ${COMPATLIB_PROF} 56 .endif 57 58 ### for the Motorola 68040 Floating Point Software Product 59 .include "$S/arch/m68k/fpsp/Makefile.inc" 60 61 # compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP} 62 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix, 63 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file 64 # is marked as config-dependent. 65 66 NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 67 NORMAL_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< 68 69 DRIVER_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 70 DRIVER_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< 71 72 NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 73 NORMAL_S_C= ${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $< 74 75 .SUFFIXES: .o .g 76 77 .g.o: ; echo This is a dummy rule and should not be executed. 78 79 NORMAL_G= gspa < $< | gspahextoc > $*.c; ${CC} -c ${CFLAGS} ${PROF} $*.c 80 81 %OBJS 82 83 %CFILES 84 85 %SFILES 86 87 # load lines for config "xxx" will be emitted as: 88 # xxx: ${SYSTEM_DEP} swapxxx.o 89 # ${SYSTEM_LD_HEAD} 90 # ${SYSTEM_LD} swapxxx.o 91 # ${SYSTEM_LD_TAIL} 92 SYSTEM_OBJ= locore.o ${FPSP} \ 93 vnode_if.o param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 94 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 95 SYSTEM_LD_HEAD= @rm -f $@ 96 SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 97 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 98 SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 99 100 DEBUG?= 101 .if ${DEBUG} == "-g" 102 LINKFLAGS+= -X 103 SYSTEM_LD_TAIL+=; \ 104 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 105 echo ${STRIP} $@; ${STRIP} $@ 106 .else 107 LINKFLAGS+= -x 108 .endif 109 110 %LOAD 111 112 assym.h: genassym 113 ./genassym >assym.h 114 115 genassym: genassym.o 116 ${CC} -o $@ genassym.o 117 118 genassym.o: ${AMIGA}/amiga/genassym.c 119 ${NORMAL_C_C} 120 121 vnode_if.c vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src 122 AWK="${AWK}" sh $S/kern/vnode_if.sh $S/kern/vnode_if.src 123 124 param.c: $S/conf/param.c 125 rm -f param.c 126 cp $S/conf/param.c . 127 128 param.o: param.c Makefile 129 ${NORMAL_C_C} 130 131 ioconf.o: ioconf.c 132 ${NORMAL_C} 133 134 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 135 sh $S/conf/newvers.sh 136 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 137 138 139 clean:: 140 rm -f eddep *netbsd netbsd.gdb tags vnode_if.[ch] *.[io] [a-z]*.s \ 141 [Ee]rrs linterrs makelinks genassym genassym.o assym.h 142 143 lint: 144 @lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \ 145 ${AMIGA}/amiga/Locore.c ${CFILES} ${AMIGA}/amiga/swapgeneric.c \ 146 ioconf.c param.c | \ 147 grep -v 'static function .* unused' 148 149 tags: 150 @echo "see $S/kern/Makefile for tags" 151 152 links: 153 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 154 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 155 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 156 sort -u | comm -23 - dontlink | \ 157 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 158 sh makelinks && rm -f dontlink 159 160 SRCS= ${AMIGA}/amiga/locore.s \ 161 vnode_if.c param.c ioconf.c ${CFILES} ${SFILES} 162 depend: .depend 163 .depend: ${SRCS} assym.h vnode_if.h param.c 164 mkdep ${AFLAGS} ${CPPFLAGS} ${AMIGA}/amiga/locore.s 165 mkdep -a ${CFLAGS} ${CPPFLAGS} vnode_if.c param.c ioconf.c ${CFILES} 166 mkdep -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 167 mkdep -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${AMIGA}/amiga/genassym.c 168 169 170 # depend on root or device configuration 171 autoconf.o conf.o: Makefile 172 173 # depend on network or filesystem configuration 174 uipc_proto.o vfs_conf.o: Makefile 175 176 # depend on maxusers 177 genassym.o machdep.o: Makefile 178 179 # depend on CPU configuration 180 amiga_init.o locore.o pmap.o sys_machdep.o bzsc.o flsc.o sbic.o sfas.o: Makefile 181 182 183 locore.o: ${AMIGA}/amiga/locore.s assym.h 184 ${NORMAL_S} 185 186 %RULES 187