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