Home | History | Annotate | Line # | Download | only in conf
Makefile.sparc revision 1.41
      1 # 	$NetBSD: Makefile.sparc,v 1.41 1997/02/04 05:08:49 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/sparc/conf/``machineid''
      9 # after which you should do
     10 #	config machineid
     11 # Machine generic makefile changes should be made in
     12 #	/sys/arch/sparc/conf/Makefile.sparc
     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 SPARC=	$S/arch/sparc
     35 
     36 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     37 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL
     38 CWARNFLAGS=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
     39 CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS}
     40 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     41 LINKFLAGS=	-N -p -Ttext F8004000 -e start
     42 STRIPFLAGS=	-d
     43 
     44 HOSTED_CC=	${CC}
     45 HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
     46 HOSTED_CFLAGS=	${CFLAGS}
     47 
     48 ### find out what to use for libkern
     49 .include "$S/lib/libkern/Makefile.inc"
     50 .ifndef PROF
     51 LIBKERN=	${KERNLIB}
     52 .else
     53 LIBKERN=	${KERNLIB_PROF}
     54 .endif
     55 
     56 ### find out what to use for libcompat
     57 .include "$S/compat/common/Makefile.inc"
     58 .ifndef PROF
     59 LIBCOMPAT=	${COMPATLIB}
     60 .else
     61 LIBCOMPAT=	${COMPATLIB_PROF}
     62 .endif
     63 
     64 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     65 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     66 
     67 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     68 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     69 
     70 HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
     71 
     72 %OBJS
     73 
     74 %CFILES
     75 
     76 %SFILES
     77 
     78 # load lines for config "xxx" will be emitted as:
     79 # xxx: ${SYSTEM_DEP} swapxxx.o
     80 #	${SYSTEM_LD_HEAD}
     81 #	${SYSTEM_LD} swapxxx.o
     82 #	${SYSTEM_LD_TAIL}
     83 SYSTEM_OBJ=	locore.o \
     84 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     85 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     86 SYSTEM_LD_HEAD=	@rm -f $@
     87 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     88 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     89 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
     90 
     91 DEBUG?=
     92 .if ${DEBUG} == "-g"
     93 LINKFLAGS+=	-X
     94 SYSTEM_LD_TAIL+=; \
     95 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
     96 		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
     97 .else
     98 LINKFLAGS+=	-S
     99 .endif
    100 
    101 %LOAD
    102 
    103 assym.h: genassym
    104 	./genassym >assym.h
    105 
    106 genassym: genassym.o
    107 	${CC} -o $@ genassym.o
    108 
    109 genassym.o: ${SPARC}/sparc/genassym.c
    110 	${HOSTED_C}
    111 
    112 param.c: $S/conf/param.c
    113 	rm -f param.c
    114 	cp $S/conf/param.c .
    115 
    116 param.o: param.c Makefile
    117 	${NORMAL_C}
    118 
    119 ioconf.o: ioconf.c
    120 	${NORMAL_C}
    121 
    122 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    123 	sh $S/conf/newvers.sh
    124 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    125 
    126 
    127 clean:
    128 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    129 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    130 
    131 lint:
    132 	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
    133 	    ${SPARC}/sparc/Locore.c ${CFILES} \
    134 	    ioconf.c param.c | \
    135 	    grep -v 'static function .* unused'
    136 
    137 tags:
    138 	@echo "see $S/kern/Makefile for tags"
    139 
    140 links:
    141 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    142 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    143 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    144 	  sort -u | comm -23 - dontlink | \
    145 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    146 	sh makelinks && rm -f dontlink
    147 
    148 SRCS=	${SPARC}/sparc/locore.s \
    149 	param.c ioconf.c ${CFILES} ${SFILES}
    150 depend: .depend
    151 .depend: ${SRCS} assym.h param.c
    152 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${SPARC}/sparc/locore.s
    153 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    154 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    155 	${MKDEP} -a ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} \
    156 	    ${SPARC}/sparc/genassym.c
    157 
    158 
    159 # depend on root or device configuration
    160 autoconf.o conf.o: Makefile
    161  
    162 # depend on network or filesystem configuration 
    163 uipc_proto.o vfs_conf.o: Makefile 
    164 
    165 # depend on maxusers
    166 genassym.o machdep.o: Makefile
    167 
    168 # depend on CPU configuration 
    169 bwtwo.o cgsix.o cgthree.o cgtwo.o cons.o dma.o esp.o fb.o if_ie.o: Makefile
    170 ms.c obio.o zs.c autoconf.o clock.o cpu.o disksubr.o locore.o: Makefile
    171 machdep.o mem.o openprom.o pmap.o vm_machdep.o: Makefile
    172 
    173 
    174 locore.o: ${SPARC}/sparc/locore.s assym.h
    175 	${NORMAL_S}
    176 
    177 %RULES
    178