Makefile.i386 revision 1.82
1#	$NetBSD: Makefile.i386,v 1.82 1997/03/14 23:16:08 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: $S/kern/genassym.sh ${I386}/i386/genassym.cf
99	sh $S/kern/genassym.sh ${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} \
100	    < ${I386}/i386/genassym.cf > assym.h.tmp && \
101	mv -f assym.h.tmp assym.h
102
103param.c: $S/conf/param.c
104	rm -f param.c
105	cp $S/conf/param.c .
106
107param.o: param.c Makefile
108	${NORMAL_C}
109
110ioconf.o: ioconf.c
111	${NORMAL_C}
112
113newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
114	sh $S/conf/newvers.sh
115	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
116
117
118clean: cleankernel
119cleankernel:
120	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
121	    [Ee]rrs linterrs makelinks assym.h.tmp assym.h
122
123lint:
124	@lint -hbxncez -Dvolatile= ${CPPFLAGS} -UKGDB \
125	    ${I386}/i386/Locore.c ${CFILES} \
126	    ioconf.c param.c | \
127	    grep -v 'static function .* unused'
128
129tags:
130	@echo "see $S/kern/Makefile for tags"
131
132links:
133	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
134	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
135	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
136	  sort -u | comm -23 - dontlink | \
137	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
138	sh makelinks && rm -f dontlink
139
140SRCS=	${I386}/i386/locore.s \
141	param.c ioconf.c ${CFILES} ${SFILES}
142depend: .depend
143.depend: ${SRCS} assym.h param.c
144	${MKDEP} ${AFLAGS} ${CPPFLAGS} ${I386}/i386/locore.s
145	${MKDEP} -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
146	${MKDEP} -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
147
148
149# depend on root or device configuration
150autoconf.o conf.o: Makefile
151 
152# depend on network or filesystem configuration 
153uipc_proto.o vfs_conf.o: Makefile 
154
155# depend on maxusers
156machdep.o: Makefile
157
158# depend on CPU configuration 
159locore.o machdep.o: Makefile
160
161
162locore.o: ${I386}/i386/locore.s assym.h
163	${NORMAL_S}
164
165%RULES
166