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