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