Makefile.i386 revision 1.41
1# Copyright 1990 W. Jolitz
2# 	from: @(#)Makefile.i386	7.1 5/10/91
3#	$Id: Makefile.i386,v 1.41 1994/04/16 08:38:08 cgd Exp $
4#
5# Makefile for NetBSD
6#
7# This makefile is constructed from a machine description:
8#	config machineid
9# Most changes should be made in the machine description
10#	/sys/arch/i386/conf/``machineid''
11# after which you should do
12#	 config machineid
13# Generic makefile changes should be made in
14#	/sys/arch/i386/conf/Makefile.i386
15# after which config should be rerun for all machines.
16#
17# N.B.: NO DEPENDENCIES ON FOLLOWING FLAGS ARE INVISIBLE TO MAKEFILE
18#	IF YOU CHANGE THE DEFINITION OF ANY OF THESE RECOMPILE EVERYTHING
19#
20# -DTRACE	compile in kernel tracing hooks
21# -DQUOTA	compile in file system quotas
22#
23TOUCH=	touch -f -c
24LD=	/usr/bin/ld
25CC=	cc 
26CPP=	cpp
27STRIP=	strip
28
29S=	../../../..
30I386=	../..
31
32INCLUDES= -I. -I$S/arch -I$S -I$S/sys
33COPTS=	${INCLUDES} ${IDENT} -DKERNEL -Di386
34ASFLAGS=
35CFLAGS=	-O ${DEBUG} ${COPTS}
36LOAD_ADDRESS= F8100000
37
38### find out what to use for libkern
39.include "$S/lib/libkern/Makefile.inc"
40.ifndef PROF
41LIBKERN=	${KERNLIB}
42.else
43LIBKERN=	${KERNLIB_PROF}
44.endif
45
46NORMAL_C= ${CC} -c ${CFLAGS} ${PROF} $<
47NORMAL_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
48NORMAL_S= ${CPP} -I. -DLOCORE ${COPTS} $< | ${AS} ${ASFLAGS} -o $*.o
49DRIVER_C= ${CC} -c ${CFLAGS} ${PROF} $<
50DRIVER_C_C= ${CC} -c ${CFLAGS} ${PROF} ${PARAM} $<
51SYSTEM_OBJS=locore.o ${OBJS} param.o ioconf.o conf.o ${LIBKERN}
52SYSTEM_DEP=Makefile ${SYSTEM_OBJS}
53SYSTEM_LD_HEAD= 	@echo loading $@; rm -f $@
54SYSTEM_LD= @${LD} -z -e start -T ${LOAD_ADDRESS} -o $@ -X vers.o ${SYSTEM_OBJS}
55SYSTEM_LD_TAIL=	@size $@; chmod 755 $@; \
56		[ X${DEBUG} = X-g ] && { \
57		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
58		echo strip -d $@; strip -d $@; } || true
59
60GPROF.EX=	/usr/src/lib/csu/i386/gprof.ex
61PROFILE_C=	${CC} -S -c ${CFLAGS} $< ; \
62		ex - $*.s < ${GPROF.EX} ; \
63		${AS} -o $@ $*.s ; \
64		rm -f $*.s
65
66%OBJS
67
68%CFILES
69
70%LOAD
71
72clean:
73	rm -f eddep *netbsd tags *.o locore.i [a-uw-z]*.s \
74		errs linterrs makelinks genassym
75
76lint: /tmp param.c
77	@lint -hbxn -I. -DGENERIC -Dvolatile= ${COPTS} ${PARAM} \
78	  ${I386}/i386/Locore.c ${CFILES} ioconf.c param.c | \
79	    grep -v 'struct/union .* never defined' | \
80	    grep -v 'possible pointer alignment problem'
81
82locore.o: assym.s ${I386}/i386/locore.s machine/trap.h machine/psl.h \
83	machine/pte.h ${I386}/isa/vector.s ${I386}/isa/icu.s \
84	$S/sys/errno.h machine/specialreg.h ${I386}/isa/debug.h \
85	${I386}/isa/icu.h ${I386}/isa/isa.h vector.h $S/net/netisr.h
86	${CPP} -I. -DLOCORE ${COPTS} ${I386}/i386/locore.s | \
87		${AS} ${ASFLAGS} -o locore.o
88
89machdep.o: ${I386}/i386/machdep.c Makefile
90	${CC} -c ${CFLAGS} -DLOAD_ADDRESS=0x${LOAD_ADDRESS} ${PROF} $<
91
92# the following is necessary because autoconf.o depends on #if GENERIC
93autoconf.o: Makefile
94
95# depend on network configuration
96af.o uipc_proto.o locore.o: Makefile
97
98# depend on maxusers
99assym.s: Makefile
100
101# depends on KDB (cons.o also depends on GENERIC)
102trap.o cons.o: Makefile
103
104assym.s: $S/sys/param.h machine/pte.h $S/sys/buf.h \
105    $S/sys/vmmeter.h \
106    $S/sys/proc.h $S/sys/msgbuf.h machine/vmparam.h
107
108assym.s: genassym
109	./genassym >assym.s
110
111genassym: ${I386}/i386/genassym.c
112	${CC} -static ${INCLUDES} -DKERNEL ${IDENT} ${PARAM} \
113		 ${I386}/i386/genassym.c -o genassym
114
115depend: assym.s param.c
116	sh /usr/bin/mkdep -DLOAD_ADDRESS=0x${LOAD_ADDRESS} ${COPTS} ${CFILES} ioconf.c param.c ${I386}/i386/conf.c
117	sh /usr/bin/mkdep -a -p ${INCLUDES} ${IDENT} ${PARAM} ${I386}/i386/genassym.c
118
119links:
120	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
121	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
122	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
123	  sort -u | comm -23 - dontlink | \
124	  sed 's,../.*/\(.*.o\),rm -f \1;ln -s ../GENERIC/\1 \1,' > makelinks
125	sh makelinks && rm -f dontlink
126
127tags:
128	@echo "see $S/kern/Makefile for tags"
129
130ioconf.o: ioconf.c $S/sys/param.h machine/pte.h $S/sys/buf.h \
131    ${I386}/isa/isa_device.h ${I386}/isa/isa.h ${I386}/isa/icu.h
132	${CC} -c ${CFLAGS} ioconf.c
133
134conf.o: ${I386}/i386/conf.c
135	${CC} -traditional -c ${CFLAGS} ${I386}/i386/conf.c
136
137param.c: $S/conf/param.c
138	-rm -f param.c
139	cp $S/conf/param.c .
140
141param.o: param.c Makefile
142	${CC} -c ${CFLAGS} ${PARAM} param.c
143
144vers.o: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
145	sh $S/conf/newvers.sh
146	${CC} ${CFLAGS} -c vers.c
147
148%RULES
149
150# DO NOT DELETE THIS LINE -- make depend uses it
151
152