Makefile.sun3 revision 1.47
1# $NetBSD: Makefile.sun3,v 1.47 1996/08/10 05:29:53 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/sun3/conf/``machineid'' 9# after which you should do 10# config machineid 11# Machine generic makefile changes should be made in 12# /sys/arch/sun3/conf/Makefile.sun3 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 32SUN3= $S/arch/sun3 33 34# Override CPP defaults entirely, so cross-compilation works. 35INCLUDES= -I. -I$S/arch -I$S 36XDEFS= -undef -D__NetBSD__ -Dm68k -Dmc68000 37CPPFLAGS= ${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Dsun3 ${XDEFS} 38CWARNFLAGS= -Werror # -Wall -Wstrict-prototypes -Wmissing-prototypes 39CFLAGS= ${DEBUG} ${CWARNFLAGS} -O2 -msoft-float 40AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE 41LINKFLAGS= -N -Ttext 0E004000 -e start 42 43### find out what to use for libkern 44.include "$S/lib/libkern/Makefile.inc" 45.ifndef PROF 46LIBKERN= ${KERNLIB} 47.else 48LIBKERN= ${KERNLIB_PROF} 49.endif 50 51### find out what to use for libcompat 52.include "$S/compat/common/Makefile.inc" 53.ifndef PROF 54LIBCOMPAT= ${COMPATLIB} 55.else 56LIBCOMPAT= ${COMPATLIB_PROF} 57.endif 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 64NORMAL_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 65NORMAL_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< 66 67DRIVER_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $< 68DRIVER_C_C= ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $< 69 70NORMAL_S= ${CC} ${AFLAGS} ${CPPFLAGS} -c $< 71NORMAL_S_C= ${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $< 72 73%OBJS 74 75%CFILES 76 77%SFILES 78 79# load lines for config "xxx" will be emitted as: 80# xxx: ${SYSTEM_DEP} swapxxx.o 81# ${SYSTEM_LD_HEAD} 82# ${SYSTEM_LD} swapxxx.o 83# ${SYSTEM_LD_TAIL} 84SYSTEM_OBJ= locore.o \ 85 param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT} 86SYSTEM_DEP= Makefile ${SYSTEM_OBJ} 87SYSTEM_LD_HEAD= @rm -f $@ 88SYSTEM_LD= @echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \ 89 ${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o 90SYSTEM_LD_TAIL= @size $@; chmod 755 $@ 91 92DEBUG?= 93.if ${DEBUG} == "-g" 94LINKFLAGS+= -X 95SYSTEM_LD_TAIL+=; \ 96 echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \ 97 echo ${STRIP} $@; ${STRIP} $@ 98.else 99LINKFLAGS+= -S 100.endif 101 102%LOAD 103 104assym.h: genassym 105 ./genassym >assym.h 106 107genassym: genassym.o 108 ${CC} -o $@ genassym.o 109 110genassym.o: ${SUN3}/sun3/genassym.c 111 ${NORMAL_C_C} 112 113param.c: $S/conf/param.c 114 rm -f param.c 115 cp $S/conf/param.c . 116 117param.o: param.c Makefile 118 ${NORMAL_C_C} 119 120ioconf.o: ioconf.c 121 ${NORMAL_C} 122 123newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP} 124 sh $S/conf/newvers.sh 125 ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c 126 127 128clean:: 129 rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \ 130 [Ee]rrs linterrs makelinks genassym genassym.o assym.h 131 132lint: 133 @lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \ 134 ${SUN3}/sun3/Locore.c ${CFILES} ${SUN3}/sun3/swapgeneric.c \ 135 ioconf.c param.c | \ 136 grep -v 'static function .* unused' 137 138tags: 139 @echo "see $S/kern/Makefile for tags" 140 141links: 142 egrep '#if' ${CFILES} | sed -f $S/conf/defines | \ 143 sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink 144 echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \ 145 sort -u | comm -23 - dontlink | \ 146 sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks 147 sh makelinks && rm -f dontlink 148 149SRCS= ${SUN3}/sun3/locore.s \ 150 param.c ioconf.c ${CFILES} ${SFILES} 151depend:: .depend 152.depend: ${SRCS} assym.h param.c 153 ${MKDEP} ${AFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES} 154 ${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${SUN3}/sun3/genassym.c 155 156# XXX - see below 157# ${MKDEP} -a ${APPFLAGS} ${SUN3}/sun3/locore.s 158# ${MKDEP} -a ${APPFLAGS} ${SFILES} 159# 160# For cross-compilation, the "gcc -M" mkdep script is convenient, 161# but that does not correctly make rules from *.s files. The 162# easiest compromise is to just list those dependencies here. 163locore.o: assym.h machine/trap.h m68k/trap.h 164copy.o: assym.h $S/sys/errno.h 165 166 167# depend on root or device configuration 168autoconf.o conf.o: Makefile 169 170# depend on network or filesystem configuration 171uipc_proto.o vfs_conf.o: Makefile 172 173# depend on maxusers 174genassym.o machdep.o: Makefile 175 176# depend on CPU configuration 177db_machdep.o dvma.o machdep.o pmap.o sun3_startup.o vm_machdep.o: Makefile 178 179 180locore.o: ${SUN3}/sun3/locore.s assym.h 181 ${NORMAL_S} 182 183%RULES 184