Home | History | Annotate | Line # | Download | only in conf
Makefile.cesfic revision 1.4
      1 #	$NetBSD: Makefile.cesfic,v 1.4 2001/10/23 19:26:44 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 
     19 MACHINE_ARCH=m68k
     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 SIZE?=	size
     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 CESFIC=	$S/arch/cesfic
     36 
     37 HAVE_GCC28!=	${CC} --version | egrep "^(2\.8|egcs)" ; echo 
     38 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     39 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D_KERNEL_OPT
     40 CWARNFLAGS=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes -Wno-format
     41 .if (${HAVE_GCC28} != "")
     42 CWARNFLAGS+=	-Wno-main
     43 .endif
     44 CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
     45 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE -Wa,-m68030 -Wa,-m68851 -Wa,-m68040
     46 LINKFLAGS=	-n -Ttext 2000 -e start
     47 STRIPFLAGS?=	-d
     48 
     49 HOSTED_CC=	${CC}
     50 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     51 HOSTED_CFLAGS=	${CFLAGS}
     52 
     53 ### find out what to use for libkern
     54 KERN_AS=	obj
     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 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     74 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     75 
     76 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     77 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     78 
     79 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
     80 
     81 %OBJS
     82 
     83 %CFILES
     84 
     85 #%SFILES
     86 
     87 # load lines for config "xxx" will be emitted as:
     88 # xxx: ${SYSTEM_DEP} swapxxx.o
     89 #	${SYSTEM_LD_HEAD}
     90 #	${SYSTEM_LD} swapxxx.o
     91 #	${SYSTEM_LD_TAIL}
     92 SYSTEM_OBJ=	locore.o ${FPSP} \
     93 		param.o ioconf.o ${OBJS} ${LIBCOMPAT} ${LIBKERN}
     94 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     95 SYSTEM_LD_HEAD=	@rm -f $@
     96 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     97 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     98 SYSTEM_LD_TAIL=	@${SIZE} $@; chmod 755 $@
     99 
    100 DEBUG?=
    101 .if ${DEBUG} == "-g"
    102 LINKFLAGS+=	-X
    103 SYSTEM_LD_TAIL+=; \
    104 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
    105 		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
    106 .else
    107 LINKFLAGS+=	-S
    108 .endif
    109 
    110 %LOAD
    111 
    112 assym.h: $S/kern/genassym.sh ${CESFIC}/cesfic/genassym.cf
    113 	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
    114 	    < ${CESFIC}/cesfic/genassym.cf > assym.h.tmp && \
    115 	mv -f assym.h.tmp assym.h
    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}
    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 clean: cleankernel
    132 cleankernel:
    133 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    134 	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
    135 
    136 lint:
    137 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    138 	    ioconf.c param.c | \
    139 	    grep -v 'static function .* unused'
    140 
    141 tags:
    142 	@echo "see $S/kern/Makefile for tags"
    143 
    144 links:
    145 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    146 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    147 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    148 	  sort -u | comm -23 - dontlink | \
    149 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    150 	sh makelinks && rm -f dontlink
    151 
    152 SRCS=	${CESFIC}/cesfic/locore.s \
    153 	param.c ioconf.c ${CFILES} ${SFILES}
    154 depend: .depend
    155 .depend: ${SRCS} assym.h param.c
    156 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${CESFIC}/cesfic/locore.s
    157 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    158 	-if test -n "${SFILES}"; then \
    159 		${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}; \
    160 	fi
    161 
    162 
    163 # depend on root or device configuration
    164 autoconf.o conf.o: Makefile
    165  
    166 # depend on network or filesystem configuration 
    167 uipc_proto.o vfs_conf.o: Makefile 
    168 
    169 # depend on maxusers
    170 machdep.o: Makefile
    171 
    172 # depend on CPU configuration 
    173 dma.o hpux_machdep.o locore.o machdep.o pmap.o pmap_boostrap.o sys_machdep.o trap.o: Makefile
    174 
    175 
    176 locore.o: ${CESFIC}/cesfic/locore.s assym.h
    177 	${NORMAL_S}
    178 
    179 %RULES
    180