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