Makefile.sun3 revision 1.51
1#	$NetBSD: Makefile.sun3,v 1.51 1996/09/09 21:07: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/sun3/conf/``machineid''
9# after which you should do
10#	config machineid
11# Machine generic makefile changes should be made in
12#	/sys/arch/sun3/conf/Makefile.sun3
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
28
29# source tree is located via $S relative to the compilation directory
30.ifndef S
31S!=	cd ../../../..; pwd
32.endif
33SUN3=	$S/arch/sun3
34
35# Override CPP defaults entirely, so cross-compilation works.
36INCLUDES=	-I. -I$S/arch -I$S -nostdinc
37XDEFS=		-undef -D__NetBSD__ -Dm68k -Dmc68000
38CPPFLAGS=	${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL \
39		-Dmc68020 -Dsun3 ${XDEFS}
40CWARNFLAGS= 	-Werror # -Wall -Wstrict-prototypes -Wmissing-prototypes
41CFLAGS= 	${DEBUG} ${CWARNFLAGS} -O2 -msoft-float
42AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
43LINKFLAGS=	-N -Ttext 0E004000 -e start
44STRIPFLAGS=	-d
45
46HOSTED_CC=	${CC}
47HOSTED_CPPFLAGS=${CPPFLAGS:S/^-nostdinc$//}
48HOSTED_CFLAGS=	${CFLAGS}
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
72HOSTED_C=	${HOSTED_CC} ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} -c $<
73
74%OBJS
75
76%CFILES
77
78%SFILES
79
80# load lines for config "xxx" will be emitted as:
81# xxx: ${SYSTEM_DEP} swapxxx.o
82#	${SYSTEM_LD_HEAD}
83#	${SYSTEM_LD} swapxxx.o
84#	${SYSTEM_LD_TAIL}
85SYSTEM_OBJ=	locore.o \
86		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
87SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
88SYSTEM_LD_HEAD=	@rm -f $@
89SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
90		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
91SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
92
93DEBUG?=
94.if ${DEBUG} == "-g"
95LINKFLAGS+=	-X
96SYSTEM_LD_TAIL+=; \
97		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
98		echo ${STRIP} ${STRIPFLAGS} $@; ${STRIP} ${STRIPFLAGS} $@
99.else
100LINKFLAGS+=	-S
101.endif
102
103%LOAD
104
105assym.h: genassym
106	./genassym >assym.h
107
108genassym: genassym.o
109	${CC} -o $@ genassym.o
110
111genassym.o: ${SUN3}/sun3/genassym.c
112	${HOSTED_C}
113
114param.c: $S/conf/param.c
115	rm -f param.c
116	cp $S/conf/param.c .
117
118param.o: param.c Makefile
119	${NORMAL_C}
120
121ioconf.o: ioconf.c
122	${NORMAL_C}
123
124newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
125	sh $S/conf/newvers.sh
126	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
127
128
129clean::
130	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
131	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
132
133lint:
134	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} -UKGDB \
135	    ${SUN3}/sun3/Locore.c ${CFILES} ${SUN3}/sun3/swapgeneric.c \
136	    ioconf.c param.c | \
137	    grep -v 'static function .* unused'
138
139tags:
140	@echo "see $S/kern/Makefile for tags"
141
142links:
143	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
144	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
145	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
146	  sort -u | comm -23 - dontlink | \
147	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
148	sh makelinks && rm -f dontlink
149
150SRCS=	${SUN3}/sun3/locore.s \
151	param.c ioconf.c ${CFILES} ${SFILES}
152depend:: .depend
153.depend: ${SRCS} assym.h param.c
154	${MKDEP} ${AFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
155	${MKDEP} -a ${HOSTED_CFLAGS} ${HOSTED_CPPFLAGS} \
156	    ${SUN3}/sun3/genassym.c
157
158# XXX - see below
159#	${MKDEP} -a ${APPFLAGS} ${SUN3}/sun3/locore.s
160#	${MKDEP} -a ${APPFLAGS} ${SFILES}
161#
162# For cross-compilation, the "gcc -M" mkdep script is convenient,
163# but that does not correctly make rules from *.s files.  The
164# easiest compromise is to just list those dependencies here.
165locore.o: assym.h machine/trap.h m68k/trap.h
166copy.o:   assym.h $S/sys/errno.h
167
168
169# depend on root or device configuration
170autoconf.o conf.o: Makefile
171 
172# depend on network or filesystem configuration 
173uipc_proto.o vfs_conf.o: Makefile 
174
175# depend on maxusers
176genassym.o machdep.o: Makefile
177
178# depend on CPU configuration 
179db_machdep.o dvma.o machdep.o pmap.o sun3_startup.o vm_machdep.o: Makefile
180
181
182locore.o: ${SUN3}/sun3/locore.s assym.h
183	${NORMAL_S}
184
185%RULES
186