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