Makefile.next68k revision 1.20
1# $NetBSD: Makefile.next68k,v 1.20 2001/10/23 19:26:46 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/next68k/conf/``machineid''
9# after which you should do
10#	config machineid
11# Machine generic makefile changes should be made in
12#	/sys/arch/next68k/conf/Makefile.next68k
13# after which config should be rerun for all machines of that type.
14
15MACHINE_ARCH=m68k
16
17# DEBUG is set to -g if debugging.
18# PROF is set to -pg if profiling.
19
20AR?=	ar
21AS?=	as
22CC?=	cc
23CPP?=	cpp
24LD?=	ld
25LORDER?=lorder
26MKDEP?=	mkdep
27NM?=	nm
28RANLIB?=ranlib
29SIZE?=	size
30STRIP?=	strip
31TSORT?=	tsort -q
32
33COPTS?=	-O2
34
35# source tree is located via $S relative to the compilation directory
36.ifndef S
37S!=	cd ../../../..; pwd
38.endif
39NEXT68K=	$S/arch/next68k
40
41HAVE_EGCS!=	${CC} --version | egrep "^(2\.[89]|egcs)" ; echo 
42INCLUDES=	-I. -I$S/arch -I$S -nostdinc
43CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D_KERNEL_OPT -Dnext68k
44CWARNFLAGS=	-Wall -Werror -Wstrict-prototypes -Wmissing-prototypes \
45		-Wpointer-arith
46# XXX Delete -Wuninitialized for now, since the compiler doesn't
47# XXX always get it right.  --thorpej 
48CWARNFLAGS+=	-Wno-uninitialized
49.if (${HAVE_EGCS} != "")
50CWARNFLAGS+=	-Wno-main
51.endif
52CFLAGS=		${DEBUG} ${COPTS} ${CWARNFLAGS} -msoft-float
53AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
54LINKFLAGS=	-n -Ttext 0 -e start
55STRIPFLAGS=	-g
56
57%INCLUDES
58
59HOSTED_CC=	${CC}
60HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
61HOSTED_CFLAGS=	${CFLAGS}
62
63### find out what to use for libkern
64KERN_AS=	obj
65.include "$S/lib/libkern/Makefile.inc"
66.ifndef PROF
67LIBKERN=	${KERNLIB}
68.else
69LIBKERN=	${KERNLIB_PROF}
70.endif
71
72### Find out what to use for libcompat.
73.include "$S/compat/common/Makefile.inc"
74.ifndef PROF
75LIBCOMPAT=	${COMPATLIB}
76.else
77LIBCOMPAT=	${COMPATLIB_PROF}
78.endif
79
80### for the Motorola 68040 Floating Point Software Product
81.include "$S/arch/m68k/fpsp/Makefile.inc"
82
83# compile rules: rules are named ${TYPE}_${SUFFIX} where TYPE is NORMAL or
84# HOSTED}, and SUFFIX is the file suffix, capitalized (e.g. C for a .c file).
85
86NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
87NOPROF_C=	${CC} ${CFLAGS} ${CPPFLAGS} -c $<
88NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
89
90HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
91
92%OBJS
93
94%CFILES
95
96%SFILES
97
98# load lines for config "xxx" will be emitted as:
99# xxx: ${SYSTEM_DEP} swapxxx.o
100#	${SYSTEM_LD_HEAD}
101#	${SYSTEM_LD} swapxxx.o
102#	${SYSTEM_LD_TAIL}
103SYSTEM_OBJ=	locore.o ${FPSP} \
104		param.o ioconf.o ${OBJS} ${LIBCOMPAT} ${LIBKERN}
105SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
106SYSTEM_LD_HEAD=	@rm -f $@
107SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
108		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
109SYSTEM_LD_TAIL=	@${SIZE} $@; chmod 755 $@
110
111DEBUG?=
112.if ${DEBUG} == "-g"
113LINKFLAGS+=	-X
114SYSTEM_LD_TAIL+=; \
115		echo mv -f $@ $@.gdb; mv -f $@ $@.gdb; \
116		echo ${STRIP} ${STRIPFLAGS} -o $@ $@.gdb; \
117		${STRIP} ${STRIPFLAGS} -o $@ $@.gdb
118.else
119LINKFLAGS+=	-S
120.endif
121
122%LOAD
123
124assym.h: $S/kern/genassym.sh ${NEXT68K}/next68k/genassym.cf
125	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
126	    < ${NEXT68K}/next68k/genassym.cf > assym.h.tmp && \
127	mv -f assym.h.tmp assym.h
128
129param.c: $S/conf/param.c
130	rm -f param.c
131	cp $S/conf/param.c .
132
133param.o: param.c Makefile
134	${NORMAL_C}
135
136ioconf.o: ioconf.c
137	${NORMAL_C}
138
139newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
140	sh $S/conf/newvers.sh
141	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
142
143__CLEANKERNEL: .USE
144	@echo "${.TARGET}ing the kernel objects"
145	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
146	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
147
148__CLEANDEPEND: .USE
149	rm -f .depend
150
151clean: __CLEANKERNEL
152
153cleandir distclean: __CLEANKERNEL __CLEANDEPEND
154
155lint:
156	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
157	    ${CFILES} ioconf.c param.c | \
158	    grep -v 'static function .* unused'
159
160tags:
161	@echo "see $S/kern/Makefile for tags"
162
163links:
164	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
165	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
166	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
167	  sort -u | comm -23 - dontlink | \
168	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
169	sh makelinks && rm -f dontlink
170
171SRCS=	${NEXT68K}/next68k/locore.s \
172	param.c ioconf.c ${CFILES} ${SFILES}
173depend: .depend
174.depend: ${SRCS} assym.h param.c
175	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${NEXT68K}/next68k/locore.s
176	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
177	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
178	sh $S/kern/genassym.sh ${MKDEP} -f assym.dep ${CFLAGS} \
179	  ${CPPFLAGS} < ${NEXT68K}/next68k/genassym.cf
180	@sed -e 's/.*\.o:.*\.c/assym.h:/' < assym.dep >> .depend
181	@rm -f assym.dep
182
183dependall: depend all
184
185
186# depend on root or device configuration
187autoconf.o conf.o: Makefile
188 
189# depend on network or filesystem configuration 
190uipc_proto.o vfs_conf.o: Makefile 
191
192# depend on maxusers
193genassym.o machdep.o: Makefile
194
195# depend on CPU configuration 
196locore.o pmap.o trap.o: Makefile
197
198
199locore.o: ${NEXT68K}/next68k/locore.s assym.h
200	${NORMAL_S}
201
202# The install target can be redefined by putting a
203# install-kernel-${MACHINE_NAME} target into /etc/mk.conf
204MACHINE_NAME!=  uname -n
205install: install-kernel-${MACHINE_NAME}
206.if !target(install-kernel-${MACHINE_NAME}})
207install-kernel-${MACHINE_NAME}:
208	rm -f /onetbsd
209	ln /netbsd /onetbsd
210	cp netbsd /nnetbsd
211	mv /nnetbsd /netbsd
212.endif
213
214%RULES
215