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