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