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