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