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