Home | History | Annotate | Line # | Download | only in conf
Makefile.sparc revision 1.34
      1 # 	$NetBSD: Makefile.sparc,v 1.34 1996/08/10 06:09:54 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} -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}${CONFIG_DEP}
     58 # where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix,
     59 # capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file
     60 # is marked as config-dependent.
     61 
     62 NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     63 NORMAL_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     64 
     65 DRIVER_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
     66 DRIVER_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
     67 
     68 NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
     69 NORMAL_S_C=	${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $<
     70 
     71 HOSTED_C_C=	${NORMAL_C_C:S/^-pg$//:S/^-p$//:S/^-nostdinc$//}
     72 
     73 %OBJS
     74 
     75 %CFILES
     76 
     77 %SFILES
     78 
     79 # load lines for config "xxx" will be emitted as:
     80 # xxx: ${SYSTEM_DEP} swapxxx.o
     81 #	${SYSTEM_LD_HEAD}
     82 #	${SYSTEM_LD} swapxxx.o
     83 #	${SYSTEM_LD_TAIL}
     84 SYSTEM_OBJ=	locore.o \
     85 		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
     86 SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
     87 SYSTEM_LD_HEAD=	@rm -f $@
     88 SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
     89 		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
     90 SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
     91 
     92 DEBUG?=
     93 .if ${DEBUG} == "-g"
     94 LINKFLAGS+=	-X
     95 SYSTEM_LD_TAIL+=; \
     96 		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
     97 		echo ${STRIP} $@; ${STRIP} $@
     98 .else
     99 LINKFLAGS+=	-S
    100 .endif
    101 
    102 %LOAD
    103 
    104 assym.h: genassym
    105 	./genassym >assym.h
    106 
    107 genassym: genassym.o
    108 	${CC} -o $@ genassym.o
    109 
    110 genassym.o: ${SPARC}/sparc/genassym.c
    111 	${HOSTED_C_C}
    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_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 
    128 clean::
    129 	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
    130 	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
    131 
    132 lint:
    133 	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \
    134 	    ${SPARC}/sparc/Locore.c ${CFILES} ${SPARC}/sparc/swapgeneric.c \
    135 	    ioconf.c param.c | \
    136 	    grep -v 'static function .* unused'
    137 
    138 tags:
    139 	@echo "see $S/kern/Makefile for tags"
    140 
    141 links:
    142 	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
    143 	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
    144 	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
    145 	  sort -u | comm -23 - dontlink | \
    146 	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
    147 	sh makelinks && rm -f dontlink
    148 
    149 SRCS=	${SPARC}/sparc/locore.s \
    150 	param.c ioconf.c ${CFILES} ${SFILES}
    151 depend:: .depend
    152 .depend: ${SRCS} assym.h param.c
    153 	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${SPARC}/sparc/locore.s
    154 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
    155 	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
    156 	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${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 
    179