Home | History | Annotate | Line # | Download | only in conf
Makefile.hp300 revision 1.55.2.2
      1 #	$NetBSD: Makefile.hp300,v 1.55.2.2 1997/10/14 08:54:21 thorpej 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/hp300/conf/``machineid''
      9 # after which you should do
     10 #	config machineid
     11 # Machine generic makefile changes should be made in
     12 #	/sys/arch/hp300/conf/Makefile.hp300
     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 SIZE?=	size
     28 STRIP?=	strip
     29 COPTS?=	-O2
     30 
     31 # source tree is located via $S relative to the compilation directory
     32 .ifndef S
     33 S!=	cd ../../../..; pwd
     34 .endif
     35 HP300=	$S/arch/hp300
     36 
     37 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     38 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
     39 		-Dmc68020 -Dhp300
     40 CWARNFLAGS=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
     41 CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
     42 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     43 LINKFLAGS=	-n -Ttext 0 -e start
     44 STRIPFLAGS=	-d
     45 
     46 HOSTED_CC=	${CC}
     47 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     48 HOSTED_CFLAGS=	${CFLAGS}
     49 
     50 ### find out what to use for libkern
     51 .include "$S/lib/libkern/Makefile.inc"
     52 .ifndef PROF
     53 LIBKERN=	${KERNLIB}
     54 .else
     55 LIBKERN=	${KERNLIB_PROF}
     56 .endif
     57 
     58 ### find out what to use for libcompat
     59 .include "$S/compat/common/Makefile.inc"
     60 .ifndef PROF
     61 LIBCOMPAT=	${COMPATLIB}
     62 .else
     63 LIBCOMPAT=	${COMPATLIB_PROF}
     64 .endif
     65 
     66 ### for the Motorola 68040 Floating Point Software Product
     67 .include "$S/arch/m68k/fpsp/Makefile.inc"
     68 
     69 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     70 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     71 
     72 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     73 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     74 
     75 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -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} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
    102 .else
    103 LINKFLAGS+=	-S
    104 .endif
    105 
    106 %LOAD
    107 
    108 assym.h: $S/kern/genassym.sh ${HP300}/hp300/genassym.cf
    109 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
    110 	    < ${HP300}/hp300/genassym.cf > assym.h.tmp && \
    111 	mv -f assym.h.tmp assym.h
    112 
    113 param.c: $S/conf/param.c
    114 	rm -f param.c
    115 	cp $S/conf/param.c .
    116 
    117 param.o: param.c Makefile
    118 	${NORMAL_C}
    119 
    120 ioconf.o: ioconf.c
    121 	${NORMAL_C}
    122 
    123 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    124 	sh $S/conf/newvers.sh
    125 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    126 
    127 __CLEANKERNEL: .USE
    128 	@echo "${.TARGET}ing the kernel objects"
    129 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    130 	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
    131 
    132 __CLEANDEPEND: .USE
    133 	rm -f .depend
    134 
    135 clean: __CLEANKERNEL
    136 
    137 cleandir: __CLEANKERNEL __CLEANDEPEND
    138 
    139 lint:
    140 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    141 	    ${CFILES} 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=	${HP300}/hp300/locore.s \
    156 	param.c ioconf.c ${CFILES} ${SFILES}
    157 depend: .depend
    158 .depend: ${SRCS} assym.h param.c
    159 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${HP300}/hp300/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 	sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \
    165 	  ${CPPFLAGS} < ${HP300}/hp300/genassym.cf
    166 	@sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend
    167 	@rm -f assym.dep
    168 
    169 
    170 # depend on root or device configuration
    171 autoconf.o conf.o: Makefile
    172  
    173 # depend on network or filesystem configuration 
    174 uipc_proto.o vfs_conf.o: Makefile 
    175 
    176 # depend on maxusers
    177 machdep.o: Makefile
    178 
    179 # depend on CPU configuration 
    180 dma.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
    181 
    182 
    183 locore.o: ${HP300}/hp300/locore.s assym.h
    184 	${NORMAL_S}
    185 
    186 %RULES
    187