Makefile revision 1.173
1#	$NetBSD: Makefile,v 1.173 2001/01/09 02:13:54 simonb Exp $
2#	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
3
4# Environment variables without default values:
5#   DESTDIR must be set before anything in this file will work.
6#   RELEASEDIR is where the tarred up stuff for a snapshot or
7#	release will be placed.
8#
9# Environment variables with default values:
10#   LOCALTIME will set the default local time for the system you
11#	build; it determines what /etc/localtime is symlink'd to.
12#   KERNSRCDIR points to kernel source; it is set by default to ../sys,
13#	but can be overridden.
14#   KERNOBJDIR is the kernel build directory, it defaults to
15#	${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden.
16#   KERNCONFDIR is where the configuration files for kernels are found;
17#	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
18#   UPDATE is normally undefined; if defined, don't do a 'make clean'
19#	before kernel compile
20#   NO_SENDMAIL is normally undefined; if defined, it will not do a
21#	`make distribution' in the sendmail config file source directory.
22#   EXTRA_KERNELS has a machine-dependent list of kernels to build added
23#	to it, but you may also set this to have extra ones built.
24#   BUILD_KERNELS are a machine-dependent list of kernels that should just
25#	be built in place but not made into sets or installed, e.g., an
26#	INSTALL kernel used later in src/distrib/.
27#
28# Targets:
29#    distribution: makes a full NetBSD distribution in DESTDIR. If
30#	INSTALL_DONE is set, it will not do a `make install.'
31#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
32#	Called by distribution.
33#    snapshot: calls distribution, above, and then tars up the files
34#	into a release(7) format in RELEASEDIR. Any port-dependent
35#	stuff for this target is found in etc.${MACHINE}/Makefile.inc.
36#    release: a synonym for `snapshot'
37
38# do this before bsd.own.mk so we get correct KERNSRCDIR
39.include "../Makefile.inc"
40
41# For NO_SENDMAIL, INSTPRIV, MKCRYPTO
42.include <bsd.own.mk>
43
44TZDIR=		/usr/share/zoneinfo
45LOCALTIME?=	UTC
46
47# Flags for creating ISO CDROM image
48# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrecord
49MKISOFS?=	mkisofs
50MKISOFS_FLAGS+= -J -l \
51		-r -T -v \
52		-P "The NetBSD Project" \
53		-m "${RELEASEDIR}/installation/cdrom"
54
55# setting NOOBJ prevents "make obj" from doing anything;
56# an objdir would break the installation stuff below
57MKOBJ=	no
58
59# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
60# are empty, to preserve the old semantics of setting them below with "=".
61BIN1=	
62BIN2=
63BIN3=
64
65# Directories to build in ${RELEASEDIR}.   MD Makefile.inc files can
66# add to this.
67# NOTE: Parent directories must be listed before subdirectories.
68INSTALLATION_DIRS= \
69	binary binary/sets binary/kernel installation
70
71.if exists(etc.${MACHINE}/Makefile.inc)
72.include "etc.${MACHINE}/Makefile.inc"
73.endif
74
75# Use multiple jobs for kernel builds, if NBUILDJOBS set.
76# (Taken from src/Makefile.)
77.if defined(NBUILDJOBS)
78_J= -j${NBUILDJOBS}
79.endif
80
81# -rw-r--r--
82BINOWN= root
83BINGRP= wheel
84BIN1+=	bootptab changelist csh.cshrc csh.login csh.logout daily \
85	daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \
86	gettytab group hosts hosts.lpd inetd.conf lkm.conf \
87	mailer.conf man.conf monthly monthly.conf mrouted.conf \
88	netconfig networks newsyslog.conf nsswitch.conf ntp.conf \
89	phones printcap profile protocols rbootd.conf rc rc.conf \
90	rc.lkm rc.local rc.subr rc.shutdown remote rpc \
91	security security.conf services shells sysctl.conf syslog.conf \
92	weekly weekly.conf wscons.conf \
93	etc.${MACHINE}/ttys etc.${MACHINE}/disktab
94
95.if	(${MACHINE_ARCH} == "m68k") || \
96	(${MACHINE_ARCH} == "ns32k") || \
97	(${MACHINE_ARCH} == "vax") || \
98	(${MACHINE_ARCH} == "arm32")
99BIN1+=	ld.so.conf
100.elif exists(etc.${MACHINE_ARCH}/ld.so.conf)
101BIN1+=	etc.${MACHINE_ARCH}/ld.so.conf
102.endif
103
104.if exists(etc.${MACHINE_ARCH}/ttyaction)
105BIN1+=	etc.${MACHINE_ARCH}/ttyaction
106.endif
107
108# IPv6
109BIN1+=	rtadvd.conf
110
111# -rw-rw-r--
112BIN2+=	motd
113
114# -rw-------
115BIN3+=	hosts.equiv
116
117NAMEDB=	127 root.cache named.conf localhost loopback.v6
118PCS=	pcs750.bin
119
120# find out endianness of target and set proper flag for pwd_mkdb so that
121# it creates database in same endianness
122.if exists(${DESTDIR}/usr/include/machine/endian_machdep.h)
123TARGET_ENDIANNESS!= \
124	( echo "\#include <machine/endian_machdep.h>" ; echo _BYTE_ORDER ) | \
125	${CC} -I${DESTDIR}/usr/include -E - | tail -1 | awk '{print $$1}'
126.else
127TARGET_ENDIANNESS=
128.endif
129
130.if ${TARGET_ENDIANNESS} == "_LITTLE_ENDIAN"
131TARGET_ENDIANNESS= -L
132.elif ${TARGET_ENDIANNESS} == "_BIG_ENDIAN"
133TARGET_ENDIANNESS= -B
134.else
135TARGET_ENDIANNESS=
136.endif
137
138all clean cleandir depend distclean etc includes install lint:
139
140
141.include <bsd.kernobj.mk>
142
143obj:
144	mkdir -p ${KERNOBJDIR}
145
146.ifndef DESTDIR
147distribution distrib-dirs release snapshot snap_pre snap_md_pre \
148snap_md_post iso-image:
149	@echo setenv DESTDIR before doing that!
150	@false
151.else
152distribution: distrib-dirs
153.if !defined(INSTALL_DONE)
154	(cd ..; ${MAKE} _DISTRIB= includes)
155	(cd ..; ${MAKE} _DISTRIB= install)
156.endif
157	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} \
158	    ${DESTDIR}/etc
159	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} \
160	    ${DESTDIR}/etc
161	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} \
162	    ${DESTDIR}/etc
163	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 aliases \
164	    ${DESTDIR}/etc/mail
165	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 crontab \
166	    ${DESTDIR}/var/cron/tabs/root
167	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 master.passwd \
168	    ${DESTDIR}/etc
169	pwd_mkdb -p ${TARGET_ENDIANNESS} -d ${DESTDIR}/ \
170		${DESTDIR}/etc/master.passwd
171	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
172	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
173	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 minfree \
174	    ${DESTDIR}/var/crash
175	(cd root; \
176		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.cshrc \
177		    ${DESTDIR}/root/.cshrc; \
178		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 dot.klogin \
179		    ${DESTDIR}/root/.klogin; \
180		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.login \
181		    ${DESTDIR}/root/.login; \
182		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.profile \
183		    ${DESTDIR}/root/.profile; \
184		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.shrc \
185		    ${DESTDIR}/root/.shrc; \
186		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
187		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
188		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
189	(cd defaults; ${MAKE} install)
190	(cd mtree; ${MAKE} install)
191	(cd namedb; \
192		${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
193		    ${NAMEDB} ${DESTDIR}/etc/namedb)
194	(cd rc.d; ${MAKE} install)
195	/bin/rm -f ${DESTDIR}/etc/localtime
196	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
197	/bin/rm -f ${DESTDIR}/etc/rmt
198	ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
199	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 664 /dev/null \
200		${DESTDIR}/etc/dumpdates
201	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 600 /dev/null \
202		${DESTDIR}/etc/skeykeys
203	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \
204		${DESTDIR}/var/at/at.deny
205	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \
206		${DESTDIR}/var/cron/log
207	${INSTALL} ${INSTPRIV} -c -o nobody -g ${BINGRP} -m 664 /dev/null \
208		${DESTDIR}/var/db/locate.database
209	${INSTALL} ${INSTPRIV} -c -o uucp -g dialer -m 640 /dev/null \
210		${DESTDIR}/var/log/aculog
211	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
212		${DESTDIR}/var/log/authlog
213	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
214		${DESTDIR}/var/log/lastlog
215	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
216		${DESTDIR}/var/log/lpd-errs
217	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
218		${DESTDIR}/var/log/maillog
219	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
220		${DESTDIR}/var/log/messages
221	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
222		${DESTDIR}/var/log/secure
223	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
224		${DESTDIR}/var/log/sendmail.st
225	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
226		${DESTDIR}/var/log/wtmp
227	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
228		${DESTDIR}/var/log/xferlog
229	${INSTALL} ${INSTPRIV} -c -o daemon -g staff -m 664 /dev/null \
230		${DESTDIR}/var/msgs/bounds
231	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
232		${DESTDIR}/var/run/utmp
233	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
234		${DESTDIR}/var/games/atc_scores
235	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
236		${DESTDIR}/var/games/battlestar.log
237	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
238		${DESTDIR}/var/games/cfscores
239	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
240		${DESTDIR}/var/games/criblog
241	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
242		${DESTDIR}/var/games/robots_roll
243	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
244		${DESTDIR}/var/games/rogue.scores
245	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
246		${DESTDIR}/var/games/saillog
247	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
248		${DESTDIR}/var/games/snakerawscores
249	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
250		${DESTDIR}/var/games/snake.log
251	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
252		${DESTDIR}/var/games/tetris.scores
253	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
254		${DESTDIR}/var/games/larn/llog12.0
255	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
256		${DESTDIR}/var/games/larn/lscore12.0
257	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
258		${DESTDIR}/var/games/larn/playerids
259	(cd etc.${MACHINE}; ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} \
260	    -g ${BINGRP} -m 444 fstab.* ${DESTDIR}/etc)
261	(cd ${DESTDIR}/dev; ./MAKEDEV all)
262	(cd skel; ${MAKE} distribution)
263	(cd ../usr.bin/mail; ${MAKE} distribution)
264	(cd ../gnu/usr.sbin/postfix/; ${MAKE} distribution)
265.if (${MKCRYPTO} != "no")
266	(cd ../usr.bin/ssh; ${MAKE} distribution)
267.endif
268.ifndef NO_SENDMAIL
269	(cd ../gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
270.endif
271
272distrib-dirs:
273	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${DESTDIR}
274	-mtree -def mtree/NetBSD.dist -p ${DESTDIR}/ -u
275	cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
276
277.if !defined(RELEASEDIR)
278release snapshot snap_pre snap_md_pre snap_md_post iso-image:
279	@echo setenv RELEASEDIR before doing that!
280	@false
281.else
282release snapshot: distribution snap_pre snap_md_pre snap_kern snap_md_post
283	(cd ../distrib/sets; ${MAKE} sets)
284	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/kernel '*.gz'
285
286# Standalone target to create a CDROM image after the release
287# was composed. Should be run after "make build" in both src and xsrc
288iso-image: iso-image_md_post
289
290iso-image_mi: iso-image_md_pre
291	@if ${MKISOFS} --version; then \
292		mkdir -p ${RELEASEDIR}/installation/cdrom ; \
293		${MKISOFS} ${MKISOFS_FLAGS} \
294			-o ${RELEASEDIR}/installation/cdrom/netbsd-${MACHINE}.iso \
295			${RELEASEDIR} ; \
296		sh ../distrib/sets/makesums -t ${RELEASEDIR}/installation/cdrom '*.iso' ; \
297	else \
298		echo "install pkgsrc/sysutils/cdrecord and type 'make iso-image'." ; \
299	fi
300
301# Setup the $RELEASEDIR to produce a bootable CD image:
302iso-image_md_pre:
303# nothing here -- look in the machine-dependent Makefile.inc
304
305# Fixup the  CD-image to be bootable
306iso-image_md_post: iso-image_mi
307# nothing here -- look in the machine-dependent Makefile.inc
308
309snap_pre:
310# Could be a mount point, ignore the errors
311	-/bin/rm -rf ${RELEASEDIR}
312	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR}
313.for dir in ${INSTALLATION_DIRS}
314	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR}/${dir}
315.endfor
316
317
318# This target builds the GENERIC kernel (which must exist for all
319# ports) and puts it in binary/sets/kern.tgz, and also builds any
320# kernels specified in EXTRA_KERNELS. Since NetBSD's kernel build
321# system can create more than one kernel from a single configuration
322# we figure out how many there are, what they're named, and move them
323# to binary/kernel/${KERNEL}.${CONFIGFILE}.gz - most often KERNEL will
324# simply be "netbsd". If we don't find the "config" line, assume the
325# kernel will be "netbsd" (some config files are simple additions on
326# GENERIC, and just include it).
327#
328GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
329		END{ if (found == 0) print "netbsd"; }'
330#
331.if !target(snap_kern)
332snap_kern:
333.ifndef KERNELS_DONE
334.for configfile in GENERIC ${EXTRA_KERNELS} ${BUILD_KERNELS}
335	cd ${KERNCONFDIR} && ${CONFIG} \
336		-b ${KERNOBJDIR}/${configfile} -s ${KERNSRCDIR} ${configfile}
337.ifndef UPDATE
338	cd ${KERNOBJDIR}/${configfile} && ${MAKE} distclean 
339.endif
340	cd ${KERNOBJDIR}/${configfile} && ${MAKE} depend && ${MAKE} ${_J}
341.endfor # kernels
342	cd ${KERNOBJDIR}/GENERIC &&	\
343		tar cf - `${GETKERNELAWK} ${KERNCONFDIR}/GENERIC` |\
344		gzip -c -9 > ${RELEASEDIR}/binary/sets/kern.tgz
345.for configfile in GENERIC ${EXTRA_KERNELS}
346	cd ${KERNOBJDIR}/${configfile} &&	\
347		for kernel in `${GETKERNELAWK} \
348			${KERNCONFDIR}/${configfile}` ; {   \
349		gzip -c -9 < $${kernel} > \
350			${RELEASEDIR}/binary/kernel/$${kernel}.${configfile}.gz ; }
351.endfor # EXTRA_KERNELS
352.endif # KERNELS_DONE
353.endif # no target(snap_kern)
354
355.endif # RELEASEDIR check
356
357snap_md_pre:
358# nothing here -- look in the machine-dependent Makefile.inc
359
360snap_md_post:
361# nothing here -- look in the machine-dependent Makefile.inc
362
363.endif	# DESTDIR check
364
365.include <bsd.prog.mk>
366