Home | History | Annotate | Line # | Download | only in conf
Makefile.x68k revision 1.5
      1 #	$NetBSD: Makefile.x68k,v 1.5 1996/08/10 06:10:27 mycroft 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 # 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 CC?=	cc
     25 LD?=	ld
     26 MKDEP?=	mkdep
     27 STRIP?=	strip -d
     28 TOUCH?=	touch -f -c
     29 
     30 # source tree is located via $S relative to the compilation directory
     31 S!=	cd ../../../..; pwd
     32 X68K=	$S/arch/x68k
     33 
     34 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     35 CPPFLAGS=	${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Dx68k -DFPCOPROC
     36 CWARNFLAGS=	-Werror
     37 CFLAGS=		${DEBUG} ${CWARNFLAGS} -O2 -msoft-float
     38 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     39 LINKFLAGS=	-n -Ttext 0 -e start
     40 
     41 ### find out what to use for libkern
     42 .include "$S/lib/libkern/Makefile.inc"
     43 .ifndef PROF
     44 LIBKERN=	${KERNLIB}
     45 .else
     46 LIBKERN=	${KERNLIB_PROF}
     47 .endif
     48 
     49 ### find out what to use for libcompat
     50 .include "$S/compat/common/Makefile.inc"
     51 .ifndef PROF
     52 LIBCOMPAT=	${COMPATLIB}
     53 .else
     54 LIBCOMPAT=	${COMPATLIB_PROF}
     55 .endif
     56 
     57 ### for the Motorola 68040 Floating Point Software Product
     58 .include "$S/arch/m68k/fpsp/Makefile.inc"
     59 
     60 ### for the Motorola 68060 Software Support Package
     61 .include "$S/arch/m68k/060sp/Makefile.inc"
     62 
     63 # compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP}
     64 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix,
     65 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file
     66 # is marked as config-dependent.
     67 
     68 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     69 NORMAL_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     70 
     71 DRIVER_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     72 DRIVER_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     73 
     74 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     75 NORMAL_S_C=	${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $<
     76 
     77 HOSTED_C_C=	${NORMAL_C_C:S/^-pg$//:S/^-p$//:S/^-nostdinc$//}
     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} $@; ${STRIP} $@
    104 .else
    105 LINKFLAGS+=	-S
    106 .endif
    107 
    108 %LOAD
    109 
    110 assym.h: genassym
    111 	./genassym >assym.h
    112 
    113 genassym: genassym.o
    114 	${CC} -o $@ genassym.o
    115 
    116 genassym.o: ${X68K}/x68k/genassym.c
    117 	${HOSTED_C_C}
    118 
    119 param.c: $S/conf/param.c
    120 	rm -f param.c
    121 	cp $S/conf/param.c .
    122 
    123 param.o: param.c Makefile
    124 	${NORMAL_C_C}
    125 
    126 ioconf.o: ioconf.c
    127 	${NORMAL_C}
    128 
    129 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    130 	sh $S/conf/newvers.sh
    131 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    132 
    133 
    134 clean::
    135 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    136 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    137 
    138 lint:
    139 	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \
    140 	    ${X68K}/x68k/Locore.c ${CFILES} ${X68K}/x68k/swapgeneric.c \
    141 	    ioconf.c param.c | \
    142 	    grep -v 'static function .* unused'
    143 
    144 tags:
    145 	@echo "see $S/kern/Makefile for tags"
    146 
    147 links:
    148 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    149 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    150 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    151 	  sort -u | comm -23 - dontlink | \
    152 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    153 	sh makelinks && rm -f dontlink
    154 
    155 SRCS=	${X68K}/x68k/locore.s \
    156 	param.c ioconf.c ${CFILES} ${SFILES}
    157 depend:: .depend
    158 .depend: ${SRCS} assym.h param.c
    159 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${X68K}/x68k/locore.s
    160 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    161 	-if test -n "${SFILES}"; then \
    162 		${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
    163 	fi
    164 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${X68K}/x68k/genassym.c
    165 
    166 
    167 # depend on root or device configuration
    168 autoconf.o conf.o: Makefile
    169  
    170 # depend on network or filesystem configuration 
    171 uipc_proto.o vfs_conf.o: Makefile 
    172 
    173 # depend on maxusers
    174 genassym.o machdep.o: Makefile
    175 
    176 # depend on CPU configuration 
    177 dma.o genassym.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
    178 
    179 
    180 locore.o: ${X68K}/x68k/locore.s assym.h
    181 	${NORMAL_S}
    182 
    183 %RULES
    184