1 # $NetBSD: Makefile.amiga,v 1.34 1996/02/02 02:35:26 mycroft Exp $ 2 3 # @(#)Makefile.hp300 7.10 (Berkeley) 6/27/91 4 # 5 # Makefile for 4.4 BSD 6 # 7 # This makefile is constructed from a machine description: 8 # config machineid 9 # Most changes should be made in the machine description 10 # /sys/conf/``machineid'' 11 # after which you should do 12 # config machineid 13 # Machine generic makefile changes should be made in 14 # /sys/conf/Makefile.``machinetype'' 15 # after which config should be rerun for all machines of that type. 16 # 17 # N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE VISIBLE TO MAKEFILE 18 # IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING 19 # 20 # -DTRACE compile in kernel tracing hooks 21 # -DQUOTA compile in file system quotas 22 23 24 # DEBUG is set to -g by config if debugging is requested (config -g). 25 # PROF is set to -pg by config if profiling is requested (config -p). 26 AS= as 27 CC= cc ${DEBUG} 28 CPP= cpp 29 LD= ld 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 -I$S/sys 37 COPTS= ${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Damiga 38 CFLAGS= -O -Werror -mc68020 -m68881 ${COPTS} 39 40 ### find out what to use for libkern 41 .include "$S/lib/libkern/Makefile.inc" 42 .ifndef PROF 43 LIBKERN= ${KERNLIB} 44 .else 45 LIBKERN= ${KERNLIB_PROF} 46 .endif 47 48 ### find out what to use for libcompat 49 .include "$S/compat/common/Makefile.inc" 50 .ifndef PROF 51 LIBCOMPAT= ${COMPATLIB} 52 .else 53 LIBCOMPAT= ${COMPATLIB_PROF} 54 .endif 55 56 ### for the Motorola 68040 Floating Point Software Product 57 .include "$S/arch/m68k/fpsp/Makefile.inc" 58 59 # compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP} 60 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix, 61 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file 62 # is marked as config-dependent. 63 64 NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $< 65 NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $< 66 67 DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $< 68 DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $< 69 70 PROFILE_C= ${CC} -S -c ${COPTS} $<; \ 71 sed -e s/_mcount/mcount/ -e s/subrmcount/subr_mcount/ <$*.s | \ 72 ${AS} -o $@; \ 73 rm -f $*.s 74 75 NORMAL_S= ${CPP} ${COPTS} $< | ${AS} -o $@ 76 NORMAL_S_C= ${CPP} ${COPTS} ${PARAM} $< | ${AS} -o $@ 77 78 .SUFFIXES: .o .g 79 80 .g.o: ; echo This is a dummy rule and should not be executed. 81 82 NORMAL_G= gspa < $< | gspahextoc > $*.c; ${CC} -c ${CFLAGS} ${PROF} $*.c 83 84 %OBJS 85 86 %CFILES 87 88 # load lines for config "xxx" will be emitted as: 89 # xxx: ${SYSTEM_DEP} swapxxx.o 90 # ${SYSTEM_LD_HEAD} 91 # ${SYSTEM_LD} swapxxx.o 92 # ${SYSTEM_LD_TAIL} 93 SYSTEM_OBJ= locore.o ${FPSP} vnode_if.o ${OBJS} param.o ioconf.o \ 94 ${LIBKERN} ${LIBCOMPAT} 95 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 96 SYSTEM_LD_HEAD= rm -f $@ 97 SYSTEM_LD= -@if [ X${DEBUG} = X-g ]; \ 98 then strip=-X; \ 99 else strip=-x; \ 100 fi; \ 101 echo ${LD} $$strip -n -T 0 -o $@ -e start '$${SYSTEM_OBJ}' vers.o; \ 102 ${LD} $$strip -n -T 0 -o $@ -e start ${SYSTEM_OBJ} vers.o 103 SYSTEM_LD_TAIL= @size $@; chmod 755 $@; \ 104 [ X${DEBUG} = X-g ] && { \ 105 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 106 echo strip -d $@; strip -d $@; } || true 107 108 %LOAD 109 110 vers.o: newvers 111 112 newvers: 113 sh $S/conf/newvers.sh ${KERN_IDENT} 114 ${CC} $(CFLAGS) -c vers.c 115 116 clean:: 117 rm -f eddep *netbsd netbsd.gdb tags *.o locore.i [a-z]*.s \ 118 vnode_if.[ch] Errs errs linterrs makelinks genassym 119 120 lint: /tmp param.c 121 @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} -UKGDB \ 122 ${AMIGA}/amiga/Locore.c ${CFILES} ${AMIGA}/amiga/swapgeneric.c \ 123 ioconf.c param.c| \ 124 grep -v 'struct/union .* never defined' | \ 125 grep -v 'possible pointer alignment problem' 126 127 locore.o: assym.h ${AMIGA}/amiga/vectors.s ${AMIGA}/amiga/locore.s 128 locore.o: machine/trap.h machine/psl.h machine/pte.h machine/cpu.h 129 ${CPP} -D_LOCORE ${COPTS} ${AMIGA}/amiga/locore.s | ${AS} -o locore.o 130 131 # the following is necessary because autoconf.o depends on #if GENERIC 132 autoconf.o: Makefile 133 134 # the following are necessary because the files depend on the types of 135 # hp cpu's included in the system configuration 136 machdep.o sys_machdep.o pmap.o pmap_bootstrap.o trap.o dma.o: Makefile 137 138 # depend on network or filesystem configuration 139 uipc_proto.o vfs_conf.o locore.o: Makefile 140 141 # depend on maxusers 142 assym.h: Makefile 143 144 assym.h: genassym 145 ./genassym >assym.h 146 147 genassym: 148 ${CC} -static ${INCLUDES} ${IDENT} ${PARAM} -Dmc68020 -Damiga \ 149 -o genassym ${AMIGA}/amiga/genassym.c 150 151 depend: assym.h param.c vnode_if.h 152 mkdep ${COPTS} ${CFILES} ioconf.c param.c 153 mkdep -a -p ${INCLUDES} ${IDENT} ${PARAM} ${AMIGA}/amiga/genassym.c 154 155 links: 156 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 157 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 158 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 159 sort -u | comm -23 - dontlink | \ 160 sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks 161 sh makelinks && rm -f dontlink 162 163 tags: 164 @echo "see $S/kern/Makefile for tags" 165 166 ioconf.o: ioconf.c 167 ${CC} -c ${CFLAGS} ioconf.c 168 169 param.c: $S/conf/param.c 170 rm -f param.c 171 cp $S/conf/param.c . 172 173 param.o: param.c Makefile 174 ${CC} -c ${CFLAGS} ${PARAM} param.c 175 vnode_if.c vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src 176 AWK="${AWK}" sh $S/kern/vnode_if.sh $S/kern/vnode_if.src 177 178 %RULES 179