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