Makefile revision 1.212
1#	$NetBSD: Makefile,v 1.212 2002/04/10 15:12:37 lukem Exp $
2#	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
3
4# Environment variables without default values:
5#   DESTDIR must be set before anything in this file will work.
6#   RELEASEDIR is where the tarred up stuff for a snapshot or
7#	release will be placed.
8#
9# Environment variables with default values:
10#   LOCALTIME will set the default local time for the system you
11#	build; it determines what /etc/localtime is symlink'd to.
12#   KERNSRCDIR points to kernel source; it is set by default to ../sys,
13#	but can be overridden.
14#   KERNOBJDIR is the kernel build directory, it defaults to
15#	${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden.
16#   KERNCONFDIR is where the configuration files for kernels are found;
17#	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
18#   UPDATE is normally undefined; if defined, don't do a 'make clean'
19#	before kernel compile
20#   NO_SENDMAIL is normally undefined; if defined, it will not do a
21#	`make distribution' in the sendmail config file source directory.
22#
23# Targets:
24#    distribution: makes a full NetBSD distribution in DESTDIR. If
25#	INSTALL_DONE is set, it will not do a `make install.'
26#	if DISTRIBUTION_DONE is set, it will not do anything.
27#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
28#	Called by distribution.
29#    snapshot: calls distribution, above, and then tars up the files
30#	into a release(7) format in RELEASEDIR. Any port-dependent
31#	stuff for this target is found in etc.${MACHINE}/Makefile.inc.
32#    release: a synonym for `snapshot'
33
34# setting NOOBJ prevents "make obj" from doing anything;
35# an objdir would break the installation stuff below
36NOOBJ=		# defined
37
38# For NO_SENDMAIL, INSTPRIV, MKCRYPTO
39.include <bsd.own.mk>
40
41# For KERNSRCDIR, KERNOBJDIR, ...
42.include <bsd.kernobj.mk>
43
44
45.MAKEOVERRIDES+=	USETOOLS
46
47TZDIR=		/usr/share/zoneinfo
48LOCALTIME?=	UTC
49PWD_MKDB?=	pwd_mkdb
50MAKESUMS=	CKSUM=${CKSUM:Q} sh ../distrib/sets/makesums
51
52# Flags for creating ISO CDROM image
53# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrecord
54MKISOFS?=	mkisofs
55MKISOFS_FLAGS+= -J -l \
56		-r -T -v \
57		-P "The NetBSD Project" \
58		-m "${RELEASEDIR}/installation/cdrom"
59
60# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
61# are empty, to preserve the old semantics of setting them below with "=".
62BIN1=
63BIN2=
64BIN3=
65
66# Directories to build in ${RELEASEDIR}.   MD Makefile.inc files can
67# add to this.
68# NOTE: Parent directories must be listed before subdirectories.
69INSTALLATION_DIRS= \
70	binary binary/sets binary/kernel installation
71
72.if exists(etc.${MACHINE}/Makefile.inc)
73.include "etc.${MACHINE}/Makefile.inc"
74.endif
75
76# Use multiple jobs for kernel builds, if NBUILDJOBS set.
77# (Taken from src/Makefile.)
78.if defined(NBUILDJOBS)
79_J= -j${NBUILDJOBS}
80.endif
81
82# -rw-r--r--
83BINOWN= root
84BINGRP= wheel
85BIN1+=	bootptab changelist csh.cshrc csh.login csh.logout daily \
86	daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \
87	gettytab group hosts hosts.lpd inetd.conf lkm.conf \
88	mailer.conf man.conf monthly monthly.conf mrouted.conf \
89	netconfig networks newsyslog.conf nsswitch.conf ntp.conf \
90	phones printcap profile protocols rbootd.conf rc rc.conf \
91	rc.lkm rc.local rc.subr rc.shutdown remote rpc \
92	security security.conf services shells sysctl.conf syslog.conf \
93	weekly weekly.conf wscons.conf \
94	etc.${MACHINE}/ttys etc.${MACHINE}/disktab
95
96.if	(${MACHINE_ARCH} == "m68k") || \
97	(${MACHINE_ARCH} == "ns32k") || \
98	(${MACHINE_ARCH} == "vax")
99BIN1+=	ld.so.conf
100.elif exists(etc.${MACHINE_ARCH}/ld.so.conf)
101BIN1+=	etc.${MACHINE_ARCH}/ld.so.conf
102.endif
103
104.if exists(etc.${MACHINE_ARCH}/ttyaction)
105BIN1+=	etc.${MACHINE_ARCH}/ttyaction
106.endif
107
108# -rw-rw-r--
109BIN2+=	motd
110
111# -rw-------
112BIN3+=	hosts.equiv
113
114NAMEDB=	127 root.cache named.conf localhost loopback.v6
115
116.if make(release) || make(snapshot) || make(distribution)		# {
117# find out endianness of target and set proper flag for pwd_mkdb so that
118# it creates database in same endianness
119.if exists(${DESTDIR}/usr/include/sys/endian.h)
120TARGET_ENDIANNESS!= \
121	printf '\#include <sys/endian.h>\n_BYTE_ORDER\n' | \
122	${CC} -I${DESTDIR}/usr/include -E - | tail -1 | awk '{print $$1}'
123.else
124TARGET_ENDIANNESS=
125.endif
126
127.if ${TARGET_ENDIANNESS} == "1234"
128TARGET_ENDIANNESS= -L
129.elif ${TARGET_ENDIANNESS} == "4321"
130TARGET_ENDIANNESS= -B
131.else
132TARGET_ENDIANNESS=
133.endif
134.endif	# release || snapshot || distribution				# }
135
136obj:
137	mkdir -p ${KERNOBJDIR}
138
139distribution: check_DESTDIR .WAIT distrib-dirs
140.if !defined(DISTRIBUTION_DONE)
141.if !defined(INSTALL_DONE)
142	(cd ..; ${MAKE} _DISTRIB= includes)
143	(cd ..; ${MAKE} _DISTRIB= install)
144.endif	# !INSTALL_DONE
145	${MAKE} install-etc-files
146.endif	# !DISTRIBUTION_DONE
147
148install-etc-files: check_DESTDIR
149	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} ${DESTDIR}/etc
150	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} ${DESTDIR}/etc
151	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} ${DESTDIR}/etc
152	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 aliases \
153	    ${DESTDIR}/etc/mail
154	${INSTALL_FILE} -o root -g wheel -m 600 crontab \
155	    ${DESTDIR}/var/cron/tabs/root
156	${INSTALL_FILE} -o root -g wheel -m 600 master.passwd ${DESTDIR}/etc
157	${PWD_MKDB} -p ${TARGET_ENDIANNESS} -d ${DESTDIR}/ \
158		${DESTDIR}/etc/master.passwd
159.if defined(UNPRIVED)
160	echo "${DESTDIR}/etc/passwd type=file mode=0644 uname=root gname=wheel" \
161		| sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
162	echo "${DESTDIR}/etc/pwd.db type=file mode=0644 uname=root gname=wheel" \
163		| sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
164	echo "${DESTDIR}/etc/spwd.db type=file mode=0600 uname=root gname=wheel" \
165		| sed -e 's|^/|./|g' -e 's|//|/|g' >>${METALOG}
166.endif	# UNPRIVED
167	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
168	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
169	${INSTALL_FILE} -o root -g wheel -m 600 minfree ${DESTDIR}/var/crash
170	(cd root; \
171		${INSTALL_FILE} -o root -g wheel -m 644 dot.cshrc \
172		    ${DESTDIR}/root/.cshrc; \
173		${INSTALL_FILE} -o root -g wheel -m 600 dot.klogin \
174		    ${DESTDIR}/root/.klogin; \
175		${INSTALL_FILE} -o root -g wheel -m 644 dot.login \
176		    ${DESTDIR}/root/.login; \
177		${INSTALL_FILE} -o root -g wheel -m 644 dot.profile \
178		    ${DESTDIR}/root/.profile; \
179		${INSTALL_FILE} -o root -g wheel -m 644 dot.shrc \
180		    ${DESTDIR}/root/.shrc; \
181		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
182		${INSTALL_LINK} ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
183		${INSTALL_LINK} ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
184	(cd defaults; ${MAKE} install)
185	(cd mtree; ${MAKE} install)
186	(cd namedb; \
187		${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
188		    ${NAMEDB} ${DESTDIR}/etc/namedb)
189	(cd rc.d; ${MAKE} install)
190	${INSTALL_SYMLINK} -o root -g wheel -m 755 \
191		${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
192	${INSTALL_SYMLINK} -o root -g wheel -m 755 \
193		/usr/sbin/rmt ${DESTDIR}/etc/rmt
194	${INSTALL_FILE} -o ${BINOWN} -g operator -m 664 /dev/null \
195		${DESTDIR}/etc/dumpdates
196	${INSTALL_FILE} -o ${BINOWN} -g operator -m 600 /dev/null \
197		${DESTDIR}/etc/skeykeys
198	${INSTALL_FILE} -o root -g wheel -m 600 /dev/null \
199		${DESTDIR}/var/at/at.deny
200	${INSTALL_FILE} -o root -g wheel -m 600 /dev/null \
201		${DESTDIR}/var/cron/log
202	${INSTALL_FILE} -o nobody -g ${BINGRP} -m 664 /dev/null \
203		${DESTDIR}/var/db/locate.database
204	${INSTALL_FILE} -o uucp -g dialer -m 640 /dev/null \
205		${DESTDIR}/var/log/aculog
206	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
207		${DESTDIR}/var/log/authlog
208	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
209		${DESTDIR}/var/log/lastlog
210	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
211		${DESTDIR}/var/log/lpd-errs
212	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
213		${DESTDIR}/var/log/maillog
214	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
215		${DESTDIR}/var/log/messages
216	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
217		${DESTDIR}/var/log/secure
218	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
219		${DESTDIR}/var/log/sendmail.st
220	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
221		${DESTDIR}/var/log/wtmp
222	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
223		${DESTDIR}/var/log/xferlog
224	${INSTALL_FILE} -o daemon -g staff -m 664 /dev/null \
225		${DESTDIR}/var/msgs/bounds
226	${INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
227		${DESTDIR}/var/run/utmp
228	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
229		${DESTDIR}/var/games/atc_scores
230	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
231		${DESTDIR}/var/games/battlestar.log
232	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
233		${DESTDIR}/var/games/cfscores
234	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
235		${DESTDIR}/var/games/criblog
236	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
237		${DESTDIR}/var/games/robots_roll
238	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
239		${DESTDIR}/var/games/rogue.scores
240	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
241		${DESTDIR}/var/games/saillog
242	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
243		${DESTDIR}/var/games/snakerawscores
244	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
245		${DESTDIR}/var/games/snake.log
246	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
247		${DESTDIR}/var/games/tetris.scores
248	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
249		${DESTDIR}/var/games/larn/llog12.0
250	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
251		${DESTDIR}/var/games/larn/lscore12.0
252	${INSTALL_FILE} -o games -g games -m 664 /dev/null \
253		${DESTDIR}/var/games/larn/playerids
254	(cd etc.${MACHINE}; ${INSTALL_FILE} -o ${BINOWN} \
255	    -g ${BINGRP} -m 444 fstab.* ${DESTDIR}/etc)
256	(cd skel; ${MAKE} distribution)
257	(cd ../usr.bin/mail; ${MAKE} distribution)
258	(cd ../gnu/usr.sbin/postfix/; ${MAKE} distribution)
259.if (${MKCRYPTO} != "no")
260	(cd ../usr.bin/ssh; ${MAKE} distribution)
261.endif
262.if !defined(NO_SENDMAIL)
263	(cd ../gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
264.endif
265
266distrib-dirs: check_DESTDIR
267	${INSTALL_DIR} -o root -g wheel -m 755 ${DESTDIR}
268	${MTREE} -def mtree/NetBSD.dist -p ${DESTDIR}/ -U ${UNPRIVED:D-W}
269	rm -f ${DESTDIR}/sys
270	${INSTALL_SYMLINK} -o root -g wheel -m 755 usr/src/sys ${DESTDIR}/sys
271
272release snapshot: check_DESTDIR check_RELEASEDIR .WAIT \
273    distribution snap_pre snap_md_pre snap_kern snap_md_post
274	(cd ../distrib/sets; ${MAKE} sets)
275	${MAKESUMS} -t ${RELEASEDIR}/binary/kernel '*.gz'
276
277# Standalone target to create a CDROM image after the release
278# was composed. Should be run after "make build" in both src and xsrc
279iso-image: check_DESTDIR check_RELEASEDIR .WAIT iso-image_md_post
280
281iso-image_mi: check_DESTDIR check_RELEASEDIR .WAIT iso-image_md_pre
282	@if ${MKISOFS} --version; then \
283		mkdir -p ${RELEASEDIR}/installation/cdrom ; \
284		${MKISOFS} ${MKISOFS_FLAGS} \
285			-o ${RELEASEDIR}/installation/cdrom/netbsd-${MACHINE}.iso \
286			${RELEASEDIR} ; \
287		${MAKESUMS} -t ${RELEASEDIR}/installation/cdrom '*.iso' ; \
288	else \
289		echo "install pkgsrc/sysutils/cdrecord and type 'make iso-image'." ; \
290	fi
291
292# Setup the $RELEASEDIR to produce a bootable CD image:
293iso-image_md_pre: check_DESTDIR check_RELEASEDIR
294# nothing here -- look in the machine-dependent Makefile.inc
295
296# Fixup the  CD-image to be bootable
297iso-image_md_post: check_DESTDIR check_RELEASEDIR .WAIT iso-image_mi
298# nothing here -- look in the machine-dependent Makefile.inc
299
300snap_pre: check_DESTDIR check_RELEASEDIR
301# Could be a mount point, ignore the errors
302	-/bin/rm -rf ${RELEASEDIR}
303	${INSTALL} -d -m 755 ${RELEASEDIR}
304.for dir in ${INSTALLATION_DIRS}
305	${INSTALL} -d -m 755 ${RELEASEDIR}/${dir}
306.endfor
307
308# This target builds the kernels specified by each port.  A port may
309# specify the following kernels:
310#
311#	KERNEL_SETS		The list of kernels that will be
312#				packaged into sets, named
313#				kern-${kernel}.tgz.  These kernels
314#				are also placed in the binary/kernel
315#				area of the release package as
316#				netbsd-${kernel}.gz.
317#
318#	EXTRA_KERNELS		Additional kernels to place in the
319#				binary/kernel area of the release
320#				package as netbsd-${kernel}.gz, but
321#				which are not placed into sets. This
322#				allows a port to provide e.g. a netbootable
323#				installation kernel containing a ramdisk.
324#
325#	BUILD_KERNELS		Additional kernels to build which are
326#				not placed into sets nor into the
327#				binary/kernel area of the release
328#				package.  These are typically kernels
329#				that are built for inclusion only in
330#				installation disk/CD-ROM/tape images.
331#
332# A port may also specify KERNEL_SUFFIXES, which is an optional list
333# of filename suffixes for kernels to include in the kernel sets and
334# in the binary/kernel area of the release package (e.g. "netbsd" vs.
335# "netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
336# with these suffixes do not exist in the kernel build directory.
337#
338GETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
339		END{ if (found == 0) print "netbsd"; }'
340#
341.if !target(snap_kern)
342snap_kern: check_DESTDIR check_RELEASEDIR
343.if !defined(KERNELS_DONE)						# {
344.for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
345	cd ${KERNCONFDIR} && ${CONFIG} \
346		-b ${KERNOBJDIR}/${configfile:C/.*\///} -s ${KERNSRCDIR} ${configfile}
347.if !defined(UPDATE)
348	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} distclean
349.endif
350	cd ${KERNOBJDIR}/${configfile:C/.*\///} && ${MAKE} depend && ${MAKE} ${_J}
351.endfor # build kernels
352.endif # KERNELS_DONE							# }
353.for configfile in ${KERNEL_SETS}
354	kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile}`; \
355	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
356	kernsuffixes="${KERNEL_SUFFIXES}"; \
357	cd $${kerndir} && ( \
358		echo ". type=dir uname=root gname=wheel"; \
359		for kernel in $${kernlist}; do \
360			echo "./$${kernel} type=file uname=root gname=wheel"; \
361			for s in $${kernsuffixes}; do \
362				if [ -f $${kernel}.$${s} ]; then \
363					echo \
364		    "./$${kernel}.$${s} type=file uname=root gname=wheel"; \
365				fi; \
366			done; \
367		done ) | GZIP=-9 ${PAX} -zwM ${UNPRIVED:D-N${_SRC_TOP_}/etc} \
368		    -f ${RELEASEDIR}/binary/sets/kern-${configfile}.tgz
369.endfor # make kernel sets
370.for configfile in ${KERNEL_SETS} ${EXTRA_KERNELS}
371	kernlist=`${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}`; \
372	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
373	kernsuffixes="${KERNEL_SUFFIXES}"; \
374	cd $${kerndir} &&	\
375		gziplist=`for kernel in $${kernlist}; do \
376			echo "$${kernel}"; \
377			for s in $${kernsuffixes}; do \
378				if [ -f $${kernel}.$${s} ]; then \
379					echo "$${kernel}.$${s}"; \
380				fi; \
381			done; \
382		done`; \
383		for kernel in $${gziplist} ; do \
384		gzip -c -9 < $${kernel} > \
385		    ${RELEASEDIR}/binary/kernel/$${kernel}-${configfile:C/.*\///}.gz ; done
386.endfor # place KERNEL_SETS kernels + EXTRA_KERNELS in binary/kernel/...
387.endif # no target(snap_kern)
388
389snap_md_pre: check_DESTDIR check_RELEASEDIR
390# nothing here -- look in the machine-dependent Makefile.inc
391
392snap_md_post: check_DESTDIR check_RELEASEDIR
393# nothing here -- look in the machine-dependent Makefile.inc
394
395.include <bsd.prog.mk>
396