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