Home | History | Annotate | Line # | Download | only in conf
Makefile.x68k revision 1.3
      1 #	$NetBSD: Makefile.x68k,v 1.3 1996/05/19 12:29:20 oki 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 AS?=	as
     25 CC?=	cc
     26 CPP?=	cpp
     27 LD?=	ld
     28 STRIP?=	strip -d
     29 TOUCH?=	touch -f -c
     30 
     31 # source tree is located via $S relative to the compilation directory
     32 S=	../../../..
     33 X68K=	../..
     34 
     35 INCLUDES=	-I. -I$S/arch -I$S
     36 CPPFLAGS=	${INCLUDES} ${IDENT} -D_KERNEL -Dmc68020 -Dx68k -DFPCOPROC
     37 CFLAGS=		${DEBUG} -O2 -Werror -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 %OBJS
     78 
     79 %CFILES
     80 
     81 #%SFILES
     82 
     83 # load lines for config "xxx" will be emitted as:
     84 # xxx: ${SYSTEM_DEP} swapxxx.o
     85 #	${SYSTEM_LD_HEAD}
     86 #	${SYSTEM_LD} swapxxx.o
     87 #	${SYSTEM_LD_TAIL}
     88 SYSTEM_OBJ=	locore.o ${FPSP} \
     89 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     90 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     91 SYSTEM_LD_HEAD=	@rm -f $@
     92 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     93 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     94 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
     95 
     96 DEBUG?=
     97 .if ${DEBUG} == "-g"
     98 LINKFLAGS+=	-X
     99 SYSTEM_LD_TAIL+=; \
    100 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    101 		echo ${STRIP} $@; ${STRIP} $@
    102 .else
    103 LINKFLAGS+=	-x
    104 .endif
    105 
    106 %LOAD
    107 
    108 assym.h: genassym
    109 	./genassym >assym.h
    110 
    111 genassym: genassym.o
    112 	${CC} -o $@ genassym.o
    113 
    114 genassym.o: ${X68K}/x68k/genassym.c
    115 	${NORMAL_C_C}
    116 
    117 param.c: $S/conf/param.c
    118 	rm -f param.c
    119 	cp $S/conf/param.c .
    120 
    121 param.o: param.c Makefile
    122 	${NORMAL_C_C}
    123 
    124 ioconf.o: ioconf.c
    125 	${NORMAL_C}
    126 
    127 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    128 	sh $S/conf/newvers.sh
    129 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    130 
    131 
    132 clean::
    133 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    134 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    135 
    136 lint:
    137 	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \
    138 	    ${X68K}/x68k/Locore.c ${CFILES} ${X68K}/x68k/swapgeneric.c \
    139 	    ioconf.c param.c | \
    140 	    grep -v 'static function .* unused'
    141 
    142 tags:
    143 	@echo "see $S/kern/Makefile for tags"
    144 
    145 links:
    146 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    147 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    148 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    149 	  sort -u | comm -23 - dontlink | \
    150 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    151 	sh makelinks && rm -f dontlink
    152 
    153 SRCS=	${X68K}/x68k/locore.s \
    154 	param.c ioconf.c ${CFILES} ${SFILES}
    155 depend:: .depend
    156 .depend: ${SRCS} assym.h param.c
    157 	mkdep ${AFLAGS} ${CPPFLAGS} ${X68K}/x68k/locore.s
    158 	mkdep -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    159 	-if test -n "${SFILES}"; then \
    160 		mkdep -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
    161 	fi
    162 	mkdep -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${X68K}/x68k/genassym.c
    163 
    164 
    165 # depend on root or device configuration
    166 autoconf.o conf.o: Makefile
    167  
    168 # depend on network or filesystem configuration 
    169 uipc_proto.o vfs_conf.o: Makefile 
    170 
    171 # depend on maxusers
    172 genassym.o machdep.o: Makefile
    173 
    174 # depend on CPU configuration 
    175 dma.o genassym.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
    176 
    177 
    178 locore.o: ${X68K}/x68k/locore.s assym.h
    179 	${NORMAL_S}
    180 
    181 %RULES
    182