Makefile revision 1.275
1#	$NetBSD: Makefile,v 1.275 2004/01/27 01:52:06 lukem 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#   MKCRYPTO; if not `no', install crypto-related configuration
19#   MKSENDMAIL; if not `no', install sendmail configuration
20#   MKUNPRIVED; if not `no', allow non-root installs.
21#   MKUPDATE; if not `no', don't do a 'make clean' before kernel compile
22#
23# Targets:
24#    distribution: makes a full NetBSD distribution in DESTDIR. If
25#	INSTALL_DONE is set, it will not do a `make install.'
26#	if DISTRIBUTION_DONE is set, it will not do anything.
27#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
28#	Called by distribution.
29#    snapshot: calls distribution, above, and then tars up the files
30#	into a release(7) format in RELEASEDIR/${MACHINE}.
31#	Any port-dependent stuff for this target is found in
32#	etc.${MACHINE}/Makefile.inc.
33#    release: a synonym for `snapshot'
34#
35
36# For MK* vars
37.include <bsd.own.mk>
38
39.include <bsd.sys.mk>		# for HOST_SH
40.include <bsd.kernobj.mk>	# For KERNSRCDIR, KERNOBJDIR, ...
41.include <bsd.endian.mk>	# For TARGET_ENDIANNESS
42
43
44.MAKEOVERRIDES+=	USETOOLS
45
46TZDIR=		/usr/share/zoneinfo
47LOCALTIME?=	UTC
48MAKESUMS=	CKSUM=${TOOL_CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums
49DISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh
50
51# Flags for creating ISO CDROM image
52# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrecord
53# Note: At least mkisofs 2.0 should be used.
54#
55MKISOFS?=	mkisofs
56DISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
57# ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].
58ISO_VOLID!=	echo NETBSD_${MACHINE}_${DISTRIBREV} | tr a-z A-Z
59MKISOFS_FLAGS+= -J -l \
60		-r -T -v \
61		-V ${ISO_VOLID} \
62		-P "The NetBSD Project" \
63		-m "${RELEASEDIR}/${MACHINE}/installation/cdrom"
64
65# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
66# are empty, to preserve the old semantics of setting them below with "=".
67#
68BIN1=
69BIN2=
70BIN3=
71
72# Directories to build in ${RELEASEDIR}/${MACHINE}.
73# MD Makefile.inc files can add to this.
74# NOTE: Parent directories must be listed before subdirectories.
75#
76INSTALLATION_DIRS=	binary binary/sets binary/kernel installation
77
78.if exists(etc.${MACHINE}/Makefile.inc)
79.include "etc.${MACHINE}/Makefile.inc"
80.endif
81
82# -rw-r--r--
83BINOWN= root
84BINGRP= wheel
85UTMPGRP= utmp
86BIN1+=	bootptab changelist csh.cshrc csh.login csh.logout daily \
87	daily.conf dm.conf floppytab ftpchroot ftpusers \
88	gettytab group hosts hosts.lpd inetd.conf lkm.conf \
89	mailer.conf man.conf monthly monthly.conf mrouted.conf \
90	netconfig networks newsyslog.conf nsswitch.conf ntp.conf \
91	passwd.conf phones printcap profile protocols rbootd.conf rc rc.conf \
92	rc.lkm rc.local rc.subr rc.shutdown remote rpc \
93	security security.conf services shells sysctl.conf syslog.conf \
94	weekly weekly.conf wscons.conf \
95	etc.${MACHINE}/ttys
96
97# Use machine-specific disktab if it exists, or the MI one otherwise
98.if exists(etc.${MACHINE}/disktab)
99BIN1+=	etc.${MACHINE}/disktab
100.else
101BIN1+=	disktab
102.endif
103
104.if exists(etc.${MACHINE}/ld.so.conf)
105BIN1+=	etc.${MACHINE}/ld.so.conf
106.endif
107
108.if exists(etc.${MACHINE}/ttyaction)
109BIN1+=	etc.${MACHINE}/ttyaction
110.endif
111
112# -rw-rw-r--
113BIN2+=	motd
114
115# -rw-------
116BIN3+=	hosts.equiv
117
118ETC_PKG=-T etc_pkg
119BASE_PKG=-T base_pkg
120ETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG}
121ETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG}
122ETC_INSTALL_LINK=cd ${.CURDIR} && ${INSTALL_LINK} ${ETC_PKG}
123ETC_INSTALL_SYMLINK=cd ${.CURDIR} && ${INSTALL_SYMLINK} ${ETC_PKG}
124
125NAMEDB=	127 root.cache named.conf localhost loopback.v6
126
127SSH=	ssh_known_hosts
128
129.if ${TARGET_ENDIANNESS} == "1234"
130PWD_MKDB_ENDIAN=	-L
131.elif ${TARGET_ENDIANNESS} == "4321"
132PWD_MKDB_ENDIAN=	-B
133.else
134PWD_MKDB_ENDIAN=
135.endif
136
137
138# distribution --
139#	Build a distribution
140#
141distribution: .PHONY check_DESTDIR .WAIT distrib-dirs
142.if !defined(DISTRIBUTION_DONE)
143.if !defined(INSTALL_DONE)
144	(cd ${NETBSDSRCDIR}; ${MAKE} _DISTRIB= includes)
145	(cd ${NETBSDSRCDIR}; ${MAKE} _DISTRIB= install)
146.endif	# !INSTALL_DONE
147	(cd ${.CURDIR}; ${MAKE} install-etc-files)
148.endif	# !DISTRIBUTION_DONE
149
150
151CLEANFILES+=	MAKEDEV
152MAKEDEV: .EXEC
153	${_MKTARGET_CREATE}
154	MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
155	    NETBSDSRCDIR=${NETBSDSRCDIR:Q} \
156	    awk -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl > ${.TARGET}
157
158
159RELEASEVARS=	BSDOBJDIR BSDSRCDIR BUILDID \
160		DESTDIR EXTERNAL_TOOLCHAIN \
161		INSTALLWORLDDIR \
162		KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
163		MACHINE MACHINE_ARCH MAKE MAKECONF MAKEFLAGS \
164		MAKEOBJDIR MAKEOBJDIRPREFIX MAKEVERBOSE \
165		MKBFD MKCATPAGES \
166		MKCRYPTO MKCRYPTO_IDEA MKCRYPTO_MDC2 MKCRYPTO_RC5 MKCVS \
167		MKDOC MKDYNAMICROOT MKGCC MKGCCCMDS MKGDB \
168		MKHESIOD MKHOSTOBJ MKHTML MKIEEEFP MKINFO \
169		MKKERBEROS4 MKKERBEROS MKLINKLIB MKLINT \
170		MKMAN MKMANZ MKNLS MKOBJ MKOBJDIRS \
171		MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \
172		MKSENDMAIL MKSHARE MKSKEY MKSOFTFLOAT MKSTATICLIB \
173		MKUNPRIVED MKUPDATE MKUUCP MKX11 MKYP \
174		NBUILDJOBS \
175		NOCLEANDIR NODISTRIBDIRS NOINCLUDES \
176		RELEASEDIR TOOLCHAIN_MISSING TOOLDIR USETOOLS
177
178CLEANFILES+=	etc-release
179etc-release: .EXEC
180	${_MKTARGET_CREATE}
181	@(	echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \
182		echo "	$$(date -u)  $${USER-root}@$$(hostname)"; \
183		echo ; \
184		cat ${NETBSDSRCDIR}/sys/conf/copyright; \
185		echo ; \
186		echo "Build settings:"; \
187	) >${.TARGET}
188.for var in ${RELEASEVARS}
189.if defined(${var})
190	@printf "%20s = '%-s'\n" ${var} ${${var}:Q} >> ${.TARGET}
191.else
192	@printf "%20s = (undefined)\n" ${var} >> ${.TARGET}
193.endif
194.endfor
195
196install-etc-release: .PHONY etc-release
197	${_MKMSG_INSTALL} etc/release
198	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \
199	    etc-release ${DESTDIR}/etc/release
200
201# install-etc-files --
202#	Install etc (config) files; not performed by "make build"
203#
204install-etc-files: .PHONY check_DESTDIR MAKEDEV
205	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
206	    ${BIN1} ${DESTDIR}/etc
207	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 \
208	    ${BIN2} ${DESTDIR}/etc
209	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
210	    ${BIN3} ${DESTDIR}/etc
211	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
212	    aliases ${DESTDIR}/etc/mail
213	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
214	    /dev/null ${DESTDIR}/etc/mail/local-host-names
215	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
216	    crontab ${DESTDIR}/var/cron/tabs/root
217	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
218	    master.passwd ${DESTDIR}/etc
219	${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \
220	    ${DESTDIR}/etc/master.passwd
221.if ${MKUNPRIVED} != "no"
222	( \
223		for metaent in passwd pwd.db spwd.db; do \
224	    		echo "./etc/$${metaent} type=file mode=0644 uname=root gname=wheel tags=etc_pkg"; \
225		done; \
226	) | ${METALOG.add}
227.endif	# MKUNPRIVED != no
228	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
229	    MAKEDEV ${DESTDIR}/dev
230	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
231	    MAKEDEV.local ${DESTDIR}/dev
232	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
233	    minfree ${DESTDIR}/var/crash
234.for file in cshrc login profile shrc
235	${ETC_INSTALL_FILE} -o root -g wheel -m 644 \
236	    root/dot.${file} ${DESTDIR}/root/.${file}
237.endfor
238	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
239	    root/dot.klogin ${DESTDIR}/root/.klogin
240	rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile
241	${ETC_INSTALL_LINK} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc
242	${ETC_INSTALL_LINK} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
243	(cd ${.CURDIR}/defaults; ${MAKE} install)
244	(cd ${.CURDIR}/mtree; ${MAKE} install)
245.for file in ${NAMEDB}
246	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
247	    namedb/${file} ${DESTDIR}/etc/namedb
248.endfor
249.for file in ${SSH}
250	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
251	    ssh/${file} ${DESTDIR}/etc/ssh
252.endfor
253	(cd ${.CURDIR}/powerd; ${MAKE} install)
254	(cd ${.CURDIR}/rc.d; ${MAKE} install)
255	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
256	    postinstall ${DESTDIR}/etc
257	${ETC_INSTALL_SYMLINK} -o root -g wheel -m 755 \
258	    ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
259	${ETC_INSTALL_SYMLINK} -o root -g wheel -m 755 \
260	    /usr/sbin/rmt ${DESTDIR}/etc/rmt
261	${ETC_INSTALL_FILE} -o ${BINOWN} -g operator -m 664 \
262	    /dev/null ${DESTDIR}/etc/dumpdates
263	${ETC_INSTALL_FILE} -o ${BINOWN} -g operator -m 600 \
264	    /dev/null ${DESTDIR}/etc/skeykeys
265	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
266	    /dev/null ${DESTDIR}/var/at/at.deny
267	${ETC_INSTALL_FILE} -o nobody -g ${BINGRP} -m 664 \
268	    /dev/null ${DESTDIR}/var/db/locate.database
269	${ETC_INSTALL_FILE} -o uucp -g dialer -m 640 \
270	    /dev/null ${DESTDIR}/var/log/aculog
271	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
272	    /dev/null ${DESTDIR}/var/log/authlog
273	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
274	    /dev/null ${DESTDIR}/var/log/cron
275	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 \
276	    /dev/null ${DESTDIR}/var/log/lastlog
277	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 640 \
278	    /dev/null ${DESTDIR}/var/log/lpd-errs
279	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
280	    /dev/null ${DESTDIR}/var/log/maillog
281	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
282	    /dev/null ${DESTDIR}/var/log/messages
283	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
284	    /dev/null ${DESTDIR}/var/log/secure
285	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
286	    /dev/null ${DESTDIR}/var/log/sendmail.st
287	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
288	    /dev/null ${DESTDIR}/var/log/wtmp
289	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
290	    /dev/null ${DESTDIR}/var/log/wtmpx
291	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
292	    /dev/null ${DESTDIR}/var/log/xferlog
293	${ETC_INSTALL_FILE} -o daemon -g staff -m 664 \
294	    /dev/null ${DESTDIR}/var/msgs/bounds
295	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${UTMPGRP} -m 664 \
296	    /dev/null ${DESTDIR}/var/run/utmp
297	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${UTMPGRP} -m 664 \
298	    /dev/null ${DESTDIR}/var/run/utmpx
299	${ETC_INSTALL_FILE} -o games -g games -m 664 \
300	    /dev/null ${DESTDIR}/var/games/atc_score
301	${ETC_INSTALL_FILE} -o games -g games -m 664 \
302	    /dev/null ${DESTDIR}/var/games/battlestar.log
303	${ETC_INSTALL_FILE} -o games -g games -m 664 \
304	    /dev/null ${DESTDIR}/var/games/cfscores
305	${ETC_INSTALL_FILE} -o games -g games -m 664 \
306	    /dev/null ${DESTDIR}/var/games/criblog
307	${ETC_INSTALL_FILE} -o games -g games -m 660 \
308	    /dev/null ${DESTDIR}/var/games/hackdir/perm
309	${ETC_INSTALL_FILE} -o games -g games -m 660 \
310	    /dev/null ${DESTDIR}/var/games/hackdir/record
311	${ETC_INSTALL_FILE} -o games -g games -m 664 \
312	    /dev/null ${DESTDIR}/var/games/larn/llog12.0
313	${ETC_INSTALL_FILE} -o games -g games -m 664 \
314	    /dev/null ${DESTDIR}/var/games/larn/lscore12.0
315	${ETC_INSTALL_FILE} -o games -g games -m 664 \
316	    /dev/null ${DESTDIR}/var/games/larn/playerids
317	${ETC_INSTALL_FILE} -o games -g games -m 664 \
318	    /dev/null ${DESTDIR}/var/games/robots_roll
319	${ETC_INSTALL_FILE} -o games -g games -m 664 \
320	    /dev/null ${DESTDIR}/var/games/rogue.scores
321	${ETC_INSTALL_FILE} -o games -g games -m 664 \
322	    /dev/null ${DESTDIR}/var/games/saillog
323	${ETC_INSTALL_FILE} -o games -g games -m 664 \
324	    /dev/null ${DESTDIR}/var/games/snakerawscores
325	${ETC_INSTALL_FILE} -o games -g games -m 664 \
326	    /dev/null ${DESTDIR}/var/games/snake.log
327	${ETC_INSTALL_FILE} -o games -g games -m 664 \
328	    /dev/null ${DESTDIR}/var/games/tetris.scores
329	(cd ${.CURDIR}/skel; ${MAKE} distribution)
330	(cd ${NETBSDSRCDIR}/usr.bin/mail; ${MAKE} distribution)
331	(cd ${NETBSDSRCDIR}/gnu/usr.sbin/postfix/; ${MAKE} distribution)
332.if (${MKCRYPTO} != "no")
333	(cd ${NETBSDSRCDIR}/usr.bin/ssh; ${MAKE} distribution)
334.endif
335.if (${MKSENDMAIL} != "no")
336	(cd ${NETBSDSRCDIR}/gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
337.endif
338
339
340# install-obsolete-lists --
341#	Install var/db/obsolete set lists; this is performed by "make build"
342#
343OBSOLETE.dir=		${.OBJDIR}/obsolete.dir
344OBSOLETE.files=		base comp etc games man misc text
345
346install-obsolete-lists: .PHONY
347	mkdir -p ${OBSOLETE.dir}
348	(cd ${NETBSDSRCDIR}/distrib/sets && \
349	    MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir})
350.for file in ${OBSOLETE.files}
351	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
352	    ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete
353.endfor
354
355
356# distrib-dirs --
357#	Populate $DESTDIR with directories needed by NetBSD
358#
359.if ${MKUNPRIVED} == "no"
360TOOL_MTREE.unpriv=
361.else
362TOOL_MTREE.unpriv=	-W
363.endif
364
365distrib-dirs: .PHONY check_DESTDIR
366.if !defined(DISTRIBUTION_DONE)
367	${INSTALL_DIR} -o root -g wheel -m 755 ${BASE_PKG} ${DESTDIR}
368.endif
369	${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
370	    -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv}
371
372
373# release, snapshot --
374#	Build a full distribution including kernels & install media.
375#
376release snapshot: .PHONY check_DESTDIR check_RELEASEDIR .WAIT \
377		    distribution .WAIT \
378		    snap_pre .WAIT snap_kern .WAIT \
379		    snap_post .WAIT snap_md_post
380	(cd ${NETBSDSRCDIR}/distrib/sets; ${MAKE} sets)
381	${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/binary/kernel '*.gz'
382
383
384# iso-image --
385#	Standalone target to create a CDROM image after the release
386#	was composed.  Should be run after "make release" in src and xsrc.
387#
388#	Note: At least mkisofs 2.0 should be used.
389#
390CDROM.image=${RELEASEDIR}/${MACHINE}/installation/cdrom/netbsd-${MACHINE}.iso
391CDROM.dir=	cdrom.dir
392CDROM.pathlist=	cdrom.pathlist
393
394iso-image: .PHONY check_DESTDIR check_RELEASEDIR .WAIT iso-image-md-post
395	${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/installation/cdrom '*.iso'
396	@echo "iso-image created as: ${CDROM.image}"
397
398iso-image-setup: .PHONY check_RELEASEDIR
399	rm -f ${CDROM.pathlist}
400	echo "${MACHINE}=${RELEASEDIR}/${MACHINE}" >> ${CDROM.pathlist}
401	mkdir -p ${CDROM.dir}
402	mkdir -p ${RELEASEDIR}/${MACHINE}/installation/cdrom
403
404# iso-image-mi --
405#	Create the image after the MD operations have completed.
406#
407iso-image-mi: .PHONY check_DESTDIR check_RELEASEDIR .WAIT \
408		iso-image-setup .WAIT iso-image-md-pre
409	@if ! ${MKISOFS} --version; then \
410		echo "install pkgsrc/sysutils/cdrecord and run 'make iso-image'." ; \
411		false; \
412	fi
413	${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \
414	    -o ${CDROM.image} ${CDROM.dir}
415
416# iso-image-md-pre --
417#	Setup ${CDROM.dir} to produce a bootable CD image.
418#	Overridden by etc.$MACHINE/Makefile.inc
419#
420iso-image-md-pre: .PHONY check_DESTDIR check_RELEASEDIR
421#	(empty -- look in the machine-dependent Makefile.inc)
422
423# iso-image-md-post --
424#	Fixup the CD-image to be bootable.
425#	Overridden by etc.$MACHINE/Makefile.inc
426#
427iso-image-md-post: .PHONY check_DESTDIR check_RELEASEDIR .WAIT iso-image-mi
428#	(empty -- look in the machine-dependent Makefile.inc)
429
430
431# snap_pre --
432#	Create ${RELEASEDIR} and necessary subdirectories.
433#
434snap_pre: .PHONY check_DESTDIR check_RELEASEDIR
435	${INSTALL} -d -m 755 ${RELEASEDIR}
436.if ${MKUPDATE} == "no"
437# Could be a mount point, ignore the errors
438	-/bin/rm -rf ${RELEASEDIR}/${MACHINE}
439.endif
440	${INSTALL} -d -m 755 ${RELEASEDIR}/${MACHINE}
441.for dir in ${INSTALLATION_DIRS}
442	${INSTALL} -d -m 755 ${RELEASEDIR}/${MACHINE}/${dir}
443.endfor
444
445# snap_post --
446#	Build the install media and notes from distrib
447#
448snap_post: .PHONY check_DESTDIR check_RELEASEDIR
449.if ${MKUPDATE} == "no"
450	cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir
451.endif
452	cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \
453	    ${MAKE} release
454
455# snap_kern --
456#	This target builds the kernels specified by each port.
457#	A port may specify the following kernels:
458#
459#	KERNEL_SETS		The list of kernels that will be
460#				packaged into sets, named
461#				kern-${kernel}.tgz.  These kernels
462#				are also placed in the binary/kernel
463#				area of the release package as
464#				netbsd-${kernel}.gz.
465#
466#	EXTRA_KERNELS		Additional kernels to place in the
467#				binary/kernel area of the release
468#				package as netbsd-${kernel}.gz, but
469#				which are not placed into sets. This
470#				allows a port to provide e.g. a netbootable
471#				installation kernel containing a ramdisk.
472#
473#	BUILD_KERNELS		Additional kernels to build which are
474#				not placed into sets nor into the
475#				binary/kernel area of the release
476#				package.  These are typically kernels
477#				that are built for inclusion only in
478#				installation disk/CD-ROM/tape images.
479#
480#	A port may also specify KERNEL_SUFFIXES, which is an optional list
481#	of filename suffixes for kernels to include in the kernel sets and
482#	in the binary/kernel area of the release package (e.g. "netbsd" vs.
483#	"netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
484#	with these suffixes do not exist in the kernel build directory.
485#
486#
487# A list of all the kernels to build, which can be overridden from
488# external sources (such as make(1)'s environment or command line)
489#
490ALL_KERNELS?=	${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
491
492GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
493		END{ if (found == 0) print "netbsd"; }'
494
495.if !target(snap_kern)						# {
496
497# build_kernels --
498#	Configure & compile kernels listed in ${ALL_KERNELS}
499#
500.if !defined(KERNELS_DONE)						# {
501.for configfile in ${ALL_KERNELS}					# {
502_KERNELS_TO_BUILD+=kern-${configfile}
503kern-${configfile}: .PHONY
504	cd ${KERNCONFDIR} && ${TOOL_CONFIG} -s ${KERNSRCDIR} \
505	    -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
506.if ${MKUPDATE} == "no"
507	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
508.endif
509	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE}
510.endfor	# ALL_KERNELS							# }
511.endif	# KERNELS_DONE							# }
512
513build_kernels: .PHONY ${_KERNELS_TO_BUILD}
514
515# build_kernelsets --
516#	Create kernel sets from ${KERNEL_SETS} into
517#	${RELEASEDIR}/${MACHINE}/binary/sets
518#
519.for configfile in ${KERNEL_SETS}					# {
520_KERNELSETS_TO_BUILD+=kernset-${configfile}
521kernset-${configfile}: .PHONY
522	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile}`; \
523	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
524	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
525	kern_tgz=${RELEASEDIR}/${MACHINE}/binary/sets/kern-${configfile}.tgz; \
526	pax_cmd="GZIP=-9 ${TOOL_PAX} -O -zw -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \
527	cd $${kerndir} && { \
528		kernels=; newest=; \
529		for kernel in $${kernlist}; do \
530			for s in "" $${kernsuffixes}; do \
531				ks="$${kernel}$${s}"; \
532				[ -f $${ks} ] || continue; \
533				kernels="$${kernels} $${ks}"; \
534				[ -z "$${newest}" -o $${ks} -nt "$${newest}" ] && \
535					newest=$${ks}; \
536			done; \
537		done; \
538		[ $${kern_tgz} -nt "$${newest}" ] || { \
539			echo "echo $${kernels} | $${pax_cmd}"; \
540			( echo "/set uname=${BINOWN} gname=${BINGRP}"; \
541			echo ". type=dir optional"; \
542			for kernel in $${kernels}; do \
543				echo "./$${kernel} type=file"; \
544			done ) | eval $${pax_cmd}; \
545		} \
546	}
547.endfor	# KERNEL_SETS							# }
548
549build_kernelsets: ${_KERNELSETS_TO_BUILD}
550
551# build_releasekernels --
552#	Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into
553#	${RELEASEDIR}/${MACHINE}/binary/kernel
554#
555.for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}			# {
556_RELEASEKERNELS_TO_BUILD+=releasekern-${configfile}
557releasekern-${configfile}: .PHONY
558	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}`; \
559	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
560	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
561	cd $${kerndir} && {	\
562		for kernel in $${kernlist}; do \
563			for s in "" $${kernsuffixes}; do \
564				ks="$${kernel}$${s}"; \
565				[ ! -f $${ks} ] && continue; \
566				knl_gz="${RELEASEDIR}/${MACHINE}/binary/kernel/$${ks}-${configfile:C/.*\///}.gz"; \
567				[ $${knl_gz} -nt $${ks} ] && continue; \
568				echo "gzip -c -9 < $${kerndir}/$${ks} > $${knl_gz}"; \
569				gzip -c -9 < $${ks} > $${knl_gz}; \
570			done; \
571		done; \
572	}
573.endfor	# KERNEL_SETS EXTRA_KERNELS					# }
574
575build_releasekernels: ${_RELEASEKERNELS_TO_BUILD}
576
577# snap_kern --
578#	build the kernels, then the sets & release kernels
579#
580snap_kern: check_DESTDIR check_RELEASEDIR .WAIT \
581	    build_kernels .WAIT \
582	    build_kernelsets build_releasekernels
583
584.endif # !target(snap_kern)					# }
585
586
587# snap_md_post --
588#	Machine dependent distribution media operations.
589#	Overridden by etc.$MACHINE/Makefile.inc
590#
591snap_md_post: check_DESTDIR check_RELEASEDIR
592#	(empty -- look in the machine-dependent Makefile.inc)
593
594
595clean:
596	-rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir}
597
598.include <bsd.prog.mk>
599