1 1.50 mycroft # $NetBSD: Makefile.amiga,v 1.50 1996/09/09 21:06:56 mycroft Exp $ 2 1.21 cgd 3 1.35 mycroft # Makefile for NetBSD 4 1.1 mw # 5 1.1 mw # This makefile is constructed from a machine description: 6 1.1 mw # config machineid 7 1.1 mw # Most changes should be made in the machine description 8 1.35 mycroft # /sys/arch/amiga/conf/``machineid'' 9 1.1 mw # after which you should do 10 1.35 mycroft # config machineid 11 1.1 mw # Machine generic makefile changes should be made in 12 1.35 mycroft # /sys/arch/amiga/conf/Makefile.amiga 13 1.1 mw # after which config should be rerun for all machines of that type. 14 1.1 mw # 15 1.1 mw # N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE 16 1.1 mw # IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING 17 1.1 mw # 18 1.1 mw # -DTRACE compile in kernel tracing hooks 19 1.1 mw # -DQUOTA compile in file system quotas 20 1.1 mw 21 1.35 mycroft # DEBUG is set to -g if debugging. 22 1.35 mycroft # PROF is set to -pg if profiling. 23 1.1 mw 24 1.38 mycroft CC?= cc 25 1.38 mycroft LD?= ld 26 1.46 mycroft MKDEP?= mkdep 27 1.50 mycroft STRIP?= strip 28 1.1 mw 29 1.1 mw # source tree is located via $S relative to the compilation directory 30 1.49 mycroft .ifndef S 31 1.46 mycroft S!= cd ../../../..; pwd 32 1.49 mycroft .endif 33 1.46 mycroft AMIGA= $S/arch/amiga 34 1.1 mw 35 1.47 mycroft INCLUDES= -I. -I$S/arch -I$S -nostdinc 36 1.48 mycroft CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \ 37 1.48 mycroft -Dmc68020 -Damiga 38 1.46 mycroft CWARNFLAGS= -Werror -Wall -Wstrict-prototypes 39 1.40 is .if empty(IDENT:M-DM68060) 40 1.46 mycroft CMACHFLAGS= -m68020 41 1.40 is .else 42 1.46 mycroft CMACHFLAGS= -m68060 -Wa,-m68030 43 1.40 is .endif 44 1.46 mycroft CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float ${CMACHFLAGS} 45 1.37 mycroft AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 46 1.35 mycroft LINKFLAGS= -n -Ttext 0 -e start 47 1.50 mycroft STRIPFLAGS= -d 48 1.50 mycroft 49 1.50 mycroft HOSTED_CC= ${CC} 50 1.50 mycroft HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//} 51 1.50 mycroft HOSTED_CFLAGS= ${CFLAGS} 52 1.1 mw 53 1.4 mw ### find out what to use for libkern 54 1.4 mw .include "$S/lib/libkern/Makefile.inc" 55 1.4 mw .ifndef PROF 56 1.4 mw LIBKERN= ${KERNLIB} 57 1.4 mw .else 58 1.4 mw LIBKERN= ${KERNLIB_PROF} 59 1.4 mw .endif 60 1.20 chopps 61 1.24 christos ### find out what to use for libcompat 62 1.24 christos .include "$S/compat/common/Makefile.inc" 63 1.24 christos .ifndef PROF 64 1.24 christos LIBCOMPAT= ${COMPATLIB} 65 1.24 christos .else 66 1.24 christos LIBCOMPAT= ${COMPATLIB_PROF} 67 1.24 christos .endif 68 1.24 christos 69 1.20 chopps ### for the Motorola 68040 Floating Point Software Product 70 1.20 chopps .include "$S/arch/m68k/fpsp/Makefile.inc" 71 1.20 chopps 72 1.41 is ### for the Motorola 68060 Software Support Package 73 1.44 is .include "$S/arch/m68k/060sp/Makefile.inc" 74 1.41 is 75 1.48 mycroft # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 76 1.48 mycroft # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 77 1.1 mw 78 1.35 mycroft NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 79 1.37 mycroft NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 80 1.1 mw 81 1.50 mycroft HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $< 82 1.47 mycroft 83 1.29 jtc .SUFFIXES: .o .g 84 1.29 jtc 85 1.29 jtc .g.o: ; echo This is a dummy rule and should not be executed. 86 1.29 jtc 87 1.29 jtc NORMAL_G= gspa < $< | gspahextoc > $*.c; ${CC} -c ${CFLAGS} ${PROF} $*.c 88 1.29 jtc 89 1.1 mw %OBJS 90 1.1 mw 91 1.1 mw %CFILES 92 1.1 mw 93 1.35 mycroft %SFILES 94 1.35 mycroft 95 1.1 mw # load lines for config "xxx" will be emitted as: 96 1.1 mw # xxx: ${SYSTEM_DEP} swapxxx.o 97 1.1 mw # ${SYSTEM_LD_HEAD} 98 1.1 mw # ${SYSTEM_LD} swapxxx.o 99 1.1 mw # ${SYSTEM_LD_TAIL} 100 1.41 is SYSTEM_OBJ= locore.o ${FPSP} ${060SP} \ 101 1.39 cgd param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 102 1.1 mw SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 103 1.35 mycroft SYSTEM_LD_HEAD= @rm -f $@ 104 1.35 mycroft SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 105 1.35 mycroft ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 106 1.35 mycroft SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 107 1.35 mycroft 108 1.35 mycroft DEBUG?= 109 1.35 mycroft .if ${DEBUG} == "-g" 110 1.35 mycroft LINKFLAGS+= -X 111 1.35 mycroft SYSTEM_LD_TAIL+=; \ 112 1.1 mw echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 113 1.50 mycroft echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@ 114 1.35 mycroft .else 115 1.46 mycroft LINKFLAGS+= -S 116 1.35 mycroft .endif 117 1.1 mw 118 1.1 mw %LOAD 119 1.3 mw 120 1.35 mycroft assym.h: genassym 121 1.35 mycroft ./genassym >assym.h 122 1.35 mycroft 123 1.35 mycroft genassym: genassym.o 124 1.35 mycroft ${CC} -o $@ genassym.o 125 1.35 mycroft 126 1.35 mycroft genassym.o: ${AMIGA}/amiga/genassym.c 127 1.48 mycroft ${HOSTED_C} 128 1.1 mw 129 1.35 mycroft param.c: $S/conf/param.c 130 1.35 mycroft rm -f param.c 131 1.35 mycroft cp $S/conf/param.c . 132 1.1 mw 133 1.35 mycroft param.o: param.c Makefile 134 1.48 mycroft ${NORMAL_C} 135 1.35 mycroft 136 1.35 mycroft ioconf.o: ioconf.c 137 1.35 mycroft ${NORMAL_C} 138 1.1 mw 139 1.35 mycroft newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 140 1.35 mycroft sh $S/conf/newvers.sh 141 1.35 mycroft ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 142 1.1 mw 143 1.1 mw 144 1.35 mycroft clean:: 145 1.39 cgd rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 146 1.35 mycroft [Ee]rrs linterrs makelinks genassym genassym.o assym.h 147 1.1 mw 148 1.35 mycroft lint: 149 1.48 mycroft @lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \ 150 1.35 mycroft ${AMIGA}/amiga/Locore.c ${CFILES} ${AMIGA}/amiga/swapgeneric.c \ 151 1.35 mycroft ioconf.c param.c | \ 152 1.35 mycroft grep -v 'static function .* unused' 153 1.1 mw 154 1.35 mycroft tags: 155 1.35 mycroft @echo "see $S/kern/Makefile for tags" 156 1.1 mw 157 1.1 mw links: 158 1.1 mw egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 159 1.1 mw sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 160 1.1 mw echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 161 1.1 mw sort -u | comm -23 - dontlink | \ 162 1.35 mycroft sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 163 1.1 mw sh makelinks && rm -f dontlink 164 1.1 mw 165 1.35 mycroft SRCS= ${AMIGA}/amiga/locore.s \ 166 1.39 cgd param.c ioconf.c ${CFILES} ${SFILES} 167 1.42 mycroft depend:: .depend 168 1.39 cgd .depend: ${SRCS} assym.h param.c 169 1.46 mycroft ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${AMIGA}/amiga/locore.s 170 1.46 mycroft ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 171 1.46 mycroft ${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES} 172 1.50 mycroft ${MKDEP} -a ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} \ 173 1.50 mycroft ${AMIGA}/amiga/genassym.c 174 1.35 mycroft 175 1.35 mycroft 176 1.35 mycroft # depend on root or device configuration 177 1.35 mycroft autoconf.o conf.o: Makefile 178 1.35 mycroft 179 1.35 mycroft # depend on network or filesystem configuration 180 1.35 mycroft uipc_proto.o vfs_conf.o: Makefile 181 1.35 mycroft 182 1.35 mycroft # depend on maxusers 183 1.35 mycroft genassym.o machdep.o: Makefile 184 1.1 mw 185 1.35 mycroft # depend on CPU configuration 186 1.35 mycroft amiga_init.o locore.o pmap.o sys_machdep.o bzsc.o flsc.o sbic.o sfas.o: Makefile 187 1.1 mw 188 1.1 mw 189 1.35 mycroft locore.o: ${AMIGA}/amiga/locore.s assym.h 190 1.35 mycroft ${NORMAL_S} 191 1.1 mw 192 1.1 mw %RULES 193