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