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