Home | History | Annotate | Line # | Download | only in conf
Makefile.sparc revision 1.35
      1 # 	$NetBSD: Makefile.sparc,v 1.35 1996/08/12 00:52:05 mycroft 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 -d
     28 TOUCH?=	touch -f -c
     29 
     30 # source tree is located via $S relative to the compilation directory
     31 S!=	cd ../../../..; pwd
     32 SPARC=	$S/arch/sparc
     33 
     34 INCLUDES=	-I. -I$S/arch -I$S -nostdinc
     35 CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL
     36 CWARNFLAGS=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
     37 CFLAGS=		${DEBUG} ${CWARNFLAGS} -O2 
     38 AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
     39 LINKFLAGS=	-N -p -Ttext F8004000 -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 # compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
     58 # HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
     59 
     60 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     61 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     62 
     63 HOSTED_C=	${NORMAL_C:S/^-pg$//:S/^-p$//:S/^-nostdinc$//}
     64 
     65 %OBJS
     66 
     67 %CFILES
     68 
     69 %SFILES
     70 
     71 # load lines for config "xxx" will be emitted as:
     72 # xxx: ${SYSTEM_DEP} swapxxx.o
     73 #	${SYSTEM_LD_HEAD}
     74 #	${SYSTEM_LD} swapxxx.o
     75 #	${SYSTEM_LD_TAIL}
     76 SYSTEM_OBJ=	locore.o \
     77 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     78 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     79 SYSTEM_LD_HEAD=	@rm -f $@
     80 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     81 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     82 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
     83 
     84 DEBUG?=
     85 .if ${DEBUG} == "-g"
     86 LINKFLAGS+=	-X
     87 SYSTEM_LD_TAIL+=; \
     88 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
     89 		echo ${STRIP} $@; ${STRIP} $@
     90 .else
     91 LINKFLAGS+=	-S
     92 .endif
     93 
     94 %LOAD
     95 
     96 assym.h: genassym
     97 	./genassym >assym.h
     98 
     99 genassym: genassym.o
    100 	${CC} -o $@ genassym.o
    101 
    102 genassym.o: ${SPARC}/sparc/genassym.c
    103 	${HOSTED_C}
    104 
    105 param.c: $S/conf/param.c
    106 	rm -f param.c
    107 	cp $S/conf/param.c .
    108 
    109 param.o: param.c Makefile
    110 	${NORMAL_C}
    111 
    112 ioconf.o: ioconf.c
    113 	${NORMAL_C}
    114 
    115 newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
    116 	sh $S/conf/newvers.sh
    117 	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
    118 
    119 
    120 clean::
    121 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    122 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    123 
    124 lint:
    125 	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \
    126 	    ${SPARC}/sparc/Locore.c ${CFILES} ${SPARC}/sparc/swapgeneric.c \
    127 	    ioconf.c param.c | \
    128 	    grep -v 'static function .* unused'
    129 
    130 tags:
    131 	@echo "see $S/kern/Makefile for tags"
    132 
    133 links:
    134 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    135 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    136 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    137 	  sort -u | comm -23 - dontlink | \
    138 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    139 	sh makelinks && rm -f dontlink
    140 
    141 SRCS=	${SPARC}/sparc/locore.s \
    142 	param.c ioconf.c ${CFILES} ${SFILES}
    143 depend:: .depend
    144 .depend: ${SRCS} assym.h param.c
    145 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${SPARC}/sparc/locore.s
    146 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    147 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    148 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${SPARC}/sparc/genassym.c
    149 
    150 
    151 # depend on root or device configuration
    152 autoconf.o conf.o: Makefile
    153  
    154 # depend on network or filesystem configuration 
    155 uipc_proto.o vfs_conf.o: Makefile 
    156 
    157 # depend on maxusers
    158 genassym.o machdep.o: Makefile
    159 
    160 # depend on CPU configuration 
    161 bwtwo.o cgsix.o cgthree.o cgtwo.o cons.o dma.o esp.o fb.o if_ie.o: Makefile
    162 ms.c obio.o zs.c autoconf.o clock.o cpu.o disksubr.o locore.o: Makefile
    163 machdep.o mem.o openprom.o pmap.o vm_machdep.o: Makefile
    164 
    165 
    166 locore.o: ${SPARC}/sparc/locore.s assym.h
    167 	${NORMAL_S}
    168 
    169 %RULES
    170