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