Makefile.alpha revision 1.18
1#	$NetBSD: Makefile.alpha,v 1.18 1996/07/14 20:20:10 cgd 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
24AS?=	as
25CC?=	cc
26CPP?=	cpp
27LD?=	ld
28STRIP?=	strip -g -X -x
29TOUCH?=	touch -f -c
30
31# source tree is located via $S relative to the compilation directory
32S=	../../../..
33ALPHA=	../..
34
35INCLUDES=	-I. -I$S/arch -I$S
36CPPFLAGS=	${INCLUDES} ${IDENT} -D_KERNEL -Dalpha
37CWARNFLAGS?=	-Werror -Wall -Wstrict-prototypes -Wmissing-prototypes
38CFLAGS=		${DEBUG} -O2 -mno-fp-regs ${CWARNFLAGS}
39AFLAGS=		-x assembler-with-cpp -traditional-cpp -D_LOCORE
40LINKFLAGS=	-N -Ttext fffffc0000230000 -e __start -G 4
41
42### find out what to use for libkern
43.include "$S/lib/libkern/Makefile.inc"
44.ifndef PROF
45LIBKERN=	${KERNLIB}
46.else
47LIBKERN=	${KERNLIB_PROF}
48.endif
49
50### find out what to use for libcompat
51.include "$S/compat/common/Makefile.inc"
52.ifndef PROF
53LIBCOMPAT=	${COMPATLIB}
54.else
55LIBCOMPAT=	${COMPATLIB_PROF}
56.endif
57
58# compile rules: rules are named ${TYPE}_${SUFFIX}${CONFIG_DEP}
59# where TYPE is NORMAL, DRIVER, or PROFILE}; SUFFIX is the file suffix,
60# capitalized (e.g. C for a .c file), and CONFIG_DEP is _C if the file
61# is marked as config-dependent.
62
63NORMAL_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
64NORMAL_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
65
66DRIVER_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c $<
67DRIVER_C_C=	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} ${PARAM} -c $<
68
69NORMAL_S=	${CC} ${AFLAGS} ${CPPFLAGS} -c $<
70NORMAL_S_C=	${CC} ${AFLAGS} ${CPPFLAGS} ${PARAM} -c $<
71
72%OBJS
73
74%CFILES
75
76%SFILES
77
78# load lines for config "xxx" will be emitted as:
79# xxx: ${SYSTEM_DEP} swapxxx.o
80#	${SYSTEM_LD_HEAD}
81#	${SYSTEM_LD} swapxxx.o
82#	${SYSTEM_LD_TAIL}
83SYSTEM_OBJ=	locore.o \
84		param.o ioconf.o ${OBJS} ${LIBKERN} ${LIBCOMPAT}
85SYSTEM_DEP=	Makefile ${SYSTEM_OBJ}
86SYSTEM_LD_HEAD=	@rm -f $@
87SYSTEM_LD=	@echo ${LD} ${LINKFLAGS} -o $@ '$${SYSTEM_OBJ}' vers.o; \
88		${LD} ${LINKFLAGS} -o $@ ${SYSTEM_OBJ} vers.o
89SYSTEM_LD_TAIL=	@size $@; chmod 755 $@
90
91DEBUG?=
92.if ${DEBUG} == "-g"
93LINKFLAGS+=	-X
94SYSTEM_LD_TAIL+=; \
95		echo cp $@ $@.gdb; rm -f $@.gdb; cp $@ $@.gdb; \
96		echo ${STRIP} $@; ${STRIP} $@
97.else
98LINKFLAGS+=	-x
99.endif
100
101%LOAD
102
103assym.h: genassym
104	./genassym >assym.h
105
106genassym: genassym.o
107	${CC} -o $@ genassym.o
108
109genassym.o: ${ALPHA}/alpha/genassym.c
110	${NORMAL_C_C}
111
112param.c: $S/conf/param.c
113	rm -f param.c
114	cp $S/conf/param.c .
115
116param.o: param.c Makefile
117	${NORMAL_C_C}
118
119ioconf.o: ioconf.c
120	${NORMAL_C}
121
122newvers: ${SYSTEM_DEP} ${SYSTEM_SWAP_DEP}
123	sh $S/conf/newvers.sh
124	${CC} ${CFLAGS} ${CPPFLAGS} ${PROF} -c vers.c
125
126
127clean::
128	rm -f eddep *netbsd netbsd.gdb tags *.[io] [a-z]*.s \
129	    [Ee]rrs linterrs makelinks genassym genassym.o assym.h
130
131lint:
132	@lint -hbxncez -DGENERIC -Dvolatile= ${CPPFLAGS} ${PARAM} -UKGDB \
133	    ${ALPHA}/alpha/Locore.c ${CFILES} ${ALPHA}/alpha/swapgeneric.c \
134	    ioconf.c param.c | \
135	    grep -v 'static function .* unused'
136
137tags:
138	@echo "see $S/kern/Makefile for tags"
139
140links:
141	egrep '#if' ${CFILES} | sed -f $S/conf/defines | \
142	  sed -e 's/:.*//' -e 's/\.c/.o/' | sort -u > dontlink
143	echo ${CFILES} | tr -s ' ' '\12' | sed 's/\.c/.o/' | \
144	  sort -u | comm -23 - dontlink | \
145	  sed 's,../.*/\(.*.o\),rm -f \1; ln -s ../GENERIC/\1 \1,' > makelinks
146	sh makelinks && rm -f dontlink
147
148SRCS=	${ALPHA}/alpha/locore.s \
149	param.c ioconf.c ${CFILES} ${SFILES}
150depend:: .depend
151.depend: ${SRCS} assym.h param.c
152	mkdep ${AFLAGS} ${CPPFLAGS} ${ALPHA}/alpha/locore.s
153	mkdep -a ${CFLAGS} ${CPPFLAGS} param.c ioconf.c ${CFILES}
154	mkdep -a ${AFLAGS} ${CPPFLAGS} ${SFILES}
155	mkdep -a ${CFLAGS} ${CPPFLAGS} ${PARAM} ${ALPHA}/alpha/genassym.c
156
157
158# depend on root or device configuration
159autoconf.o conf.o: Makefile
160 
161# depend on network or filesystem configuration 
162uipc_proto.o vfs_conf.o: Makefile 
163
164# depend on maxusers
165genassym.o machdep.o: Makefile
166
167# depend on CPU configuration 
168clock.o machdep.o apecs.o cia.o lca.o ioasic.o scc.o icasic.o: Makefile
169
170
171locore.o: ${ALPHA}/alpha/locore.s assym.h
172	${NORMAL_S}
173
174%RULES
175
176### add microcode dependencies
177.include "$S/dev/microcode/Makefile.inc"
178