Home | History | Annotate | Line # | Download | only in conf
Makefile.x68k revision 1.13
      1 #	$NetBSD: Makefile.x68k,v 1.13 1997/02/04 04:32:25 perry 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
     28 COPTS?= 	-O2
     29 
     30 # source tree is located via $S relative to the compilation directory
     31 .ifndef S
     32 S!=	cd ../../../..; pwd
     33 .endif
     34 X68K=	$S/arch/x68k
     35 
     36 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     37 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
     38 		-Dmc68020 -Dx68k -DFPCOPROC
     39 .if empty(IDENT:M-DM68060)
     40 CMACHFLAGS=	-m68030
     41 .else
     42 CMACHFLAGS=	-m68060
     43 .endif
     44 CWARNFLAGS=	-Werror
     45 CFLAGS=		${DEBUG} ${COPTS} ${CMACHFLAGS} ${CWARNFLAGS} -msoft-float
     46 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     47 LINKFLAGS=	-n -Ttext 0 -e start
     48 STRIPFLAGS=	-d
     49 
     50 HOSTED_CC=	${CC}
     51 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     52 HOSTED_CFLAGS=	${CFLAGS}
     53 
     54 ### find out what to use for libkern
     55 .include "$S/lib/libkern/Makefile.inc"
     56 .ifndef PROF
     57 LIBKERN=	${KERNLIB}
     58 .else
     59 LIBKERN=	${KERNLIB_PROF}
     60 .endif
     61 
     62 ### find out what to use for libcompat
     63 .include "$S/compat/common/Makefile.inc"
     64 .ifndef PROF
     65 LIBCOMPAT=	${COMPATLIB}
     66 .else
     67 LIBCOMPAT=	${COMPATLIB_PROF}
     68 .endif
     69 
     70 ### for the Motorola 68040 Floating Point Software Product
     71 .include "$S/arch/m68k/fpsp/Makefile.inc"
     72 
     73 ### for the Motorola 68060 Software Support Package
     74 .include "$S/arch/m68k/060sp/Makefile.inc"
     75 
     76 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     77 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     78 
     79 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     80 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     81 
     82 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
     83 
     84 %OBJS
     85 
     86 %CFILES
     87 
     88 #%SFILES
     89 
     90 # load lines for config "xxx" will be emitted as:
     91 # xxx: ${SYSTEM_DEP} swapxxx.o
     92 #	${SYSTEM_LD_HEAD}
     93 #	${SYSTEM_LD} swapxxx.o
     94 #	${SYSTEM_LD_TAIL}
     95 SYSTEM_OBJ=	locore.o ${FPSP} ${060SP} \
     96 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     97 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     98 SYSTEM_LD_HEAD=	@rm -f $@
     99 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
    100 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
    101 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
    102 
    103 DEBUG?=
    104 .if ${DEBUG} == "-g"
    105 LINKFLAGS+=	-X
    106 SYSTEM_LD_TAIL+=; \
    107 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    108 		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
    109 .else
    110 LINKFLAGS+=	-S
    111 .endif
    112 
    113 %LOAD
    114 
    115 assym.h: genassym
    116 	./genassym >assym.h
    117 
    118 genassym: genassym.o
    119 	${CC} -o $@ genassym.o
    120 
    121 genassym.o: ${X68K}/x68k/genassym.c
    122 	${HOSTED_C}
    123 
    124 param.c: $S/conf/param.c
    125 	rm -f param.c
    126 	cp $S/conf/param.c .
    127 
    128 param.o: param.c Makefile
    129 	${NORMAL_C}
    130 
    131 ioconf.o: ioconf.c
    132 	${NORMAL_C}
    133 
    134 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    135 	sh $S/conf/newvers.sh
    136 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    137 
    138 
    139 clean:
    140 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    141 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    142 
    143 lint:
    144 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    145 	    ${X68K}/x68k/Locore.c ${CFILES} ioconf.c param.c | \
    146 	    grep -v 'static function .* unused'
    147 
    148 tags:
    149 	@echo "see $S/kern/Makefile for tags"
    150 
    151 links:
    152 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    153 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    154 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    155 	  sort -u | comm -23 - dontlink | \
    156 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    157 	sh makelinks && rm -f dontlink
    158 
    159 SRCS=	${X68K}/x68k/locore.s \
    160 	param.c ioconf.c ${CFILES} ${SFILES}
    161 depend: .depend
    162 .depend: ${SRCS} assym.h param.c
    163 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${X68K}/x68k/locore.s
    164 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    165 	-if test -n "${SFILES}"; then \
    166 		${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
    167 	fi
    168 	${MKDEP} -a ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} \
    169 	    ${X68K}/x68k/genassym.c
    170 
    171 
    172 # depend on root or device configuration
    173 autoconf.o conf.o: Makefile
    174  
    175 # depend on network or filesystem configuration 
    176 uipc_proto.o vfs_conf.o: Makefile 
    177 
    178 # depend on maxusers
    179 genassym.o machdep.o: Makefile
    180 
    181 # depend on CPU configuration 
    182 dma.o genassym.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
    183 
    184 
    185 locore.o: ${X68K}/x68k/locore.s assym.h
    186 	${NORMAL_S}
    187 
    188 %RULES
    189