1 # $NetBSD: Makefile.amiga,v 1.22 1995/03/23 19:46:26 jtc 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 ${DEBUG} 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} -DKERNEL -D_KERNEL -Dmc68020 -Damiga 38 CFLAGS= -O -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 ### for the Motorola 68040 Floating Point Software Product 49 .include "$S/arch/m68k/fpsp/Makefile.inc" 50 51 # compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP} 52 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix, 53 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file 54 # is marked as config-dependent. 55 56 NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $< 57 NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $< 58 59 DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $< 60 DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $< 61 62 PROFILE_C= ${CC} -S -c ${COPTS} $<; \ 63 sed -e s/_mcount/mcount/ -e s/subrmcount/subr_mcount/ <$*.s | \ 64 ${AS} -o $@; \ 65 rm -f $*.s 66 67 NORMAL_S= ${CPP} ${COPTS} $< | ${AS} -o $@ 68 NORMAL_S_C= ${CPP} ${COPTS} ${PARAM} $< | ${AS} -o $@ 69 70 %OBJS 71 72 %CFILES 73 74 # load lines for config "xxx" will be emitted as: 75 # xxx: ${SYSTEM_DEP} swapxxx.o 76 # ${SYSTEM_LD_HEAD} 77 # ${SYSTEM_LD} swapxxx.o 78 # ${SYSTEM_LD_TAIL} 79 SYSTEM_OBJ= locore.o ${FPSP} vnode_if.o ${OBJS} param.o ioconf.o ${LIBKERN} 80 SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 81 SYSTEM_LD_HEAD= rm -f $@ 82 SYSTEM_LD= -@if [ X${DEBUG} = X-g ]; \ 83 then strip=-X; \ 84 else strip=-x; \ 85 fi; \ 86 echo ${LD} $$strip -n -T 0 -o $@ -e start '$${SYSTEM_OBJ}' vers.o; \ 87 ${LD} $$strip -n -T 0 -o $@ -e start ${SYSTEM_OBJ} vers.o 88 SYSTEM_LD_TAIL= @size $@; chmod 755 $@; \ 89 [ X${DEBUG} = X-g ] && { \ 90 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 91 echo strip -d $@; strip -d $@; } || true 92 93 %LOAD 94 95 vers.o: newvers 96 97 newvers: 98 sh $S/conf/newvers.sh ${KERN_IDENT} 99 ${CC} $(CFLAGS) -c vers.c 100 101 clean: 102 rm -f eddep *netbsd netbsd.gdb tags *.o locore.i [a-z]*.s \ 103 Errs errs linterrs makelinks 104 105 lint: /tmp param.c 106 @lint -hbxn -DGENERIC -Dvolatile= ${COPTS} ${PARAM} -UKGDB \ 107 ${AMIGA}/amiga/Locore.c ${CFILES} ${AMIGA}/amiga/swapgeneric.c \ 108 ioconf.c param.c| \ 109 grep -v 'struct/union .* never defined' | \ 110 grep -v 'possible pointer alignment problem' 111 112 locore.o: assym.s ${AMIGA}/amiga/vectors.s ${AMIGA}/amiga/locore.s 113 locore.o: machine/trap.h machine/psl.h machine/pte.h machine/cpu.h 114 ${CPP} -DLOCORE ${COPTS} ${AMIGA}/amiga/locore.s | ${AS} -o locore.o 115 116 # the following is necessary because autoconf.o depends on #if GENERIC 117 autoconf.o: Makefile 118 119 # the following are necessary because the files depend on the types of 120 # hp cpu's included in the system configuration 121 machdep.o sys_machdep.o pmap.o pmap_bootstrap.o trap.o dma.o: Makefile 122 123 # depend on network or filesystem configuration 124 uipc_proto.o vfs_conf.o locore.o: Makefile 125 126 # depend on maxusers 127 assym.s: Makefile 128 129 assym.s: genassym 130 ./genassym >assym.s 131 132 genassym: 133 ${CC} -static ${INCLUDES} ${IDENT} ${PARAM} -Dmc68020 -Damiga \ 134 -o genassym ${AMIGA}/amiga/genassym.c 135 136 depend: assym.s param.c vnode_if.h 137 mkdep ${COPTS} ${CFILES} ioconf.c param.c 138 mkdep -a -p ${INCLUDES} ${IDENT} ${PARAM} ${AMIGA}/amiga/genassym.c 139 140 links: 141 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 142 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 143 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 144 sort -u | comm -23 - dontlink | \ 145 sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks 146 sh makelinks && rm -f dontlink 147 148 tags: 149 @echo "see $S/kern/Makefile for tags" 150 151 ioconf.o: ioconf.c 152 ${CC} -c ${CFLAGS} ioconf.c 153 154 param.c: $S/conf/param.c 155 rm -f param.c 156 cp $S/conf/param.c . 157 158 param.o: param.c Makefile 159 ${CC} -c ${CFLAGS} ${PARAM} param.c 160 vnode_if.c vnode_if.h: $S/kern/vnode_if.sh $S/kern/vnode_if.src 161 AWK="${AWK}" sh $S/kern/vnode_if.sh $S/kern/vnode_if.src 162 163 %RULES 164