Makefile.luna68k revision 1.8
1# $NetBSD: Makefile.luna68k,v 1.8 2000/12/17 15:52:41 jdolecek 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/luna68k/conf/``machineid'' 9# after which you should do 10# config machineid 11# Machine generic makefile changes should be made in 12# /sys/arch/luna68k/conf/Makefile.luna68k 13# after which config should be rerun for all machines of that type. 14 15# DEBUG is set to -g if debugging. 16# PROF is set to -pg if profiling. 17 18AR?= ar 19AS?= as 20CC?= cc 21CPP?= cpp 22LD?= ld 23LORDER?=lorder 24MKDEP?= mkdep 25NM?= nm 26RANLIB?=ranlib 27SIZE?= size 28STRIP?= strip 29TSORT?= tsort -q 30OBJCOPY?= objcopy 31 32COPTS?= -O2 33 34# source tree is located via $S relative to the compilation directory 35.ifndef S 36S!= cd ../../../..; pwd 37.endif 38LUNA68K=$S/arch/luna68k 39 40# Override CPP defaults entirely, so cross-compilation works. 41# Keep -nostdinc before all -I flags, similar for -undef ... 42HAVE_EGCS!= ${CC} --version | egrep "^(2\.[89]|egcs)" ; echo 43INCLUDES= -nostdinc -I. -I$S/arch -I$S 44CPPFLAGS= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -Dluna68k 45CWARNFLAGS?= -Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \ 46 -Wpointer-arith 47# XXX Delete -Wuninitialized for now, since the compiler doesn't 48# XXX always get it right. --thorpej 49CWARNFLAGS+= -Wno-uninitialized 50.if (${HAVE_EGCS} != "") 51CWARNFLAGS+= -Wno-main 52.endif 53CFLAGS= ${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float 54AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 55LINKFLAGS= -N -Ttext 0xc000 -e start 56STRIPFLAGS= -g 57 58%INCLUDES 59 60HOSTED_CC= ${CC} 61HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//} 62HOSTED_CFLAGS= ${CFLAGS} 63 64### find out what to use for libkern 65.include "$S/lib/libkern/Makefile.inc" 66.ifndef PROF 67LIBKERN= ${KERNLIB} 68.else 69LIBKERN= ${KERNLIB_PROF} 70.endif 71 72### find out what to use for libcompat 73.include "$S/compat/common/Makefile.inc" 74.ifndef PROF 75LIBCOMPAT= ${COMPATLIB} 76.else 77LIBCOMPAT= ${COMPATLIB_PROF} 78.endif 79 80### for the Motorola 68040 Floating Point Software Product 81# .include "$S/arch/m68k/fpsp/Makefile.inc" 82 83# compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or 84# HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file). 85 86NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 87NOPROF_C= ${CC} ${CFLAGS} ${CPPFLAGS} -c $< 88NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 89 90HOSTED_C= ${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $< 91 92%OBJS 93 94%CFILES 95 96%SFILES 97 98# load lines for config "xxx" will be emitted as: 99# xxx: ${SYSTEM_DEP} swapxxx.o 100# ${SYSTEM_LD_HEAD} 101# ${SYSTEM_LD} swapxxx.o 102# ${SYSTEM_LD_TAIL} 103SYSTEM_OBJ= locore.o ${FPSP} \ 104 param.o ioconf.o ${OBJS} ${LIBCOMPAT} ${LIBKERN} 105SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 106SYSTEM_LD_HEAD= @rm -f $@ 107SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 108 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 109SYSTEM_LD_TAIL= @${SIZE} $@; chmod 755 $@ 110 111DEBUG?= 112.if ${DEBUG} == "-g" 113LINKFLAGS+= -X 114SYSTEM_LD_TAIL+=; \ 115 echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \ 116 echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \ 117 ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb 118.else 119LINKFLAGS+= -S 120.endif 121 122%LOAD 123 124assym.h: $S/kern/genassym.sh ${LUNA68K}/luna68k/genassym.cf 125 sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \ 126 < ${LUNA68K}/luna68k/genassym.cf > assym.h.tmp && \ 127 mv -f assym.h.tmp assym.h 128 129param.c: $S/conf/param.c 130 rm -f param.c 131 cp $S/conf/param.c . 132 133param.o: param.c Makefile 134 ${NORMAL_C} 135 136ioconf.o: ioconf.c 137 ${NORMAL_C} 138 139newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 140 sh $S/conf/newvers.sh 141 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 142 143__CLEANKERNEL: .USE 144 @echo "${.TARGET}ing the kernel objects" 145 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 146 [Ee]rrs linterrs makelinks assym.h.tmp assym.h 147 148__CLEANDEPEND: .USE 149 rm -f .depend 150 151clean: __CLEANKERNEL 152 153cleandir distclean: __CLEANKERNEL __CLEANDEPEND 154 155lint: 156 @lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \ 157 ${CFILES} ioconf.c param.c | \ 158 grep -v 'static function .* unused' 159 160tags: 161 @echo "see $S/kern/Makefile for tags" 162 163links: 164 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 165 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 166 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 167 sort -u | comm -23 - dontlink | \ 168 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 169 sh makelinks && rm -f dontlink 170 171SRCS= ${LUNA68K}/luna68k/locore.s \ 172 param.c ioconf.c ${CFILES} ${SFILES} 173depend: .depend 174.depend: ${SRCS} assym.h param.c 175 ${MKDEP} ${AFLAGS} ${CPPFLAGS} ${LUNA68K}/luna68k/locore.s 176 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 177 sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \ 178 ${CPPFLAGS} < ${LUNA68K}/luna68k/genassym.cf 179 @sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend 180 @rm -f assym.dep 181 182dependall: depend all 183 184 185# depend on root or device configuration 186autoconf.o conf.o: Makefile 187 188# depend on network or filesystem configuration 189uipc_proto.o vfs_conf.o: Makefile 190 191# depend on maxusers 192machdep.o: Makefile 193 194# depend on CPU configuration 195machdep.c trap.o: Makefile 196 197locore.o: ${LUNA68K}/luna68k/locore.s assym.h 198 ${NORMAL_S} 199 200# The install target can be redefined by putting a 201# install-kernel-${MACHINE_NAME} target into /etc/mk.conf 202MACHINE_NAME!= uname -n 203install: install-kernel-${MACHINE_NAME} 204.if !target(install-kernel-${MACHINE_NAME}}) 205install-kernel-${MACHINE_NAME}: 206 rm -f /onetbsd 207 ln /netbsd /onetbsd 208 cp netbsd /nnetbsd 209 mv /nnetbsd /netbsd 210.endif 211 212%RULES 213