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