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