summaryrefslogtreecommitdiff
path: root/etc/Makefile
blob: b5e4a8fb03b68dce4266a6b2e59bedcf9bd96284 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
#	$NetBSD: Makefile,v 1.274 2004/01/11 04:21:18 tls Exp $
#	from: @(#)Makefile	8.7 (Berkeley) 5/25/95

# Environment variables without default values:
#   DESTDIR must be set before anything in this file will work.
#   RELEASEDIR is where the tarred up stuff for a snapshot or
#	release will be placed.
#
# Environment variables with default values:
#   LOCALTIME will set the default local time for the system you
#	build; it determines what /etc/localtime is symlink'd to.
#   KERNSRCDIR points to kernel source; it is set by default to ../sys,
#	but can be overridden.
#   KERNOBJDIR is the kernel build directory, it defaults to
#	${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden.
#   KERNCONFDIR is where the configuration files for kernels are found;
#	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
#   MKCRYPTO; if not `no', install crypto-related configuration
#   MKSENDMAIL; if not `no', install sendmail configuration
#   MKUNPRIVED; if not `no', allow non-root installs.
#   MKUPDATE; if not `no', don't do a 'make clean' before kernel compile
#
# Targets:
#    distribution: makes a full NetBSD distribution in DESTDIR. If
#	INSTALL_DONE is set, it will not do a `make install.'
#	if DISTRIBUTION_DONE is set, it will not do anything.
#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
#	Called by distribution.
#    snapshot: calls distribution, above, and then tars up the files
#	into a release(7) format in RELEASEDIR/${MACHINE}.
#	Any port-dependent stuff for this target is found in
#	etc.${MACHINE}/Makefile.inc.
#    release: a synonym for `snapshot'
#

# For MK* vars
.include <bsd.own.mk>

.include <bsd.sys.mk>		# for HOST_SH
.include <bsd.kernobj.mk>	# For KERNSRCDIR, KERNOBJDIR, ...
.include <bsd.endian.mk>	# For TARGET_ENDIANNESS


.MAKEOVERRIDES+=	USETOOLS

TZDIR=		/usr/share/zoneinfo
LOCALTIME?=	UTC
MAKESUMS=	CKSUM=${TOOL_CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums
DISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh

# Flags for creating ISO CDROM image
# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrecord
# Note: At least mkisofs 2.0 should be used.
#
MKISOFS?=	mkisofs
DISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
# ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].
ISO_VOLID!=	echo NETBSD_${MACHINE}_${DISTRIBREV} | tr a-z A-Z
MKISOFS_FLAGS+= -J -l \
		-r -T -v \
		-V ${ISO_VOLID} \
		-P "The NetBSD Project" \
		-m "${RELEASEDIR}/${MACHINE}/installation/cdrom"

# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
# are empty, to preserve the old semantics of setting them below with "=".
#
BIN1=
BIN2=
BIN3=

# Directories to build in ${RELEASEDIR}/${MACHINE}.
# MD Makefile.inc files can add to this.
# NOTE: Parent directories must be listed before subdirectories.
#
INSTALLATION_DIRS=	binary binary/sets binary/kernel installation

.if exists(etc.${MACHINE}/Makefile.inc)
.include "etc.${MACHINE}/Makefile.inc"
.endif

# -rw-r--r--
BINOWN= root
BINGRP= wheel
UTMPGRP= utmp
BIN1+=	bootptab changelist csh.cshrc csh.login csh.logout daily \
	daily.conf dm.conf floppytab ftpchroot ftpusers \
	gettytab group hosts hosts.lpd inetd.conf lkm.conf \
	mailer.conf man.conf monthly monthly.conf mrouted.conf \
	netconfig networks newsyslog.conf nsswitch.conf ntp.conf \
	passwd.conf phones printcap profile protocols rbootd.conf rc rc.conf \
	rc.lkm rc.local rc.subr rc.shutdown remote rpc \
	security security.conf services shells sysctl.conf syslog.conf \
	weekly weekly.conf wscons.conf \
	etc.${MACHINE}/ttys

# Use machine-specific disktab if it exists, or the MI one otherwise
.if exists(etc.${MACHINE}/disktab)
BIN1+=	etc.${MACHINE}/disktab
.else
BIN1+=	disktab
.endif

.if exists(etc.${MACHINE}/ld.so.conf)
BIN1+=	etc.${MACHINE}/ld.so.conf
.endif

.if exists(etc.${MACHINE}/ttyaction)
BIN1+=	etc.${MACHINE}/ttyaction
.endif

# -rw-rw-r--
BIN2+=	motd

# -rw-------
BIN3+=	hosts.equiv

ETC_PKG=-T etc_pkg
BASE_PKG=-T base_pkg
ETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG}
ETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG}
ETC_INSTALL_LINK=cd ${.CURDIR} && ${INSTALL_LINK} ${ETC_PKG}
ETC_INSTALL_SYMLINK=cd ${.CURDIR} && ${INSTALL_SYMLINK} ${ETC_PKG}

NAMEDB=	127 root.cache named.conf localhost loopback.v6

SSH=	ssh_known_hosts

.if ${TARGET_ENDIANNESS} == "1234"
PWD_MKDB_ENDIAN=	-L
.elif ${TARGET_ENDIANNESS} == "4321"
PWD_MKDB_ENDIAN=	-B
.else
PWD_MKDB_ENDIAN=
.endif


# distribution --
#	Build a distribution
#
distribution: check_DESTDIR .WAIT distrib-dirs
.if !defined(DISTRIBUTION_DONE)
.if !defined(INSTALL_DONE)
	(cd ${NETBSDSRCDIR}; ${MAKE} _DISTRIB= includes)
	(cd ${NETBSDSRCDIR}; ${MAKE} _DISTRIB= install)
.endif	# !INSTALL_DONE
	(cd ${.CURDIR}; ${MAKE} install-etc-files)
.endif	# !DISTRIBUTION_DONE


.PHONY: 	MAKEDEV
CLEANFILES+=	MAKEDEV
MAKEDEV:
	${_MKTARGET_CREATE}
	MACHINE=${MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
	    NETBSDSRCDIR=${NETBSDSRCDIR:Q} \
	    awk -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl > ${.TARGET}


RELEASEVARS=	BSDOBJDIR BSDSRCDIR BUILDID \
		DESTDIR EXTERNAL_TOOLCHAIN \
		INSTALLWORLDDIR \
		KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
		MACHINE MACHINE_ARCH MAKE MAKECONF MAKEFLAGS \
		MAKEOBJDIR MAKEOBJDIRPREFIX MAKEVERBOSE \
		MKBFD MKCATPAGES \
		MKCRYPTO MKCRYPTO_IDEA MKCRYPTO_MDC2 MKCRYPTO_RC5 MKCVS \
		MKDOC MKDYNAMICROOT MKGCC MKGCCCMDS MKGDB \
		MKHESIOD MKHOSTOBJ MKHTML MKIEEEFP MKINFO \
		MKKERBEROS4 MKKERBEROS MKLINKLIB MKLINT \
		MKMAN MKMANZ MKNLS MKOBJ MKOBJDIRS \
		MKPIC MKPICINSTALL MKPICLIB MKPOSTFIX MKPROFILE \
		MKSENDMAIL MKSHARE MKSKEY MKSOFTFLOAT MKSTATICLIB \
		MKUNPRIVED MKUPDATE MKUUCP MKX11 MKYP \
		NBUILDJOBS \
		NOCLEANDIR NODISTRIBDIRS NOINCLUDES \
		RELEASEDIR TOOLCHAIN_MISSING TOOLDIR USETOOLS

.PHONY:		etc-release install-etc-release
CLEANFILES+=	etc-release
etc-release:
	${_MKTARGET_CREATE}
	@(	echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \
		echo "	$$(date -u)  $${USER-root}@$$(hostname)"; \
		echo ; \
		cat ${NETBSDSRCDIR}/sys/conf/copyright; \
		echo ; \
		echo "Build settings:"; \
	) >${.TARGET}
.for var in ${RELEASEVARS}
.if defined(${var})
	@printf "%20s = '%-s'\n" ${var} ${${var}:Q} >> ${.TARGET}
.else
	@printf "%20s = (undefined)\n" ${var} >> ${.TARGET}
.endif
.endfor

install-etc-release: etc-release
	${_MKMSG_INSTALL} etc/release
	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \
	    etc-release ${DESTDIR}/etc/release

# install-etc-files --
#	Install etc (config) files; not performed by "make build"
#
install-etc-files: check_DESTDIR MAKEDEV
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    ${BIN1} ${DESTDIR}/etc
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 \
	    ${BIN2} ${DESTDIR}/etc
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
	    ${BIN3} ${DESTDIR}/etc
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    aliases ${DESTDIR}/etc/mail
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    /dev/null ${DESTDIR}/etc/mail/local-host-names
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    crontab ${DESTDIR}/var/cron/tabs/root
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    master.passwd ${DESTDIR}/etc
	${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \
	    ${DESTDIR}/etc/master.passwd
.if ${MKUNPRIVED} != "no"
	( \
		for metaent in passwd pwd.db spwd.db; do \
	    		echo "./etc/$${metaent} type=file mode=0644 uname=root gname=wheel tags=etc_pkg"; \
		done; \
	) | ${METALOG.add}
.endif	# MKUNPRIVED != no
	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
	    MAKEDEV ${DESTDIR}/dev
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
	    MAKEDEV.local ${DESTDIR}/dev
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    minfree ${DESTDIR}/var/crash
.for file in cshrc login profile shrc
	${ETC_INSTALL_FILE} -o root -g wheel -m 644 \
	    root/dot.${file} ${DESTDIR}/root/.${file}
.endfor
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    root/dot.klogin ${DESTDIR}/root/.klogin
	rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile
	${ETC_INSTALL_LINK} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc
	${ETC_INSTALL_LINK} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
	(cd ${.CURDIR}/defaults; ${MAKE} install)
	(cd ${.CURDIR}/mtree; ${MAKE} install)
.for file in ${NAMEDB}
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    namedb/${file} ${DESTDIR}/etc/namedb
.endfor
.for file in ${SSH}
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    ssh/${file} ${DESTDIR}/etc/ssh
.endfor
	(cd ${.CURDIR}/powerd; ${MAKE} install)
	(cd ${.CURDIR}/rc.d; ${MAKE} install)
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
	    postinstall ${DESTDIR}/etc
	${ETC_INSTALL_SYMLINK} -o root -g wheel -m 755 \
	    ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
	${ETC_INSTALL_SYMLINK} -o root -g wheel -m 755 \
	    /usr/sbin/rmt ${DESTDIR}/etc/rmt
	${ETC_INSTALL_FILE} -o ${BINOWN} -g operator -m 664 \
	    /dev/null ${DESTDIR}/etc/dumpdates
	${ETC_INSTALL_FILE} -o ${BINOWN} -g operator -m 600 \
	    /dev/null ${DESTDIR}/etc/skeykeys
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    /dev/null ${DESTDIR}/var/at/at.deny
	${ETC_INSTALL_FILE} -o nobody -g ${BINGRP} -m 664 \
	    /dev/null ${DESTDIR}/var/db/locate.database
	${ETC_INSTALL_FILE} -o uucp -g dialer -m 640 \
	    /dev/null ${DESTDIR}/var/log/aculog
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
	    /dev/null ${DESTDIR}/var/log/authlog
	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
	    /dev/null ${DESTDIR}/var/log/cron
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 \
	    /dev/null ${DESTDIR}/var/log/lastlog
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 640 \
	    /dev/null ${DESTDIR}/var/log/lpd-errs
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
	    /dev/null ${DESTDIR}/var/log/maillog
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    /dev/null ${DESTDIR}/var/log/messages
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
	    /dev/null ${DESTDIR}/var/log/secure
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    /dev/null ${DESTDIR}/var/log/sendmail.st
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    /dev/null ${DESTDIR}/var/log/wtmp
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    /dev/null ${DESTDIR}/var/log/wtmpx
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 \
	    /dev/null ${DESTDIR}/var/log/xferlog
	${ETC_INSTALL_FILE} -o daemon -g staff -m 664 \
	    /dev/null ${DESTDIR}/var/msgs/bounds
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${UTMPGRP} -m 664 \
	    /dev/null ${DESTDIR}/var/run/utmp
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${UTMPGRP} -m 664 \
	    /dev/null ${DESTDIR}/var/run/utmpx
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/atc_score
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/battlestar.log
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/cfscores
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/criblog
	${ETC_INSTALL_FILE} -o games -g games -m 660 \
	    /dev/null ${DESTDIR}/var/games/hackdir/perm
	${ETC_INSTALL_FILE} -o games -g games -m 660 \
	    /dev/null ${DESTDIR}/var/games/hackdir/record
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/larn/llog12.0
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/larn/lscore12.0
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/larn/playerids
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/robots_roll
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/rogue.scores
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/saillog
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/snakerawscores
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/snake.log
	${ETC_INSTALL_FILE} -o games -g games -m 664 \
	    /dev/null ${DESTDIR}/var/games/tetris.scores
	(cd ${.CURDIR}/skel; ${MAKE} distribution)
	(cd ${NETBSDSRCDIR}/usr.bin/mail; ${MAKE} distribution)
	(cd ${NETBSDSRCDIR}/gnu/usr.sbin/postfix/; ${MAKE} distribution)
.if (${MKCRYPTO} != "no")
	(cd ${NETBSDSRCDIR}/usr.bin/ssh; ${MAKE} distribution)
.endif
.if (${MKSENDMAIL} != "no")
	(cd ${NETBSDSRCDIR}/gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
.endif


# install-obsolete-lists --
#	Install var/db/obsolete set lists; this is performed by "make build"
#
OBSOLETE.dir=		${.OBJDIR}/obsolete.dir
OBSOLETE.files=		base comp etc games man misc text

install-obsolete-lists:
	mkdir -p ${OBSOLETE.dir}
	(cd ${NETBSDSRCDIR}/distrib/sets && \
	    MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir})
.for file in ${OBSOLETE.files}
	${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
	    ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete
.endfor


# distrib-dirs --
#	Populate $DESTDIR with directories needed by NetBSD
#
.if ${MKUNPRIVED} == "no"
TOOL_MTREE.unpriv=
.else
TOOL_MTREE.unpriv=	-W
.endif

distrib-dirs: check_DESTDIR
.if !defined(DISTRIBUTION_DONE)
	${INSTALL_DIR} -o root -g wheel -m 755 ${BASE_PKG} ${DESTDIR}
.endif
	${TOOL_MTREE} -def ${.CURDIR}/mtree/NetBSD.dist -N ${.CURDIR} \
	    -p ${DESTDIR}/ -U ${TOOL_MTREE.unpriv}


# release, snapshot --
#	Build a full distribution including kernels & install media.
#
release snapshot: check_DESTDIR check_RELEASEDIR .WAIT \
		    distribution .WAIT \
		    snap_pre .WAIT snap_kern .WAIT \
		    snap_post .WAIT snap_md_post
	(cd ${NETBSDSRCDIR}/distrib/sets; ${MAKE} sets)
	${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/binary/kernel '*.gz'


# iso-image --
#	Standalone target to create a CDROM image after the release
#	was composed.  Should be run after "make release" in src and xsrc.
#
#	Note: At least mkisofs 2.0 should be used.
#
CDROM.image=${RELEASEDIR}/${MACHINE}/installation/cdrom/netbsd-${MACHINE}.iso
CDROM.dir=	cdrom.dir
CDROM.pathlist=	cdrom.pathlist

iso-image: check_DESTDIR check_RELEASEDIR .WAIT iso-image-md-post
	${MAKESUMS} -t ${RELEASEDIR}/${MACHINE}/installation/cdrom '*.iso'
	@echo "iso-image created as: ${CDROM.image}"

iso-image-setup: check_RELEASEDIR
	rm -f ${CDROM.pathlist}
	echo "${MACHINE}=${RELEASEDIR}/${MACHINE}" >> ${CDROM.pathlist}
	mkdir -p ${CDROM.dir}
	mkdir -p ${RELEASEDIR}/${MACHINE}/installation/cdrom

# iso-image-mi --
#	Create the image after the MD operations have completed.
#
iso-image-mi: check_DESTDIR check_RELEASEDIR .WAIT \
		iso-image-setup .WAIT iso-image-md-pre
	@if ! ${MKISOFS} --version; then \
		echo "install pkgsrc/sysutils/cdrecord and run 'make iso-image'." ; \
		false; \
	fi
	${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \
	    -o ${CDROM.image} ${CDROM.dir}

# iso-image-md-pre --
#	Setup ${CDROM.dir} to produce a bootable CD image.
#	Overridden by etc.$MACHINE/Makefile.inc
#
iso-image-md-pre: check_DESTDIR check_RELEASEDIR
#	(empty -- look in the machine-dependent Makefile.inc)

# iso-image-md-post --
#	Fixup the CD-image to be bootable.
#	Overridden by etc.$MACHINE/Makefile.inc
#
iso-image-md-post: check_DESTDIR check_RELEASEDIR .WAIT iso-image-mi
#	(empty -- look in the machine-dependent Makefile.inc)


# snap_pre --
#	Create ${RELEASEDIR} and necessary subdirectories.
#
snap_pre: check_DESTDIR check_RELEASEDIR
	${INSTALL} -d -m 755 ${RELEASEDIR}
.if ${MKUPDATE} == "no"
# Could be a mount point, ignore the errors
	-/bin/rm -rf ${RELEASEDIR}/${MACHINE}
.endif
	${INSTALL} -d -m 755 ${RELEASEDIR}/${MACHINE}
.for dir in ${INSTALLATION_DIRS}
	${INSTALL} -d -m 755 ${RELEASEDIR}/${MACHINE}/${dir}
.endfor

# snap_post --
#	Build the install media and notes from distrib
#
snap_post: check_DESTDIR check_RELEASEDIR
.if ${MKUPDATE} == "no"
	cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir
.endif
	cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \
	    ${MAKE} release

# snap_kern --
#	This target builds the kernels specified by each port.
#	A port may specify the following kernels:
#
#	KERNEL_SETS		The list of kernels that will be
#				packaged into sets, named
#				kern-${kernel}.tgz.  These kernels
#				are also placed in the binary/kernel
#				area of the release package as
#				netbsd-${kernel}.gz.
#
#	EXTRA_KERNELS		Additional kernels to place in the
#				binary/kernel area of the release
#				package as netbsd-${kernel}.gz, but
#				which are not placed into sets. This
#				allows a port to provide e.g. a netbootable
#				installation kernel containing a ramdisk.
#
#	BUILD_KERNELS		Additional kernels to build which are
#				not placed into sets nor into the
#				binary/kernel area of the release
#				package.  These are typically kernels
#				that are built for inclusion only in
#				installation disk/CD-ROM/tape images.
#
#	A port may also specify KERNEL_SUFFIXES, which is an optional list
#	of filename suffixes for kernels to include in the kernel sets and
#	in the binary/kernel area of the release package (e.g. "netbsd" vs.
#	"netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
#	with these suffixes do not exist in the kernel build directory.
#
#
# A list of all the kernels to build, which can be overridden from
# external sources (such as make(1)'s environment or command line)
#
ALL_KERNELS?=	${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}

GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
		END{ if (found == 0) print "netbsd"; }'

.if !target(snap_kern)						# {

# build_kernels --
#	Configure & compile kernels listed in ${ALL_KERNELS}
#
.if !defined(KERNELS_DONE)						# {
.for configfile in ${ALL_KERNELS}					# {
_KERNELS_TO_BUILD+=kern-${configfile}
kern-${configfile}:
	cd ${KERNCONFDIR} && ${TOOL_CONFIG} -s ${KERNSRCDIR} \
	    -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
.if ${MKUPDATE} == "no"
	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
.endif
	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE}
.endfor	# ALL_KERNELS							# }
.endif	# KERNELS_DONE							# }

build_kernels: ${_KERNELS_TO_BUILD}

# build_kernelsets --
#	Create kernel sets from ${KERNEL_SETS} into
#	${RELEASEDIR}/${MACHINE}/binary/sets
#
.for configfile in ${KERNEL_SETS}					# {
_KERNELSETS_TO_BUILD+=kernset-${configfile}
kernset-${configfile}:
	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile}`; \
	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
	kern_tgz=${RELEASEDIR}/${MACHINE}/binary/sets/kern-${configfile}.tgz; \
	pax_cmd="GZIP=-9 ${TOOL_PAX} -O -zw -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \
	cd $${kerndir} && { \
		kernels=; newest=; \
		for kernel in $${kernlist}; do \
			for s in "" $${kernsuffixes}; do \
				ks="$${kernel}$${s}"; \
				[ -f $${ks} ] || continue; \
				kernels="$${kernels} $${ks}"; \
				[ -z "$${newest}" -o $${ks} -nt "$${newest}" ] && \
					newest=$${ks}; \
			done; \
		done; \
		[ $${kern_tgz} -nt "$${newest}" ] || { \
			echo "echo $${kernels} | $${pax_cmd}"; \
			( echo "/set uname=${BINOWN} gname=${BINGRP}"; \
			echo ". type=dir optional"; \
			for kernel in $${kernels}; do \
				echo "./$${kernel} type=file"; \
			done ) | eval $${pax_cmd}; \
		} \
	}
.endfor	# KERNEL_SETS							# }

build_kernelsets: ${_KERNELSETS_TO_BUILD}

# build_releasekernels --
#	Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into
#	${RELEASEDIR}/${MACHINE}/binary/kernel
#
.for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}			# {
_RELEASEKERNELS_TO_BUILD+=releasekern-${configfile}
releasekern-${configfile}:
	@ kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}`; \
	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
	cd $${kerndir} && {	\
		for kernel in $${kernlist}; do \
			for s in "" $${kernsuffixes}; do \
				ks="$${kernel}$${s}"; \
				[ ! -f $${ks} ] && continue; \
				knl_gz="${RELEASEDIR}/${MACHINE}/binary/kernel/$${ks}-${configfile:C/.*\///}.gz"; \
				[ $${knl_gz} -nt $${ks} ] && continue; \
				echo "gzip -c -9 < $${kerndir}/$${ks} > $${knl_gz}"; \
				gzip -c -9 < $${ks} > $${knl_gz}; \
			done; \
		done; \
	}
.endfor	# KERNEL_SETS EXTRA_KERNELS					# }

build_releasekernels: ${_RELEASEKERNELS_TO_BUILD}

# snap_kern --
#	build the kernels, then the sets & release kernels
#
snap_kern: check_DESTDIR check_RELEASEDIR .WAIT \
	    build_kernels .WAIT \
	    build_kernelsets build_releasekernels

.endif # !target(snap_kern)					# }


# snap_md_post --
#	Machine dependent distribution media operations.
#	Overridden by etc.$MACHINE/Makefile.inc
#
snap_md_post: check_DESTDIR check_RELEASEDIR
#	(empty -- look in the machine-dependent Makefile.inc)


clean:
	-rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir}

.include <bsd.prog.mk>