Makefile revision 1.221 1 1.221 itojun # $NetBSD: Makefile,v 1.221 2002/05/30 21:40:47 itojun 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.96 cjs # into a release(7) format in RELEASEDIR. Any port-dependent
31 1.96 cjs # stuff for this target is found in etc.${MACHINE}/Makefile.inc.
32 1.106 cjs # release: a synonym for `snapshot'
33 1.96 cjs
34 1.199 tv # setting NOOBJ prevents "make obj" from doing anything;
35 1.199 tv # an objdir would break the installation stuff below
36 1.199 tv NOOBJ= # defined
37 1.199 tv
38 1.155 thorpej # For NO_SENDMAIL, INSTPRIV, MKCRYPTO
39 1.90 kim .include <bsd.own.mk>
40 1.187 jmc
41 1.211 lukem # For KERNSRCDIR, KERNOBJDIR, ...
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.206 bjh21 MAKESUMS= CKSUM=${CKSUM:Q} sh ../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.161 hubertf MKISOFS?= mkisofs
55 1.161 hubertf MKISOFS_FLAGS+= -J -l \
56 1.161 hubertf -r -T -v \
57 1.161 hubertf -P "The NetBSD Project" \
58 1.164 hubertf -m "${RELEASEDIR}/installation/cdrom"
59 1.1 cgd
60 1.80 jonathan # MD Makefile.inc may append MD targets to BIN[123]. Make sure all
61 1.80 jonathan # are empty, to preserve the old semantics of setting them below with "=".
62 1.200 lukem BIN1=
63 1.80 jonathan BIN2=
64 1.80 jonathan BIN3=
65 1.80 jonathan
66 1.117 simonb # Directories to build in ${RELEASEDIR}. MD Makefile.inc files can
67 1.117 simonb # add to this.
68 1.117 simonb # NOTE: Parent directories must be listed before subdirectories.
69 1.217 lukem INSTALLATION_DIRS= binary binary/sets binary/kernel installation
70 1.117 simonb
71 1.71 cjs .if exists(etc.${MACHINE}/Makefile.inc)
72 1.71 cjs .include "etc.${MACHINE}/Makefile.inc"
73 1.71 cjs .endif
74 1.32 jtc
75 1.21 cgd # -rw-r--r--
76 1.21 cgd BINOWN= root
77 1.21 cgd BINGRP= wheel
78 1.184 lukem BIN1+= bootptab changelist csh.cshrc csh.login csh.logout daily \
79 1.131 veego daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \
80 1.131 veego gettytab group hosts hosts.lpd inetd.conf lkm.conf \
81 1.131 veego mailer.conf man.conf monthly monthly.conf mrouted.conf \
82 1.151 fvdl netconfig networks newsyslog.conf nsswitch.conf ntp.conf \
83 1.213 perry passwd.conf phones printcap profile protocols rbootd.conf rc rc.conf \
84 1.159 lukem rc.lkm rc.local rc.subr rc.shutdown remote rpc \
85 1.142 tsarna security security.conf services shells sysctl.conf syslog.conf \
86 1.142 tsarna weekly weekly.conf wscons.conf \
87 1.109 drochner etc.${MACHINE}/ttys etc.${MACHINE}/disktab
88 1.105 mycroft
89 1.121 fvdl .if (${MACHINE_ARCH} == "m68k") || \
90 1.105 mycroft (${MACHINE_ARCH} == "ns32k") || \
91 1.208 wiz (${MACHINE_ARCH} == "vax")
92 1.129 christos BIN1+= ld.so.conf
93 1.129 christos .elif exists(etc.${MACHINE_ARCH}/ld.so.conf)
94 1.132 jlam BIN1+= etc.${MACHINE_ARCH}/ld.so.conf
95 1.152 perry .endif
96 1.152 perry
97 1.152 perry .if exists(etc.${MACHINE_ARCH}/ttyaction)
98 1.152 perry BIN1+= etc.${MACHINE_ARCH}/ttyaction
99 1.105 mycroft .endif
100 1.1 cgd
101 1.46 deraadt # -rw-rw-r--
102 1.80 jonathan BIN2+= motd
103 1.1 cgd
104 1.77 mycroft # -rw-------
105 1.80 jonathan BIN3+= hosts.equiv
106 1.77 mycroft
107 1.144 thorpej NAMEDB= 127 root.cache named.conf localhost loopback.v6
108 1.1 cgd
109 1.220 itojun .if make(install-etc-files) # {
110 1.221 itojun .include <bsd.endian.mk>
111 1.191 tv .if ${TARGET_ENDIANNESS} == "1234"
112 1.221 itojun TARGET_ENDIANNESS= -L
113 1.191 tv .elif ${TARGET_ENDIANNESS} == "4321"
114 1.221 itojun TARGET_ENDIANNESS= -B
115 1.170 jdolecek .else
116 1.170 jdolecek TARGET_ENDIANNESS=
117 1.191 tv .endif
118 1.220 itojun .endif # install-etc-files # }
119 1.149 sjg
120 1.149 sjg obj:
121 1.149 sjg mkdir -p ${KERNOBJDIR}
122 1.149 sjg
123 1.204 lukem distribution: check_DESTDIR .WAIT distrib-dirs
124 1.182 chs .if !defined(DISTRIBUTION_DONE)
125 1.87 perry .if !defined(INSTALL_DONE)
126 1.107 scottr (cd ..; ${MAKE} _DISTRIB= includes)
127 1.107 scottr (cd ..; ${MAKE} _DISTRIB= install)
128 1.200 lukem .endif # !INSTALL_DONE
129 1.193 thorpej ${MAKE} install-etc-files
130 1.200 lukem .endif # !DISTRIBUTION_DONE
131 1.193 thorpej
132 1.204 lukem install-etc-files: check_DESTDIR
133 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
134 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
135 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} ${DESTDIR}/etc
136 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 aliases \
137 1.147 itojun ${DESTDIR}/etc/mail
138 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 crontab \
139 1.56 thorpej ${DESTDIR}/var/cron/tabs/root
140 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
141 1.198 jmc ${PWD_MKDB} -p ${TARGET_ENDIANNESS} -d ${DESTDIR}/ \
142 1.171 simonb ${DESTDIR}/etc/master.passwd
143 1.194 perry .if defined(UNPRIVED)
144 1.194 perry echo "${DESTDIR}/etc/passwd type=file mode=0644 uname=root gname=wheel" \
145 1.194 perry | sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
146 1.194 perry echo "${DESTDIR}/etc/pwd.db type=file mode=0644 uname=root gname=wheel" \
147 1.194 perry | sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
148 1.194 perry echo "${DESTDIR}/etc/spwd.db type=file mode=0600 uname=root gname=wheel" \
149 1.194 perry | sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
150 1.200 lukem .endif # UNPRIVED
151 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
152 1.1 cgd MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
153 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 minfree ${DESTDIR}/var/crash
154 1.1 cgd (cd root; \
155 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 644 dot.cshrc \
156 1.1 cgd ${DESTDIR}/root/.cshrc; \
157 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 dot.klogin \
158 1.1 cgd ${DESTDIR}/root/.klogin; \
159 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 644 dot.login \
160 1.1 cgd ${DESTDIR}/root/.login; \
161 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 644 dot.profile \
162 1.1 cgd ${DESTDIR}/root/.profile; \
163 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 644 dot.shrc \
164 1.128 mycroft ${DESTDIR}/root/.shrc; \
165 1.189 perry rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
166 1.202 lukem ${INSTALL_LINK} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
167 1.202 lukem ${INSTALL_LINK} ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
168 1.162 lukem (cd defaults; ${MAKE} install)
169 1.83 mrg (cd mtree; ${MAKE} install)
170 1.63 mikel (cd namedb; \
171 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
172 1.124 simonb ${NAMEDB} ${DESTDIR}/etc/namedb)
173 1.140 lukem (cd rc.d; ${MAKE} install)
174 1.215 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
175 1.215 lukem postinstall ${DESTDIR}/etc
176 1.202 lukem ${INSTALL_SYMLINK} -o root -g wheel -m 755 \
177 1.188 perry ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
178 1.202 lukem ${INSTALL_SYMLINK} -o root -g wheel -m 755 \
179 1.188 perry /usr/sbin/rmt ${DESTDIR}/etc/rmt
180 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g operator -m 664 /dev/null \
181 1.32 jtc ${DESTDIR}/etc/dumpdates
182 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g operator -m 600 /dev/null \
183 1.44 deraadt ${DESTDIR}/etc/skeykeys
184 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 /dev/null \
185 1.127 perry ${DESTDIR}/var/at/at.deny
186 1.202 lukem ${INSTALL_FILE} -o root -g wheel -m 600 /dev/null \
187 1.38 cgd ${DESTDIR}/var/cron/log
188 1.202 lukem ${INSTALL_FILE} -o nobody -g ${BINGRP} -m 664 /dev/null \
189 1.32 jtc ${DESTDIR}/var/db/locate.database
190 1.202 lukem ${INSTALL_FILE} -o uucp -g dialer -m 640 /dev/null \
191 1.113 fair ${DESTDIR}/var/log/aculog
192 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
193 1.69 perry ${DESTDIR}/var/log/authlog
194 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
195 1.32 jtc ${DESTDIR}/var/log/lastlog
196 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
197 1.32 jtc ${DESTDIR}/var/log/lpd-errs
198 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
199 1.32 jtc ${DESTDIR}/var/log/maillog
200 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
201 1.32 jtc ${DESTDIR}/var/log/messages
202 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
203 1.58 lukem ${DESTDIR}/var/log/secure
204 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
205 1.137 mycroft ${DESTDIR}/var/log/sendmail.st
206 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
207 1.32 jtc ${DESTDIR}/var/log/wtmp
208 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
209 1.69 perry ${DESTDIR}/var/log/xferlog
210 1.202 lukem ${INSTALL_FILE} -o daemon -g staff -m 664 /dev/null \
211 1.39 cgd ${DESTDIR}/var/msgs/bounds
212 1.202 lukem ${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
213 1.32 jtc ${DESTDIR}/var/run/utmp
214 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
215 1.81 mrg ${DESTDIR}/var/games/atc_scores
216 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
217 1.81 mrg ${DESTDIR}/var/games/battlestar.log
218 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
219 1.81 mrg ${DESTDIR}/var/games/cfscores
220 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
221 1.82 perry ${DESTDIR}/var/games/criblog
222 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
223 1.81 mrg ${DESTDIR}/var/games/robots_roll
224 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
225 1.81 mrg ${DESTDIR}/var/games/rogue.scores
226 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
227 1.81 mrg ${DESTDIR}/var/games/saillog
228 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
229 1.81 mrg ${DESTDIR}/var/games/snakerawscores
230 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
231 1.81 mrg ${DESTDIR}/var/games/snake.log
232 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
233 1.81 mrg ${DESTDIR}/var/games/tetris.scores
234 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
235 1.81 mrg ${DESTDIR}/var/games/larn/llog12.0
236 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
237 1.81 mrg ${DESTDIR}/var/games/larn/lscore12.0
238 1.202 lukem ${INSTALL_FILE} -o games -g games -m 664 /dev/null \
239 1.81 mrg ${DESTDIR}/var/games/larn/playerids
240 1.165 simonb (cd skel; ${MAKE} distribution)
241 1.62 perry (cd ../usr.bin/mail; ${MAKE} distribution)
242 1.143 perry (cd ../gnu/usr.sbin/postfix/; ${MAKE} distribution)
243 1.155 thorpej .if (${MKCRYPTO} != "no")
244 1.155 thorpej (cd ../usr.bin/ssh; ${MAKE} distribution)
245 1.155 thorpej .endif
246 1.200 lukem .if !defined(NO_SENDMAIL)
247 1.133 tron (cd ../gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
248 1.90 kim .endif
249 1.1 cgd
250 1.204 lukem distrib-dirs: check_DESTDIR
251 1.202 lukem ${INSTALL_DIR} -o root -g wheel -m 755 ${DESTDIR}
252 1.192 perry ${MTREE} -def mtree/NetBSD.dist -p ${DESTDIR}/ -U ${UNPRIVED:D-W}
253 1.189 perry rm -f ${DESTDIR}/sys
254 1.202 lukem ${INSTALL_SYMLINK} -o root -g wheel -m 755 usr/src/sys ${DESTDIR}/sys
255 1.200 lukem
256 1.204 lukem release snapshot: check_DESTDIR check_RELEASEDIR .WAIT \
257 1.218 sommerfe distribution .WAIT snap_pre snap_md_pre .WAIT snap_kern .WAIT snap_md_post
258 1.141 thorpej (cd ../distrib/sets; ${MAKE} sets)
259 1.206 bjh21 ${MAKESUMS} -t ${RELEASEDIR}/binary/kernel '*.gz'
260 1.161 hubertf
261 1.161 hubertf # Standalone target to create a CDROM image after the release
262 1.161 hubertf # was composed. Should be run after "make build" in both src and xsrc
263 1.204 lukem iso-image: check_DESTDIR check_RELEASEDIR .WAIT iso-image_md_post
264 1.161 hubertf
265 1.204 lukem iso-image_mi: check_DESTDIR check_RELEASEDIR .WAIT iso-image_md_pre
266 1.161 hubertf @if ${MKISOFS} --version; then \
267 1.161 hubertf mkdir -p ${RELEASEDIR}/installation/cdrom ; \
268 1.161 hubertf ${MKISOFS} ${MKISOFS_FLAGS} \
269 1.161 hubertf -o ${RELEASEDIR}/installation/cdrom/netbsd-${MACHINE}.iso \
270 1.161 hubertf ${RELEASEDIR} ; \
271 1.206 bjh21 ${MAKESUMS} -t ${RELEASEDIR}/installation/cdrom '*.iso' ; \
272 1.161 hubertf else \
273 1.161 hubertf echo "install pkgsrc/sysutils/cdrecord and type 'make iso-image'." ; \
274 1.161 hubertf fi
275 1.161 hubertf
276 1.161 hubertf # Setup the $RELEASEDIR to produce a bootable CD image:
277 1.204 lukem iso-image_md_pre: check_DESTDIR check_RELEASEDIR
278 1.161 hubertf # nothing here -- look in the machine-dependent Makefile.inc
279 1.161 hubertf
280 1.161 hubertf # Fixup the CD-image to be bootable
281 1.204 lukem iso-image_md_post: check_DESTDIR check_RELEASEDIR .WAIT iso-image_mi
282 1.161 hubertf # nothing here -- look in the machine-dependent Makefile.inc
283 1.41 cgd
284 1.204 lukem snap_pre: check_DESTDIR check_RELEASEDIR
285 1.168 jmc # Could be a mount point, ignore the errors
286 1.167 jmc -/bin/rm -rf ${RELEASEDIR}
287 1.202 lukem ${INSTALL} -d -m 755 ${RELEASEDIR}
288 1.117 simonb .for dir in ${INSTALLATION_DIRS}
289 1.202 lukem ${INSTALL} -d -m 755 ${RELEASEDIR}/${dir}
290 1.117 simonb .endfor
291 1.96 cjs
292 1.196 thorpej # This target builds the kernels specified by each port. A port may
293 1.196 thorpej # specify the following kernels:
294 1.196 thorpej #
295 1.196 thorpej # KERNEL_SETS The list of kernels that will be
296 1.196 thorpej # packaged into sets, named
297 1.196 thorpej # kern-${kernel}.tgz. These kernels
298 1.203 chs # are also placed in the binary/kernel
299 1.196 thorpej # area of the release package as
300 1.196 thorpej # netbsd-${kernel}.gz.
301 1.196 thorpej #
302 1.196 thorpej # EXTRA_KERNELS Additional kernels to place in the
303 1.203 chs # binary/kernel area of the release
304 1.196 thorpej # package as netbsd-${kernel}.gz, but
305 1.196 thorpej # which are not placed into sets. This
306 1.196 thorpej # allows a port to provide e.g. a netbootable
307 1.196 thorpej # installation kernel containing a ramdisk.
308 1.196 thorpej #
309 1.196 thorpej # BUILD_KERNELS Additional kernels to build which are
310 1.196 thorpej # not placed into sets nor into the
311 1.203 chs # binary/kernel area of the release
312 1.196 thorpej # package. These are typically kernels
313 1.196 thorpej # that are built for inclusion only in
314 1.196 thorpej # installation disk/CD-ROM/tape images.
315 1.116 fair #
316 1.197 thorpej # A port may also specify KERNEL_SUFFIXES, which is an optional list
317 1.197 thorpej # of filename suffixes for kernels to include in the kernel sets and
318 1.203 chs # in the binary/kernel area of the release package (e.g. "netbsd" vs.
319 1.197 thorpej # "netbsd.ecoff" and "netbsd.srec"). It is not an error if kernels
320 1.197 thorpej # with these suffixes do not exist in the kernel build directory.
321 1.197 thorpej #
322 1.116 fair GETKERNELAWK= awk '/^config/ {print $$2; found=1} \
323 1.116 fair END{ if (found == 0) print "netbsd"; }'
324 1.96 cjs #
325 1.118 gwr .if !target(snap_kern)
326 1.204 lukem snap_kern: check_DESTDIR check_RELEASEDIR
327 1.201 lukem .if !defined(KERNELS_DONE) # {
328 1.196 thorpej .for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
329 1.125 sommerfe cd ${KERNCONFDIR} && ${CONFIG} \
330 1.179 mrg -b ${KERNOBJDIR}/${configfile:C/.*\///} -s ${KERNSRCDIR} ${configfile}
331 1.201 lukem .if !defined(UPDATE)
332 1.200 lukem cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
333 1.96 cjs .endif
334 1.218 sommerfe cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE}
335 1.196 thorpej .endfor # build kernels
336 1.203 chs .endif # KERNELS_DONE # }
337 1.196 thorpej .for configfile in ${KERNEL_SETS}
338 1.197 thorpej kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile}`; \
339 1.197 thorpej kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
340 1.207 bjh21 kernsuffixes="${KERNEL_SUFFIXES}"; \
341 1.210 lukem cd $${kerndir} && ( \
342 1.214 lukem echo "/set uname=${BINOWN} gname=${BINGRP}"; \
343 1.214 lukem echo ". type=dir optional"; \
344 1.210 lukem for kernel in $${kernlist}; do \
345 1.214 lukem echo "./$${kernel} type=file"; \
346 1.207 bjh21 for s in $${kernsuffixes}; do \
347 1.197 thorpej if [ -f $${kernel}.$${s} ]; then \
348 1.214 lukem echo "./$${kernel}.$${s} type=file"; \
349 1.197 thorpej fi; \
350 1.197 thorpej done; \
351 1.216 lukem done ) | GZIP=-9 ${PAX} -zw \
352 1.216 lukem -M ${UNPRIVED:D-N${NETBSDSRCDIR}/etc} \
353 1.210 lukem -f ${RELEASEDIR}/binary/sets/kern-${configfile}.tgz
354 1.196 thorpej .endfor # make kernel sets
355 1.196 thorpej .for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}
356 1.197 thorpej kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}`; \
357 1.197 thorpej kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
358 1.207 bjh21 kernsuffixes="${KERNEL_SUFFIXES}"; \
359 1.197 thorpej cd $${kerndir} && \
360 1.197 thorpej gziplist=`for kernel in $${kernlist}; do \
361 1.197 thorpej echo "$${kernel}"; \
362 1.207 bjh21 for s in $${kernsuffixes}; do \
363 1.197 thorpej if [ -f $${kernel}.$${s} ]; then \
364 1.197 thorpej echo "$${kernel}.$${s}"; \
365 1.197 thorpej fi; \
366 1.197 thorpej done; \
367 1.197 thorpej done`; \
368 1.197 thorpej for kernel in $${gziplist} ; do \
369 1.114 fair gzip -c -9 < $${kernel} > \
370 1.201 lukem ${RELEASEDIR}/binary/kernel/$${kernel}-${configfile:C/.*\///}.gz ; done
371 1.196 thorpej .endfor # place KERNEL_SETS kernels + EXTRA_KERNELS in binary/kernel/...
372 1.118 gwr .endif # no target(snap_kern)
373 1.108 drochner
374 1.204 lukem snap_md_pre: check_DESTDIR check_RELEASEDIR
375 1.117 simonb # nothing here -- look in the machine-dependent Makefile.inc
376 1.117 simonb
377 1.204 lukem snap_md_post: check_DESTDIR check_RELEASEDIR
378 1.41 cgd # nothing here -- look in the machine-dependent Makefile.inc
379 1.7 cgd
380 1.1 cgd .include <bsd.prog.mk>
381