Home | History | Annotate | Line # | Download | only in conf
Makefile.atari revision 1.31
      1 #	$NetBSD: Makefile.atari,v 1.31 1997/03/17 13:24:37 leo 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 STRIP?=	strip
     28 COPTS?= 	-O2 -mc68020
     29 
     30 # source tree is located via $S relative to the compilation directory
     31 .ifndef S
     32 S!=	cd ../../../..; pwd
     33 .endif
     34 ATARI=	$S/arch/atari
     35 
     36 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     37 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
     38 		-Dmc68020 -Datari
     39 CWARNFLAGS=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
     40 CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
     41 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     42 LINKFLAGS=	-n -Ttext 0 -e start
     43 STRIPFLAGS=	-d
     44 
     45 HOSTED_CC=	${CC}
     46 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     47 HOSTED_CFLAGS=	${CFLAGS}
     48 
     49 ### find out what to use for libkern
     50 .include "$S/lib/libkern/Makefile.inc"
     51 .ifndef PROF
     52 LIBKERN=	${KERNLIB}
     53 .else
     54 LIBKERN=	${KERNLIB_PROF}
     55 .endif
     56 
     57 ### find out what to use for libcompat
     58 .include "$S/compat/common/Makefile.inc"
     59 .ifndef PROF
     60 LIBCOMPAT=	${COMPATLIB}
     61 .else
     62 LIBCOMPAT=	${COMPATLIB_PROF}
     63 .endif
     64 
     65 ### for the Motorola 68040 Floating Point Software Product
     66 .include "$S/arch/m68k/fpsp/Makefile.inc"
     67 
     68 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     69 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     70 
     71 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     72 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     73 
     74 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
     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}
     87 SYSTEM_OBJ=	locore.o ${FPSP} \
     88 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     89 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     90 SYSTEM_LD_HEAD=	@rm -f $@
     91 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     92 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     93 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
     94 
     95 DEBUG?=
     96 .if ${DEBUG} == "-g"
     97 LINKFLAGS+=	-X
     98 SYSTEM_LD_TAIL+=; \
     99 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    100 		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
    101 .else
    102 LINKFLAGS+=	-S
    103 .endif
    104 
    105 %LOAD
    106 
    107 assym.h: ${ATARI}/atari/genassym.cf $S/kern/genassym.sh
    108 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} \
    109 	< ${ATARI}/atari/genassym.cf >assym.h || rm assym.h
    110 
    111 param.c: $S/conf/param.c
    112 	rm -f param.c
    113 	cp $S/conf/param.c .
    114 
    115 param.o: param.c Makefile
    116 	${NORMAL_C}
    117 
    118 ioconf.o: ioconf.c
    119 	${NORMAL_C}
    120 
    121 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    122 	sh $S/conf/newvers.sh
    123 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    124 
    125 
    126 clean: cleankernel
    127 cleankernel:
    128 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    129 	    [Ee]rrs linterrs makelinks assym.h
    130 
    131 lint:
    132 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    133 	    ${ATARI}/atari/Locore.c ${CFILES} \
    134 	    ioconf.c param.c | \
    135 	    grep -v 'static function .* unused'
    136 
    137 tags:
    138 	@echo "see $S/kern/Makefile for tags"
    139 
    140 links:
    141 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    142 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    143 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    144 	  sort -u | comm -23 - dontlink | \
    145 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    146 	sh makelinks && rm -f dontlink
    147 
    148 SRCS=	${ATARI}/atari/locore.s \
    149 	param.c ioconf.c ${CFILES} ${SFILES}
    150 depend: .depend
    151 .depend: ${SRCS} assym.h param.c
    152 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${ATARI}/atari/locore.s
    153 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    154 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    155 
    156 
    157 # depend on root or device configuration
    158 autoconf.o conf.o: Makefile
    159  
    160 # depend on network or filesystem configuration 
    161 uipc_proto.o vfs_conf.o: Makefile 
    162 
    163 # depend on maxusers
    164 machdep.o: Makefile
    165 
    166 # depend on CPU configuration 
    167 locore.o pmap.o sys_machdep.o: Makefile
    168 
    169 
    170 locore.o: ${ATARI}/atari/locore.s assym.h
    171 	${NORMAL_S}
    172 
    173 %RULES
    174