Home | History | Annotate | Line # | Download | only in conf
Makefile.mac68k revision 1.80
      1  1.80       jmc #	$NetBSD: Makefile.mac68k,v 1.80 2001/10/26 06:45:37 jmc Exp $
      2  1.12       cgd 
      3  1.31   mycroft # Makefile for NetBSD
      4   1.1    briggs #
      5   1.1    briggs # This makefile is constructed from a machine description:
      6   1.1    briggs #	config machineid
      7   1.1    briggs # Most changes should be made in the machine description
      8  1.31   mycroft #	/sys/arch/mac68k/conf/``machineid''
      9   1.1    briggs # after which you should do
     10  1.31   mycroft #	config machineid
     11   1.1    briggs # Machine generic makefile changes should be made in
     12  1.31   mycroft #	/sys/arch/mac68k/conf/Makefile.mac68k
     13   1.1    briggs # after which config should be rerun for all machines of that type.
     14  1.79   thorpej 
     15  1.79   thorpej MACHINE_ARCH=m68k
     16  1.80       jmc USETOOLS?=	no
     17  1.80       jmc 
     18  1.80       jmc .include <bsd.own.mk>
     19   1.1    briggs 
     20  1.31   mycroft # DEBUG is set to -g if debugging.
     21  1.31   mycroft # PROF is set to -pg if profiling.
     22  1.31   mycroft 
     23  1.59   thorpej AR?=	ar
     24  1.59   thorpej AS?=	as
     25  1.35   mycroft CC?=	cc
     26  1.55    scottr CPP?=	cpp
     27  1.35   mycroft LD?=	ld
     28  1.58   thorpej LORDER?=lorder
     29  1.39   mycroft MKDEP?=	mkdep
     30  1.58   thorpej NM?=	nm
     31  1.59   thorpej RANLIB?=ranlib
     32  1.55    scottr SIZE?=	size
     33  1.74   tsutsui STRIP?=	strip
     34  1.58   thorpej TSORT?=	tsort -q
     35  1.59   thorpej 
     36  1.59   thorpej COPTS?= -O2
     37   1.1    briggs 
     38   1.1    briggs # source tree is located via $S relative to the compilation directory
     39  1.42   mycroft .ifndef S
     40  1.39   mycroft S!=	cd ../../../..; pwd
     41  1.42   mycroft .endif
     42  1.39   mycroft MAC68K=	$S/arch/mac68k
     43  1.17    briggs 
     44  1.75   thorpej HAVE_EGCS!=	${CC} --version | egrep "^(2\.[89]|egcs)" ; echo 
     45  1.40   mycroft INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     46  1.78       mrg CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D_KERNEL_OPT -Dmac68k
     47  1.66  augustss CWARNFLAGS?=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes \
     48  1.66  augustss 		-Wpointer-arith
     49  1.75   thorpej # XXX Delete -Wuninitialized for now, since the compiler doesn't
     50  1.75   thorpej # XXX always get it right.  --thorpej 
     51  1.75   thorpej CWARNFLAGS+=    -Wno-uninitialized
     52  1.75   thorpej .if (${HAVE_EGCS} != "")
     53  1.61        tv CWARNFLAGS+=	-Wno-main
     54  1.61        tv .endif
     55  1.44  jonathan CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
     56  1.55    scottr AFLAGS=		-traditional -D_LOCORE
     57  1.31   mycroft LINKFLAGS=	-n -Ttext 0 -e start
     58  1.71   tsutsui STRIPFLAGS=	-g
     59  1.69       mrg 
     60  1.69       mrg %INCLUDES
     61  1.43   mycroft 
     62  1.17    briggs ### Find out what to use for libkern.
     63  1.65  drochner KERN_AS=	obj
     64   1.1    briggs .include "$S/lib/libkern/Makefile.inc"
     65   1.1    briggs .ifndef PROF
     66   1.1    briggs LIBKERN=${KERNLIB}
     67   1.1    briggs .else
     68   1.1    briggs LIBKERN=${KERNLIB_PROF}
     69   1.1    briggs .endif
     70   1.1    briggs 
     71  1.20    briggs ### Find out what to use for libcompat.
     72  1.20    briggs .include "$S/compat/common/Makefile.inc"
     73  1.20    briggs .ifndef PROF
     74  1.21    briggs LIBCOMPAT=${COMPATLIB}
     75  1.20    briggs .else
     76  1.21    briggs LIBCOMPAT=${COMPATLIB_PROF}
     77  1.20    briggs .endif
     78  1.20    briggs 
     79   1.9    briggs ### for the Motorola 68040 Floating Point Software Product
     80   1.9    briggs .include "$S/arch/m68k/fpsp/Makefile.inc"
     81   1.1    briggs 
     82  1.41   mycroft # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     83  1.41   mycroft # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     84   1.1    briggs 
     85  1.31   mycroft NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     86  1.63   thorpej NOPROF_C=	${CC} ${CFLAGS} ${CPPFLAGS} -c $<
     87  1.55    scottr NORMAL_S=	${CPP} ${AFLAGS} ${CPPFLAGS} $< | sed -e 's/^\#.*//' | ${AS} -o ${.TARGET}
     88  1.40   mycroft 
     89   1.1    briggs %OBJS
     90   1.1    briggs 
     91   1.1    briggs %CFILES
     92   1.1    briggs 
     93  1.31   mycroft %SFILES
     94  1.31   mycroft 
     95   1.1    briggs # load lines for config "xxx" will be emitted as:
     96   1.1    briggs # xxx: ${SYSTEM_DEP} swapxxx.o
     97   1.1    briggs #	${SYSTEM_LD_HEAD}
     98   1.1    briggs #	${SYSTEM_LD} swapxxx.o
     99   1.1    briggs #	${SYSTEM_LD_TAIL}
    100  1.31   mycroft SYSTEM_OBJ=	locore.o ${FPSP} \
    101  1.65  drochner 		param.o ioconf.o ${OBJS} ${LIBCOMPAT} ${LIBKERN}
    102   1.1    briggs SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
    103  1.31   mycroft SYSTEM_LD_HEAD=	@rm -f $@
    104  1.31   mycroft SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
    105  1.31   mycroft 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
    106  1.55    scottr SYSTEM_LD_TAIL=	@${SIZE} $@; chmod 755 $@
    107  1.31   mycroft 
    108  1.31   mycroft DEBUG?=
    109  1.31   mycroft .if ${DEBUG} == "-g"
    110  1.31   mycroft LINKFLAGS+=	-X
    111  1.31   mycroft SYSTEM_LD_TAIL+=; \
    112  1.70       cgd 		echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \
    113  1.74   tsutsui 		echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \
    114  1.74   tsutsui 		${STRIP} ${STRIPFLAGS} -o $@ $@.gdb
    115  1.31   mycroft .else
    116  1.39   mycroft LINKFLAGS+=	-S
    117  1.31   mycroft .endif
    118   1.1    briggs 
    119   1.1    briggs %LOAD
    120   1.1    briggs 
    121  1.53    scottr assym.h: $S/kern/genassym.sh ${MAC68K}/mac68k/genassym.cf
    122  1.53    scottr 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
    123  1.53    scottr 	    < ${MAC68K}/mac68k/genassym.cf > assym.h.tmp && \
    124  1.53    scottr 	mv -f assym.h.tmp assym.h
    125   1.1    briggs 
    126  1.31   mycroft param.c: $S/conf/param.c
    127  1.31   mycroft 	rm -f param.c
    128  1.31   mycroft 	cp $S/conf/param.c .
    129  1.31   mycroft 
    130  1.31   mycroft param.o: param.c Makefile
    131  1.41   mycroft 	${NORMAL_C}
    132  1.31   mycroft 
    133  1.31   mycroft ioconf.o: ioconf.c
    134  1.31   mycroft 	${NORMAL_C}
    135   1.1    briggs 
    136  1.31   mycroft newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    137  1.31   mycroft 	sh $S/conf/newvers.sh
    138  1.31   mycroft 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    139   1.1    briggs 
    140  1.57  christos __CLEANKERNEL: .USE
    141  1.57  christos 	@echo "${.TARGET}ing the kernel objects"
    142  1.36       cgd 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    143  1.53    scottr 	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
    144  1.57  christos 
    145  1.57  christos __CLEANDEPEND: .USE
    146  1.57  christos 	rm -f .depend
    147  1.57  christos 
    148  1.57  christos clean: __CLEANKERNEL
    149  1.57  christos 
    150  1.64     lukem cleandir distclean: __CLEANKERNEL __CLEANDEPEND
    151   1.1    briggs 
    152  1.31   mycroft lint:
    153  1.50     perry 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    154  1.56   mycroft 	    ${CFILES} ioconf.c param.c | \
    155  1.31   mycroft 	    grep -v 'static function .* unused'
    156   1.1    briggs 
    157  1.31   mycroft tags:
    158  1.31   mycroft 	@echo "see $S/kern/Makefile for tags"
    159   1.1    briggs 
    160   1.1    briggs links:
    161   1.1    briggs 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    162   1.1    briggs 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    163   1.1    briggs 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    164   1.1    briggs 	  sort -u | comm -23 - dontlink | \
    165  1.31   mycroft 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    166   1.1    briggs 	sh makelinks && rm -f dontlink
    167   1.1    briggs 
    168  1.31   mycroft SRCS=	${MAC68K}/mac68k/locore.s \
    169  1.36       cgd 	param.c ioconf.c ${CFILES} ${SFILES}
    170  1.48    scottr depend: .depend
    171  1.36       cgd .depend: ${SRCS} assym.h param.c
    172  1.60    scottr 	${MKDEP} -x assembler-with-cpp ${AFLAGS} ${CPPFLAGS} \
    173  1.60    scottr 	    ${MAC68K}/mac68k/locore.s
    174  1.39   mycroft 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    175  1.60    scottr 	${MKDEP} -a -x assembler-with-cpp ${AFLAGS} ${CPPFLAGS} ${SFILES}
    176  1.54       leo 	sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \
    177  1.54       leo 	  ${CPPFLAGS} < ${MAC68K}/mac68k/genassym.cf
    178  1.54       leo 	@sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend
    179  1.54       leo 	@rm -f assym.dep
    180  1.73      tron 
    181  1.73      tron dependall: depend all
    182  1.31   mycroft 
    183  1.31   mycroft 
    184  1.31   mycroft # depend on root or device configuration
    185  1.31   mycroft autoconf.o conf.o: Makefile
    186  1.31   mycroft  
    187  1.31   mycroft # depend on network or filesystem configuration 
    188  1.31   mycroft uipc_proto.o vfs_conf.o: Makefile 
    189   1.1    briggs 
    190  1.31   mycroft # depend on maxusers
    191  1.31   mycroft genassym.o machdep.o: Makefile
    192  1.62    scottr 
    193  1.62    scottr # depends on KGDBDEV, KGDBRATE
    194  1.62    scottr kgdb_stub.o: Makefile
    195   1.1    briggs 
    196  1.31   mycroft # depend on CPU configuration 
    197  1.31   mycroft locore.o pmap.o trap.o: Makefile
    198   1.1    briggs 
    199   1.8    briggs 
    200  1.31   mycroft locore.o: ${MAC68K}/mac68k/locore.s assym.h
    201  1.31   mycroft 	${NORMAL_S}
    202  1.76   hubertf 
    203  1.76   hubertf # The install target can be redefined by putting a
    204  1.76   hubertf # install-kernel-${MACHINE_NAME} target into /etc/mk.conf
    205  1.76   hubertf MACHINE_NAME!=  uname -n
    206  1.76   hubertf install: install-kernel-${MACHINE_NAME}
    207  1.76   hubertf .if !target(install-kernel-${MACHINE_NAME}})
    208  1.76   hubertf install-kernel-${MACHINE_NAME}:
    209  1.76   hubertf 	rm -f /onetbsd
    210  1.76   hubertf 	ln /netbsd /onetbsd
    211  1.76   hubertf 	cp netbsd /nnetbsd
    212  1.76   hubertf 	mv /nnetbsd /netbsd
    213  1.76   hubertf .endif
    214   1.1    briggs 
    215   1.1    briggs %RULES
    216