HAMMER UTIL - Version 4 part 2/many - UNDO FIFO layout work.
[dragonfly.git] / nrelease / Makefile
blobb043d234631f6cf50b8e78171b519fca9cc62574
1 # $DragonFly: src/nrelease/Makefile,v 1.90 2008/09/01 21:20:30 swildner Exp $
4 #########################################################################
5 # ENHANCEMENTS #
6 #########################################################################
8 # New method e.g. 'make gui release'. A series of enhancement
9 # targes may be specified which set make variables which enhance
10 # the build in various ways.
12 gui installer img:
14 #########################################################################
15 # SETUP #
16 #########################################################################
18 ISODIR?= /usr/release
19 ISOROOT?= ${ISODIR}/root
20 OBJSYS= ${.OBJDIR}/../sys
22 MAKE_JOBS?= $$(sysctl -n hw.ncpu)
24 .if make(gui)
25 KERNCONF ?= DFLYLIVE VKERNEL DFLYLIVE-SMP DFLYLIVE-SMP-NOAPIC
26 .else
27 # XXX makeshift fix to build the right kernel for the (target) architecture
28 # We should configure this in the platform files somehow
29 .if ${MACHINE_ARCH} == "i386"
30 KERNCONF ?= GENERIC VKERNEL
31 .else
32 KERNCONF ?= AMD64_GENERIC
33 .endif
34 .endif
36 PKGSRC_PREFIX?= /usr/pkg
37 PKGBIN_PKG_ADD?= ${PKGSRC_PREFIX}/sbin/pkg_add
38 PKGBIN_PKG_DELETE?= ${PKGSRC_PREFIX}/sbin/pkg_delete
39 PKGBIN_PKG_ADMIN?= ${PKGSRC_PREFIX}/sbin/pkg_admin
40 PKGBIN_MKISOFS?= ${PKGSRC_PREFIX}/bin/mkisofs
41 PKGSRC_PKG_PATH?= ${ISODIR}/packages
42 PKGSRC_BOOTSTRAP_URL?= http://avalon.dragonflybsd.org/DragonFly-pkgsrc-packages/i386/1.12.0-RELEASE-BUILD
43 CVSUP_BOOTSTRAP_KIT?= cvsup-bootstrap-20070716
45 # We use env -i in the chroot, so that environment variables won't
46 # disturb any (pkgsrc) build. This has happened for TARGET_ARCH,
47 # which is used by gmake in completely different context.
49 CHROOT_CMD?= env -i CCVER=${CCVER:Q} /usr/sbin/chroot ${ISOROOT} sh -c
51 # User may specify extra packages in addition to the defaults
53 PKGSRC_EXTRA_PACKAGES?=
55 # Pkgsrc packages to be built and installed on the release ISO
57 PKGSRC_PACKAGES?= pkgtools/pkg_leaves \
58 pkgtools/pkg_tarup \
59 devel/scmgit \
60 net/isc-dhcp4 \
61 net/isc-dhcpd4 \
62 sysutils/cdrtools \
63 ${PKGSRC_EXTRA_PACKAGES}
65 # pkgsrc options to use when building packages
67 PKGSRC_OPTIONS+= MAKE_JOBS=${MAKE_JOBS}
68 PKGSRC_OPTIONS+= WRKOBJDIR=/usr/pkgobj
69 PKGSRC_OPTIONS+= PKG_DEFAULT_OPTIONS='dri inet6'
70 .if !make(gui)
71 PKGSRC_OPTIONS+= PKG_OPTIONS.scmgit=-scmgit-gui
72 .endif
74 # Even though buildiso wipes the packages, our check target has to run
75 # first and old packages (listed as they appear in pkg_info) must be
76 # cleaned out in order for the pkg_add -n test we use in the check target
77 # to operate properly.
79 OLD_PKGSRC_PACKAGES?= cdrtools-2.01.01.27nb1 \
80 cdrecord-2.00.3nb2 \
81 bootstrap-kit-20070205 \
82 dfuibe_installer-1.1.6 \
83 gettext-lib-0.14.5 \
84 dfuibe_installer-1.1.7nb1 \
85 dfuife_curses-1.5 \
86 gettext-lib-0.14.6 \
87 gettext-tools-0.14.6nb1 \
88 libaura-3.1 \
89 libdfui-4.2 \
90 libinstaller-5.1 \
91 bootstrap-kit-20080211 \
92 cdrtools-ossdvd-2.01.1.36nb2 \
93 isc-dhcp-base-4.0.0 \
94 isc-dhcp-server-4.0.0
96 # Specify which root skeletons are required, and let the user include
97 # their own. They are copied into ISODIR during the `customizeiso'
98 # target; each overwrites the last.
100 REQ_ROOTSKELS= ${.CURDIR}/root
101 ROOTSKELS?= ${REQ_ROOTSKELS}
103 .if make(gui)
104 ISOFILE?= ${ISODIR}/dfly-gui.iso
105 IMGFILE?= ${ISODIR}/dfly-gui.img
106 PKGSRC_PACKAGES+= meta-pkgs/modular-xorg-apps \
107 meta-pkgs/modular-xorg-drivers \
108 meta-pkgs/modular-xorg-fonts \
109 meta-pkgs/modular-xorg-libs \
110 wm/fluxbox \
111 wm/fvwm \
112 www/firefox \
113 print/xpdf \
114 shells/zsh \
115 editors/emacs \
116 editors/vim \
117 chat/pidgin \
118 chat/irssi \
119 chat/xchat \
120 x11/modular-xorg-server \
121 x11/rxvt-unicode \
122 x11/eterm \
123 lang/perl5 \
124 editors/nano \
125 shells/bash \
126 devel/exctags \
127 archivers/zip \
128 security/sudo \
129 www/links-gui \
130 net/nmap \
131 net/wget \
132 fonts/terminus-font \
133 net/rsync \
134 sysutils/idesk \
135 time/asclock \
136 misc/screen
137 ROOTSKELS+= ${.CURDIR}/gui
138 .endif
140 ISOFILE ?= ${ISODIR}/dfly.iso
141 IMGFILE ?= ${ISODIR}/dfly.img
143 IMGMNT ?= ${ISODIR}/mnt
145 # USB umass now probes starting at da8, so the usb stick is
146 # probably sitting on da8.
148 IMGUSBDEV ?= da8
150 # note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
151 # the additional '/nrelease' manually, as a safety measure.
153 NRLOBJDIR?= /usr/obj
155 #########################################################################
156 # BASE ISO TARGETS #
157 #########################################################################
159 release: check clean buildworld1 buildkernel1 \
160 buildiso srcs customizeiso mklocatedb \
161 mkiso mkimg
163 quickrel: check clean buildworld2 buildkernel2 \
164 buildiso srcs customizeiso mklocatedb \
165 mkiso mkimg
167 realquickrel: check clean \
168 buildiso srcs customizeiso mklocatedb \
169 mkiso mkimg
171 restartpkgs: check customizeiso mklocatedb mkiso mkimg
173 quick: quickrel
175 realquick: realquickrel
178 #########################################################################
179 # CORE SUPPORT TARGETS #
180 #########################################################################
182 check:
183 .if !exists(${PKGBIN_PKG_ADMIN})
184 @echo "You never bootstrapped pkgsrc on your machine. You can install it with:"
185 @echo " make pkgsrc_bootstrap"
186 .endif
187 .if !exists(${PKGSRC_PKG_PATH}/${CVSUP_BOOTSTRAP_KIT}.tgz)
188 @echo "The cvsup bootstrap kit is not installed. You can install it with:"
189 @echo " make fetch"
190 .endif
191 .if !exists (${PKGBIN_MKISOFS})
192 @echo
193 @echo "Your machine does not have cdrtools installed. You can install it with:"
194 @echo " make pkgsrc_cdrecord"
195 .endif
196 .if !defined(PKGSRC_PATH)
197 @echo "Please set PKGSRC_PATH to the pkgsrc tree that shall be used for"
198 @echo "package building. For example /usr/pkgsrc. See the Makefile"
199 @echo "in /usr if you are unfamiliar with pkgsrc."
200 .endif
201 .if !exists(${PKGSRC_PKG_PATH}/${CVSUP_BOOTSTRAP_KIT}.tgz)
202 @exit 1
203 .endif
204 .if !exists (${PKGBIN_MKISOFS})
205 @exit 1
206 .endif
207 .if !defined(PKGSRC_PATH)
208 @exit 1
209 .endif
211 buildworld1 buildworld2:
212 cd ${.CURDIR}/..; \
213 ${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
214 make -j ${MAKE_JOBS} -DWANT_INSTALLER ${.TARGET:C/build(.*)2/quick\1/:C/1//}
216 buildkernel1 buildkernel2:
217 .if make(gui)
218 cd ${.CURDIR}/..; \
219 for kernconf in ${KERNCONF}; do \
220 ${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
221 make -j ${MAKE_JOBS} ${.TARGET:C/build(.*)2/quick\1/:C/1//} \
222 KERNCONF=$${kernconf} KERNCONFDIR=${.CURDIR}/gui/root; \
223 done
224 .else
225 cd ${.CURDIR}/..; \
226 first=; \
227 for kernconf in ${KERNCONF}; do \
228 ${WORLD_CCVER:C/^..*$/WORLD_CCVER=/}${WORLD_CCVER} \
229 make -j ${MAKE_JOBS} ${.TARGET:C/build(.*)2/quick\1/:C/1//} \
230 KERNCONF=$${kernconf} \
231 $${first:+-DNO_MODULES}; \
232 first=done; \
233 done
234 .endif
236 # note that we do not want to mess with any /usr/obj directories not related
237 # to buildworld, buildkernel, or nrelease, so we must supply the proper
238 # MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
239 # buildkernel mechanism.
241 buildiso:
242 if [ ! -d ${ISOROOT} ]; then mkdir -p ${ISOROOT}; fi
243 if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
244 ( cd ${.CURDIR}/..; make -DWANT_INSTALLER DESTDIR=${ISOROOT} installworld )
245 ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease \
246 make -m ${.CURDIR}/../share/mk DESTDIR=${ISOROOT} distribution )
247 cpdup ${ISOROOT}/etc ${ISOROOT}/etc.hdd
248 .if make(gui)
249 if [ ! -d ${ISOROOT}/kernel.smp/boot ]; then mkdir -p ${ISOROOT}/kernel.smp/boot; fi
250 cd ${.CURDIR}/..; \
251 make installkernel DESTDIR=${ISOROOT} \
252 KERNCONF=DFLYLIVE DESTKERNNAME=kernel KERNCONFDIR=${.CURDIR}/gui/root; \
253 cd ${.CURDIR}/..; \
254 make installkernel DESTDIR=${ISOROOT} \
255 KERNCONF=VKERNEL DESTKERNNAME=kernel.VKERNEL -DNO_MODULES KERNCONFDIR=${.CURDIR}/gui/root; \
256 cd ${.CURDIR}/..; \
257 make installkernel DESTDIR=${ISOROOT}/kernel.smp \
258 KERNCONF=DFLYLIVE-SMP DESTKERNNAME=kernel KERNCONFDIR=${.CURDIR}/gui/root; \
259 cd ${.CURDIR}/..; \
260 make installkernel DESTDIR=${ISOROOT}/kernel.smp \
261 KERNCONF=DFLYLIVE-SMP-NOAPIC DESTKERNNAME=kernel.noapic \
262 KERNCONFDIR=${.CURDIR}/gui/root -DNO_MODULES;
263 .else
264 cd ${.CURDIR}/..; \
265 first=; \
266 for kernconf in ${KERNCONF}; do \
267 make DESTDIR=${ISOROOT} \
268 installkernel KERNCONF=$${kernconf} \
269 $${first:+DESTKERNNAME=kernel.$${kernconf}} \
270 $${first:+-DNO_MODULES}; \
271 first=done; \
272 done
273 .endif
274 ln -s kernel ${ISOROOT}/boot/kernel.BOOTP
275 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
276 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
277 dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
279 # Release CD: Kernel sources (~16M) and the full pkgsrc tree (~27M)
280 # Release DVD: Full sources (~90M) and the full pkgsrc tree (~27M)
282 srcs:
283 .if !defined(WITHOUT_SRCS)
284 rm -f ${ISOROOT}/usr/pkgsrc-git.tgz
285 rm -f ${ISOROOT}/usr/pkgsrc
286 mkdir -p ${ISOROOT}/usr/pkgsrc
287 cd ${ISOROOT}/usr/pkgsrc && git init
288 cd ${ISOROOT}/usr/pkgsrc && \
289 git remote add origin git://git.dragonflybsd.org/pkgsrc.git
290 cd ${ISOROOT}/usr/pkgsrc && git fetch origin
291 cd ${ISOROOT}/usr/pkgsrc && git branch vendor origin/vendor
292 cd ${ISOROOT}/usr/pkgsrc && git gc
293 .if make(gui)
294 rm -f ${ISOROOT}/usr/src-git.tgz
295 rm -rf ${ISOROOT}/usr/src
296 mkdir -p ${ISOROOT}/usr/src
297 cd ${ISOROOT}/usr/src && git init
298 cd ${ISOROOT}/usr/src && \
299 git remote add origin git://git.dragonflybsd.org/dragonfly.git
300 cd ${ISOROOT}/usr/src && git fetch origin
301 cd ${ISOROOT}/usr/src && git branch master origin/master
302 cd ${ISOROOT}/usr/src && git gc
303 .else
304 rm -f ${ISOROOT}/usr/src-sys.tgz
305 cd ${.CURDIR}/.. && tar --exclude .git --exclude CVS -s '/^\./src/' \
306 -czf ${ISOROOT}/usr/src-sys.tgz ./Makefile ./Makefile.inc1 ./sys
307 .endif
308 .endif
310 # Customize the ISO by copying rootskels in reverse priority order,
311 # building packages, and doing other post-install tasks.
313 customizeiso:
314 # Copy the rootskels. Allow sources to be owned by someone other
315 # then root (as is common when checked out via git).
317 .for ROOTSKEL in ${ROOTSKELS}
318 cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
319 @test -O ${.CURDIR} || echo "chowning copied files to root:wheel"
320 @test -O ${.CURDIR} || ((cd ${ROOTSKEL} && find .) | fgrep -v cpignore | (cd ${ISOROOT} && xargs chown root:wheel))
321 .endfor
322 (cd ${PKGSRC_PKG_PATH}; tar xzpf ${CVSUP_BOOTSTRAP_KIT}.tgz)
323 cp -p ${PKGSRC_PKG_PATH}/${CVSUP_BOOTSTRAP_KIT}/usr/local/bin/cvsup ${ISOROOT}/usr/local/bin/cvsup
324 cp -p ${PKGSRC_PKG_PATH}/${CVSUP_BOOTSTRAP_KIT}/usr/local/man/man1/cvsup.1 ${ISOROOT}/usr/local/man/man1/cvsup.1
325 pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
326 .for UPGRADE_ITEM in Makefile \
327 etc.${MACHINE_ARCH} \
328 isdn/Makefile \
329 rc.d/Makefile \
330 periodic/Makefile \
331 periodic/daily/Makefile \
332 periodic/security/Makefile \
333 periodic/weekly/Makefile \
334 periodic/monthly/Makefile
335 cp -R ${.CURDIR}/../etc/${UPGRADE_ITEM} ${ISOROOT}/etc/${UPGRADE_ITEM}
336 .endfor
338 # Setup some things & mount pkgsrc tree. Use defensive umounts and
339 # rm -rf's to allow restarts. Allow /usr/pkgsrc to be read-only.
341 # If we did not get past the bootstrap we clean out the entire
342 # /usr/pkg infrastructure. Otherwise we attempt to pick up where
343 # we left off.
345 cp -p /etc/resolv.conf ${ISOROOT}/etc
346 ${CHROOT_CMD} "ldconfig -elf /usr/lib /usr/lib/gcc* /usr/lib/compat"
347 -@umount ${ISOROOT}/usr/pkgsrc/distfiles
348 -@umount ${ISOROOT}/usr/pkgsrc
349 -@umount ${ISOROOT}/dev
350 mkdir -p ${ISODIR}/distfiles
351 rm -rf ${ISOROOT}/usr/pkgobj
353 # Mount /usr/pkgsrc, make sure /usr/pkgsrc/distfiles is writable.
354 # Make /usr/pkgsrc read-only for safety, else a failed umount and
355 # our rm -rf will do bad things.
357 mkdir -p ${ISOROOT}/usr/pkgobj
358 mkdir -p ${ISOROOT}/usr/pkgobj/bootstrap
359 mkdir -p ${ISOROOT}/usr/pkgsrc
360 mount_null -o ro ${PKGSRC_PATH} ${ISOROOT}/usr/pkgsrc
361 mount_null /dev ${ISOROOT}/dev
362 cp /etc/shells ${ISOROOT}/usr/pkgsrc/distfiles/.test > /dev/null 2>&1 \
363 || mount_null ${ISODIR}/distfiles ${ISOROOT}/usr/pkgsrc/distfiles
365 # Bootstrap, if not already installed, and add licenses needed
366 # for the gui release
368 test -e ${ISODIR}/.didbootstrap || \
369 rm -rf ${ISOROOT}/usr/pkg ${ISOROOT}/var/db/pkg \
370 ${ISOROOT}/var/db/pkg.refcount
371 test -e ${ISODIR}/.didbootstrap || \
372 ${CHROOT_CMD} "cd /usr/pkgsrc/bootstrap; \
373 ./bootstrap --workdir /usr/pkgobj/bootstrap/work"
374 .if make(gui)
375 test -e ${ISODIR}/.didbootstrap || \
376 echo ".ifdef BSD_PKG_MK # added by nrelease" \
377 >> ${ISOROOT}/usr/pkg/etc/mk.conf
378 test -e ${ISODIR}/.didbootstrap || \
379 echo "ACCEPTABLE_LICENSES+=openmotif-license" \
380 >> ${ISOROOT}/usr/pkg/etc/mk.conf
381 test -e ${ISODIR}/.didbootstrap || \
382 echo "ACCEPTABLE_LICENSES+=vim-license" \
383 >> ${ISOROOT}/usr/pkg/etc/mk.conf
384 test -e ${ISODIR}/.didbootstrap || \
385 echo ".endif # added by nrelease" \
386 >> ${ISOROOT}/usr/pkg/etc/mk.conf
387 .endif
388 test -e ${ISODIR}/.didbootstrap || sync
389 test -e ${ISODIR}/.didbootstrap || touch ${ISODIR}/.didbootstrap
391 # Build and install packages, skip packages already installed
393 .for PKG in ${PKGSRC_PACKAGES}
394 ${CHROOT_CMD} "cd /usr/pkgsrc/${PKG} && \
395 (bmake check > /dev/null 2>&1 || \
396 bmake ${PKGSRC_OPTIONS} clean build install)"
397 .endfor
399 # Remove packages which nothing depends on and clean up
401 ${CHROOT_CMD} "pkg_leaves | xargs pkg_delete -R"
402 -umount ${ISOROOT}/usr/pkgsrc/distfiles
403 umount ${ISOROOT}/dev
404 umount ${ISOROOT}/usr/pkgsrc
405 rm -rf ${ISOROOT}/usr/pkgobj
406 rm -f ${ISOROOT}/etc/resolv.conf
407 makewhatis ${ISOROOT}/usr/local/man
408 makewhatis ${ISOROOT}/usr/pkg/man
410 # So locate works
412 mklocatedb:
413 ( find -s ${ISOROOT} -path ${ISOROOT}/tmp -or \
414 -path ${ISOROOT}/usr/tmp -or -path ${ISOROOT}/var/tmp \
415 -prune -o -print | sed -e 's#^${ISOROOT}##g' | \
416 /usr/libexec/locate.mklocatedb \
417 -presort >${ISOROOT}/var/db/locate.database )
419 mkiso:
420 ( cd ${ISOROOT}; ${PKGBIN_MKISOFS} -b boot/cdboot -no-emul-boot \
421 -R -J -o ${ISOFILE} \
422 -V "DragonFly `${.CURDIR}/../tools/gitrev.sh | cut -c -22`" . )
425 mkimg:
426 .if make(img)
427 if [ ! -d ${IMGMNT} ]; then mkdir -p ${IMGMNT}; fi
428 -if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; \
429 vnconfig -u `cat ${ISODIR}/vn.which`; fi
430 @echo "STEP: determine required image size"
431 sz=`du -ck ${ISOROOT} | tail -n 1 | cut -f 1`; \
432 sz=`bc -e "(($${sz}) / 1024) * 1.15" -equit | cut -f1 -d.`; \
433 dd if=/dev/zero of=${IMGFILE} bs=1m count=$${sz};
434 fdisk -IB -p ${IMGFILE}
435 @echo "STEP: determine free vn device"
436 vnconfig -l | grep "not in use" | head -n 1 | \
437 cut -f 1 -d: > ${ISODIR}/vn.which
438 vnconfig -e -s labels `cat ${ISODIR}/vn.which` ${IMGFILE}
439 @echo "STEP: write standard disklabel"
440 disklabel -w -r `cat ${ISODIR}/vn.which`s1 auto
441 @echo "STEP: read disklabel back"
442 disklabel -r `cat ${ISODIR}/vn.which`s1 > ${IMGFILE}.label
443 @echo "STEP: determine number of sectors of whole disk"
444 secs=`tail -n 1 ${IMGFILE}.label | cut -f 3 -w`; \
445 echo " a: $${secs} 0 4.2BSD" >> ${IMGFILE}.label;
446 @echo "STEP: write modified disklabel back"
447 disklabel -R -r `cat ${ISODIR}/vn.which`s1 ${IMGFILE}.label
448 rm ${IMGFILE}.label
449 @echo "STEP: write bootsector"
450 disklabel -B `cat ${ISODIR}/vn.which`s1
451 boot0cfg -B -o noupdate `cat ${ISODIR}/vn.which`
452 newfs /dev/`cat ${ISODIR}/vn.which`s1a
453 mount /dev/`cat ${ISODIR}/vn.which`s1a ${IMGMNT}
454 cpdup ${ISOROOT} ${IMGMNT}
455 @echo "STEP: fixup ${IMGMNT}/etc/fstab"
456 echo "/dev/${IMGUSBDEV}s1a / ufs rw,noatime 0 0" > ${IMGMNT}/etc/fstab
457 echo "proc /proc procfs rw 0 0" >> ${IMGMNT}/etc/fstab
458 @echo "STEP: fixup ${IMGMNT}/boot/loader.conf"
459 -fgrep -v kernel_options ${IMGMNT}/boot/loader.conf > ${IMGMNT}/boot/loader.conf.new
460 echo 'vfs.root.mountfrom="ufs:${IMGUSBDEV}s1a"' >> ${IMGMNT}/boot/loader.conf.new
461 mv ${IMGMNT}/boot/loader.conf.new ${IMGMNT}/boot/loader.conf
462 @echo "STEP: cleanup"
463 df ${IMGMNT}
464 umount ${IMGMNT}
465 vnconfig -u `cat ${ISODIR}/vn.which`
466 rm -f ${ISODIR}/vn.which
467 rmdir ${IMGMNT}
468 @echo "STEP: done"
469 .endif
471 clean:
472 -umount ${ISOROOT}/usr/pkgsrc/distfiles > /dev/null 2>&1
473 -umount ${ISOROOT}/usr/pkgsrc > /dev/null 2>&1
474 -umount ${ISOROOT}/dev > /dev/null 2>&1
475 -if [ -f ${ISODIR}/vn.which ]; then umount ${IMGMNT}; \
476 vnconfig -u `cat ${ISODIR}/vn.which`; fi
477 if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
478 rm -rf ${ISOROOT}
479 rm -rf ${NRLOBJDIR}/nrelease
480 rm -f ${ISODIR}/.didbootstrap ${ISODIR}/vn.which
482 realclean: clean
483 rm -rf ${OBJSYS}/${KERNCONF}
485 # do not use PKGSRC_PKG_PATH here, we do not want to destroy an
486 # override location.
488 rm -rf ${ISODIR}/packages
489 rm -rf ${ISODIR}/distfiles
491 fetch:
492 @if [ ! -d ${PKGSRC_PKG_PATH} ]; then mkdir -p ${PKGSRC_PKG_PATH}; fi
493 .if !exists(${PKGSRC_PKG_PATH}/${CVSUP_BOOTSTRAP_KIT}.tgz)
494 (cd ${PKGSRC_PKG_PATH}; fetch ${PKGSRC_BOOTSTRAP_URL}/${CVSUP_BOOTSTRAP_KIT}.tgz)
495 .endif
497 pkgsrc_bootstrap:
498 .if !exists(${PKGSRC_PKG_PATH}/${PKGSRC_BOOTSTRAP_KIT}.tgz)
499 mkdir -p /usr/release/bootstrap
500 (cd ${PKGSRC_PATH}/bootstrap; ./bootstrap --workdir /usr/release/bootstrap)
501 .endif
503 pkgsrc_cdrecord:
504 .if !exists (${PKGBIN_MKISOFS})
505 (cd ${PKGSRC_PATH}/sysutils/cdrtools; bmake clean build install)
506 .endif
508 help all:
509 @echo "make [gui] release - complete build from scratch"
510 @echo "make [gui] quick - attempt to do an incremental rebuild"
511 @echo "make [gui] realquick - attempt to restart after world & kernel"
512 @echo "make [gui] restartpkgs - attempt to restart at the pkg building stage"
513 @echo ""
514 @echo "Extra packages may be specified with PKGSRC_EXTRA_PACKAGES"
516 .PHONY: release quickrel realquickrel
517 .PHONY: installer
518 .PHONY: quick realquick
519 .PHONY: check buildworld1 buildworld2
520 .PHONY: buildkernel1 buildkernel2 buildiso customizeiso mklocatedb mkiso mkimg
521 .PHONY: clean realclean fetch help all srcs
523 .include <bsd.prog.mk>