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