Clean up some register keyword usage.
[dragonfly.git] / nrelease / Makefile
... / ...
CommitLineData
1# $DragonFly: src/nrelease/Makefile,v 1.31 2005/04/10 20:27:32 drhodus Exp $
2#
3
4ISODIR ?= /usr/release
5ISOFILE ?= ${ISODIR}/dfly.iso
6ISOROOT = ${ISODIR}/root
7OBJSYS= ${.OBJDIR}/../sys
8KERNCONF ?= GENERIC
9
10# Specify which packages are required on the ISO, and let the user
11# specify additional packages to include. During the `pkgaddiso'
12# target, the packages are obtained from PACKAGES_LOC.
13#
14REQ_PACKAGES= cdrtools-2.01 cvsup-without-gui-16.1h
15REL_PACKAGES?= ${REQ_PACKAGES} ${EXTRA_PACKAGES}
16.if defined(PACKAGES)
17PACKAGES_LOC?= ${PACKAGES}/All
18.else
19PACKAGES_LOC?= /usr/ports/packages/All
20.endif
21
22# Specify which root skeletons are required, and let the user include
23# their own. They are copied into ISODIR during the `pkgcustomizeiso'
24# target; each overwrites the last.
25#
26REQ_ROOTSKELS= ${.CURDIR}/root
27ROOTSKELS?= ${REQ_ROOTSKELS} ${EXTRA_ROOTSKELS}
28
29# note: we use the '${NRLOBJDIR}/nrelease' construct, that is we add
30# the additional '/nrelease' manually, as a safety measure.
31#
32NRLOBJDIR?= /usr/obj
33
34WORLD_CCVER ?= ${CCVER}
35KERNEL_CCVER ?= ${CCVER}
36
37#########################################################################
38# BASE ISO TARGETS #
39#########################################################################
40
41release: check clean buildworld1 buildkernel1 \
42 buildiso customizeiso pkgaddiso mklocatedb mkiso
43
44quickrel: check clean buildworld2 buildkernel2 \
45 buildiso customizeiso pkgaddiso mklocatedb mkiso
46
47realquickrel: check clean \
48 buildiso customizeiso pkgaddiso mklocatedb mkiso
49
50livecd: check_mkisofs clean buildiso mkiso
51
52#########################################################################
53# ISO TARGETS WITH INSTALLER #
54#########################################################################
55
56INSTALLER_PKGS= libaura-3.1 libdfui-4.1 libinstaller-5.1 \
57 dfuibe_installer-1.1.6 dfuife_curses-1.5 \
58 thttpd-notimeout-2.24 dfuife_cgi-1.4
59INSTALLER_SKELS= installer
60
61INSTALLER_ENV= EXTRA_PACKAGES="${INSTALLER_PKGS} ${EXTRA_PACKAGES}" \
62 EXTRA_ROOTSKELS="${INSTALLER_SKELS} ${EXTRA_ROOTSKELS}"
63
64installer_check:
65 @${INSTALLER_ENV} ${MAKE} check
66
67installer_fetchpkgs:
68 @${INSTALLER_ENV} ${MAKE} fetchpkgs
69
70installer_release:
71 ${INSTALLER_ENV} ${MAKE} release
72
73installer_quickrel:
74 ${INSTALLER_ENV} ${MAKE} quickrel
75
76installer_realquickrel:
77 ${INSTALLER_ENV} ${MAKE} realquickrel
78
79#########################################################################
80# HELPER TARGETS #
81#########################################################################
82
83check: check_mkisofs check_installer
84
85check_mkisofs:
86 @if [ ! -f /usr/local/bin/mkisofs ]; then \
87 echo "You need to install the sysutils/cdrtools port for"; \
88 echo "this target"; \
89 exit 1; \
90 fi
91
92check_installer:
93.for PKG in ${REL_PACKAGES}
94 @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
95 echo "Unable to find ${PACKAGES_LOC}/${PKG}.tgz. This is"; \
96 echo "typically accomplished by cd'ing into the appropriate"; \
97 echo "port and typing 'make installer_fetchpkgs'"; \
98 echo ""; \
99 echo "If you are trying to build the installer, the"; \
100 echo "required packages can be obtained from:"; \
101 echo "http://www.bsdinstaller.org/packages/"; \
102 exit 1; \
103 fi
104.endfor
105 @echo "check: all preqs found"
106
107fetchpkgs:
108.for PKG in ${REL_PACKAGES}
109 @if [ ! -f ${PACKAGES_LOC}/${PKG}.tgz ]; then \
110 cd ${PACKAGES_LOC} && \
111 echo "fetching ${PKG}..." && \
112 fetch http://www.bsdinstaller.org/packages/${PKG}.tgz; \
113 fi
114.endfor
115
116buildworld1:
117 ( cd ${.CURDIR}/..; CCVER=${WORLD_CCVER} make buildworld )
118
119buildworld2:
120 ( cd ${.CURDIR}/..; CCVER=${WORLD_CCVER} make -DNOTOOLS -DNOCLEAN buildworld )
121
122buildkernel1:
123 ( cd ${.CURDIR}/..; CCVER=${KERNEL_CCVER} make buildkernel KERNCONF=${KERNCONF} )
124
125buildkernel2:
126 ( cd ${.CURDIR}/..; CCVER=${KERNEL_CCVER} make -DNOCLEAN buildkernel KERNCONF=${KERNCONF} )
127
128# note that we do not want to mess with any /usr/obj directories not related
129# to buildworld, buildkernel, or nrelease, so we must supply the proper
130# MAKEOBJDIRPREFIX for targets that are not run through the buildworld and
131# buildkernel mechanism.
132#
133buildiso:
134 if [ ! -d ${ISOROOT} ]; then mkdir -p ${ISOROOT}; fi
135 if [ ! -d ${NRLOBJDIR}/nrelease ]; then mkdir -p ${NRLOBJDIR}/nrelease; fi
136 ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} installworld )
137 ( cd ${.CURDIR}/../etc; MAKEOBJDIRPREFIX=${NRLOBJDIR}/nrelease make DESTDIR=${ISOROOT} distribution )
138 cpdup ${ISOROOT}/etc ${ISOROOT}/etc.hdd
139 ( cd ${.CURDIR}/..; make DESTDIR=${ISOROOT} \
140 installkernel KERNCONF=${KERNCONF} )
141 ln -s kernel ${ISOROOT}/kernel.BOOTP
142 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.local.dist -p ${ISOROOT}/usr/local/
143 mtree -deU -f ${.CURDIR}/../etc/mtree/BSD.var.dist -p ${ISOROOT}/var
144 dev_mkdb -f ${ISOROOT}/var/run/dev.db ${ISOROOT}/dev
145
146customizeiso:
147.for ROOTSKEL in ${ROOTSKELS}
148 cpdup -X cpignore -o ${ROOTSKEL} ${ISOROOT}
149.endfor
150 rm -rf `find ${ISOROOT} -type d -name CVS -print`
151 rm -rf ${ISOROOT}/usr/local/share/pristine
152 pwd_mkdb -p -d ${ISOROOT}/etc ${ISOROOT}/etc/master.passwd
153
154pkgcleaniso:
155 rm -f ${ISOROOT}/tmp/chrootscript
156 echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
157.for PKG in ${REL_PACKAGES}
158 echo "pkg_delete -f ${PKG}" >> ${ISOROOT}/tmp/chrootscript
159.endfor
160 chmod a+x ${ISOROOT}/tmp/chrootscript
161 chroot ${ISOROOT}/ /tmp/chrootscript || exit 0
162 rm ${ISOROOT}/tmp/chrootscript
163
164pkgaddiso:
165 rm -f ${ISOROOT}/tmp/chrootscript
166 echo "#!/bin/sh" > ${ISOROOT}/tmp/chrootscript
167.for PKG in ${REL_PACKAGES}
168 cp ${PACKAGES_LOC}/${PKG}.tgz ${ISOROOT}/tmp/${PKG}.tgz
169 echo "echo 'Installing package ${PKG}...'" >> ${ISOROOT}/tmp/chrootscript
170 echo "pkg_add /tmp/${PKG}.tgz" >> ${ISOROOT}/tmp/chrootscript
171.endfor
172 chmod a+x ${ISOROOT}/tmp/chrootscript
173 chroot ${ISOROOT}/ /tmp/chrootscript
174 rm ${ISOROOT}/tmp/chrootscript
175.for PKG in ${REL_PACKAGES}
176 rm -f ${ISOROOT}/tmp/${PKG}.tgz
177.endfor
178
179mklocatedb:
180 ( find -s ${ISOROOT} -path ${ISOROOT}/tmp -or \
181 -path ${ISOROOT}/usr/tmp -or -path ${ISOROOT}/var/tmp \
182 -prune -o -print | sed -e 's#^${ISOROOT}##g' | \
183 /usr/libexec/locate.mklocatedb \
184 -presort >${ISOROOT}/var/db/locate.database )
185
186mkiso:
187 ( cd ${ISOROOT}; mkisofs -b boot/cdboot -no-emul-boot \
188 -R -J -V DragonFly -o ${ISOFILE} . )
189
190clean:
191 if [ -d ${ISOROOT} ]; then chflags -R noschg ${ISOROOT}; fi
192 if [ -d ${ISOROOT} ]; then rm -rf ${ISOROOT}/*; fi
193 if [ -d ${NRLOBJDIR}/nrelease ]; then rm -rf ${NRLOBJDIR}/nrelease; fi
194
195realclean: clean
196 rm -rf ${OBJSYS}/${KERNCONF}
197
198.include <bsd.prog.mk>