Makefile revision 1.137
11.137Smycroft#	$NetBSD: Makefile,v 1.137 2000/02/26 18:42:31 mycroft Exp $
21.66Smikel#	from: @(#)Makefile	8.7 (Berkeley) 5/25/95
31.1Scgd
41.96Scjs# Environment variables without default values:
51.96Scjs#   DESTDIR must be set before anything in this file will work.
61.96Scjs#   RELEASEDIR is where the tarred up stuff for a snapshot or
71.96Scjs#	release will be placed.
81.96Scjs#
91.96Scjs# Environment variables with default values:
101.96Scjs#   LOCALTIME will set the default local time for the system you
111.96Scjs#	build; it determines what /etc/localtime is symlink'd to.
121.96Scjs#   KERNSRCDIR points to kernel source; it is set by default to ../sys,
131.96Scjs#	but can be overridden.
141.96Scjs#   KERNOBJDIR is the kernel build directory, it defaults to
151.96Scjs#	${KERNSRCDIR}/arch/${MACHINE}/compile/KERNELNAME, but can be
161.96Scjs#	overridden.
171.96Scjs#   KERNCONFDIR is where the configuration files for kernels are found;
181.96Scjs#	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
191.97Scjs#   UPDATE is normally undefined; if defined, don't do a 'make clean'
201.97Scjs#	before kernel compile
211.96Scjs#   NO_SENDMAIL is normally undefined; if defined, it will not do a
221.96Scjs#	`make distribution' in the sendmail config file source directory.
231.96Scjs#   EXTRA_KERNELS has a machine-dependent list of kernels to build added
241.96Scjs#	to it, but you may also set this to have extra ones built.
251.119Sross#   BUILD_KERNELS are a machine-dependent list of kernels that should just
261.119Sross#	be built in place but not made into sets or installed, e.g., an
271.119Sross#	INSTALL kernel used later in src/distrib/.
281.134Serh#   CRYPTOPATH is automatically defined by bsd.crypto.mk to be either
291.134Serh#	../crypto-us or ../crypto-intl.  It controls the building of
301.134Serh#	the secr set, which can be disabled by setting CRYPTOPATH to
311.134Serh#	"none".
321.96Scjs# 
331.96Scjs# Targets:
341.96Scjs#    distribution: makes a full NetBSD distribution in DESTDIR. If
351.96Scjs#	INSTALL_DONE is set, it will not do a `make install.'
361.96Scjs#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
371.96Scjs#	Called by distribution.
381.96Scjs#    snapshot: calls distribution, above, and then tars up the files
391.96Scjs#	into a release(7) format in RELEASEDIR. Any port-dependent
401.96Scjs#	stuff for this target is found in etc.${MACHINE}/Makefile.inc.
411.106Scjs#    release: a synonym for `snapshot'
421.96Scjs
431.134Serh# For NO_SENDMAIL and INSTPRIV and CRYPTOPATH
441.90Skim.include <bsd.own.mk>
451.134SerhSRCTOP= ..
461.134Serh.include <bsd.crypto.mk>
471.90Skim
481.23ScgdTZDIR=		/usr/share/zoneinfo
491.90SkimLOCALTIME?=	US/Pacific
501.19Sderaadt
511.55Sperry# setting NOOBJ prevents "make obj" from doing anything;
521.55Sperry# an objdir would break the installation stuff below
531.101SlukemMKOBJ=	no
541.1Scgd
551.80Sjonathan# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
561.80Sjonathan# are empty, to preserve the old semantics of setting them below with "=".
571.80SjonathanBIN1=	
581.80SjonathanBIN2=
591.80SjonathanBIN3=
601.80Sjonathan
611.117Ssimonb# Directories to build in ${RELEASEDIR}.   MD Makefile.inc files can
621.117Ssimonb# add to this.
631.117Ssimonb# NOTE: Parent directories must be listed before subdirectories.
641.117SsimonbINSTALLATION_DIRS= \
651.117Ssimonb	binary binary/sets binary/kernel binary/security installation
661.117Ssimonb
671.71Scjs.if exists(etc.${MACHINE}/Makefile.inc)
681.71Scjs.include "etc.${MACHINE}/Makefile.inc"
691.71Scjs.endif
701.32Sjtc
711.96Scjs# Use multiple jobs for kernel builds, if NBUILDJOBS set.
721.96Scjs# (Taken from src/Makefile.)
731.96Scjs.if defined(NBUILDJOBS)
741.96Scjs_J= -j${NBUILDJOBS}
751.96Scjs.endif
761.96Scjs
771.21Scgd# -rw-r--r--
781.21ScgdBINOWN= root
791.21ScgdBINGRP= wheel
801.131SveegoBIN1+=	bootptab changelist csh.cshrc csh.login csh.logout daily \
811.131Sveego	daily.conf dm.conf floppytab ftpchroot ftpusers ftpwelcome \
821.131Sveego	gettytab group hosts hosts.lpd inetd.conf lkm.conf \
831.131Sveego	mailer.conf man.conf monthly monthly.conf mrouted.conf \
841.131Sveego	netstart networks newsyslog.conf nsswitch.conf ntp.conf \
851.131Sveego	phones printcap profile protocols rbootd.conf rc rc.conf \
861.131Sveego	rc.lkm rc.local rc.subr rc.shutdown rc.wscons remote rpc \
871.131Sveego	security security.conf services shells syslog.conf weekly \
881.131Sveego	weekly.conf wscons.conf \
891.109Sdrochner	etc.${MACHINE}/ttys etc.${MACHINE}/disktab
901.105Smycroft
911.121Sfvdl.if	(${MACHINE_ARCH} == "m68k") || \
921.105Smycroft	(${MACHINE_ARCH} == "ns32k") || \
931.105Smycroft	(${MACHINE_ARCH} == "vax") || \
941.105Smycroft	(${MACHINE_ARCH} == "arm32")
951.129SchristosBIN1+=	ld.so.conf
961.129Schristos.elif exists(etc.${MACHINE_ARCH}/ld.so.conf)
971.132SjlamBIN1+=	etc.${MACHINE_ARCH}/ld.so.conf
981.105Smycroft.endif
991.120Sitojun
1001.120Sitojun# IPv6
1011.120SitojunBIN1+=	rtadvd.conf
1021.1Scgd
1031.46Sderaadt# -rw-rw-r--
1041.80SjonathanBIN2+=	motd
1051.1Scgd
1061.77Smycroft# -rw-------
1071.80SjonathanBIN3+=	hosts.equiv
1081.77Smycroft
1091.131SveegoNAMEDB=	127 root.cache named.conf 0000:0000:0000:0000:0000:0000:000
1101.1ScgdPCS=	pcs750.bin
1111.1Scgd
1121.88Slukemall clean cleandir depend distclean etc includes install lint:
1131.1Scgd
1141.34Scgd.ifndef DESTDIR
1151.106Scjsdistribution distrib-dirs release snapshot:
1161.36Scgd	@echo setenv DESTDIR before doing that!
1171.34Scgd	@false
1181.34Scgd.else
1191.7Scgddistribution: distrib-dirs
1201.87Sperry.if !defined(INSTALL_DONE)
1211.107Sscottr	(cd ..; ${MAKE} _DISTRIB= includes)
1221.107Sscottr	(cd ..; ${MAKE} _DISTRIB= install)
1231.87Sperry.endif
1241.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 ${BIN1} \
1251.124Ssimonb	    ${DESTDIR}/etc
1261.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 ${BIN2} \
1271.124Ssimonb	    ${DESTDIR}/etc
1281.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 ${BIN3} \
1291.124Ssimonb	    ${DESTDIR}/etc
1301.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 aliases \
1311.124Ssimonb	    ${DESTDIR}/etc
1321.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 crontab \
1331.56Sthorpej	    ${DESTDIR}/var/cron/tabs/root
1341.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 master.passwd \
1351.124Ssimonb	    ${DESTDIR}/etc
1361.68Sperry	pwd_mkdb -p -d ${DESTDIR}/ ${DESTDIR}/etc/master.passwd
1371.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 555 \
1381.1Scgd	     MAKEDEV.local etc.${MACHINE}/MAKEDEV ${DESTDIR}/dev
1391.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 minfree \
1401.73Sperry	    ${DESTDIR}/var/crash
1411.1Scgd	(cd root; \
1421.124Ssimonb		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.cshrc \
1431.1Scgd		    ${DESTDIR}/root/.cshrc; \
1441.124Ssimonb		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 dot.klogin \
1451.1Scgd		    ${DESTDIR}/root/.klogin; \
1461.124Ssimonb		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.login \
1471.1Scgd		    ${DESTDIR}/root/.login; \
1481.124Ssimonb		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.profile \
1491.1Scgd		    ${DESTDIR}/root/.profile; \
1501.128Smycroft		${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 644 dot.shrc \
1511.128Smycroft		    ${DESTDIR}/root/.shrc; \
1521.1Scgd		rm -f ${DESTDIR}/.cshrc ${DESTDIR}/.profile; \
1531.1Scgd		ln ${DESTDIR}/root/.cshrc ${DESTDIR}/.cshrc; \
1541.1Scgd		ln ${DESTDIR}/root/.profile ${DESTDIR}/.profile)
1551.83Smrg	(cd mtree; ${MAKE} install)
1561.63Smikel	(cd namedb; \
1571.124Ssimonb		${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 \
1581.124Ssimonb		    ${NAMEDB} ${DESTDIR}/etc/namedb)
1591.19Sderaadt	/bin/rm -f ${DESTDIR}/etc/localtime
1601.19Sderaadt	ln -s ${TZDIR}/${LOCALTIME} ${DESTDIR}/etc/localtime
1611.48Sderaadt	/bin/rm -f ${DESTDIR}/etc/rmt
1621.48Sderaadt	ln -s /usr/sbin/rmt ${DESTDIR}/etc/rmt
1631.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 664 /dev/null \
1641.32Sjtc		${DESTDIR}/etc/dumpdates
1651.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g operator -m 600 /dev/null \
1661.44Sderaadt		${DESTDIR}/etc/skeykeys
1671.127Sperry	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \
1681.127Sperry		${DESTDIR}/var/at/at.deny
1691.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o root -g wheel -m 600 /dev/null \
1701.38Scgd		${DESTDIR}/var/cron/log
1711.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o nobody -g ${BINGRP} -m 664 /dev/null \
1721.32Sjtc		${DESTDIR}/var/db/locate.database
1731.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o uucp -g dialer -m 640 /dev/null \
1741.113Sfair		${DESTDIR}/var/log/aculog
1751.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
1761.69Sperry		${DESTDIR}/var/log/authlog
1771.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
1781.32Sjtc		${DESTDIR}/var/log/lastlog
1791.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 640 /dev/null \
1801.32Sjtc		${DESTDIR}/var/log/lpd-errs
1811.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
1821.32Sjtc		${DESTDIR}/var/log/maillog
1831.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
1841.32Sjtc		${DESTDIR}/var/log/messages
1851.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
1861.58Slukem		${DESTDIR}/var/log/secure
1871.137Smycroft	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
1881.137Smycroft		${DESTDIR}/var/log/sendmail.st
1891.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 644 /dev/null \
1901.32Sjtc		${DESTDIR}/var/log/wtmp
1911.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \
1921.69Sperry		${DESTDIR}/var/log/xferlog
1931.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o daemon -g staff -m 664 /dev/null \
1941.39Scgd		${DESTDIR}/var/msgs/bounds
1951.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \
1961.32Sjtc		${DESTDIR}/var/run/utmp
1971.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
1981.81Smrg		${DESTDIR}/var/games/atc_scores
1991.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2001.81Smrg		${DESTDIR}/var/games/battlestar.log
2011.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2021.81Smrg		${DESTDIR}/var/games/cfscores
2031.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2041.82Sperry		${DESTDIR}/var/games/criblog
2051.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2061.81Smrg		${DESTDIR}/var/games/robots_roll
2071.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2081.81Smrg		${DESTDIR}/var/games/rogue.scores
2091.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2101.81Smrg		${DESTDIR}/var/games/saillog
2111.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2121.81Smrg		${DESTDIR}/var/games/snakerawscores
2131.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2141.81Smrg		${DESTDIR}/var/games/snake.log
2151.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2161.81Smrg		${DESTDIR}/var/games/tetris.scores
2171.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2181.81Smrg		${DESTDIR}/var/games/larn/llog12.0
2191.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2201.81Smrg		${DESTDIR}/var/games/larn/lscore12.0
2211.124Ssimonb	${INSTALL} ${INSTPRIV} -c -o games -g games -m 664 /dev/null \
2221.81Smrg		${DESTDIR}/var/games/larn/playerids
2231.124Ssimonb	(cd etc.${MACHINE}; ${INSTALL} ${INSTPRIV} -c -o ${BINOWN} \
2241.124Ssimonb	    -g ${BINGRP} -m 444 fstab.* ${DESTDIR}/etc)
2251.49Stls	(cd ${DESTDIR}/dev; ./MAKEDEV all)
2261.62Sperry	(cd ../usr.bin/mail; ${MAKE} distribution)
2271.90Skim.ifndef NO_SENDMAIL
2281.133Stron	(cd ../gnu/usr.sbin/sendmail/cf/cf; ${MAKE} distribution)
2291.126Smjl	${DESTDIR}/usr/libexec/sendmail/sendmail -C ${DESTDIR}/etc/sendmail.cf -O AliasFile=${DESTDIR}/etc/aliases -bi
2301.90Skim.endif
2311.112Sperry.ifdef BUILD_POSTFIX
2321.110Smrg	(cd ../usr.sbin/postfix/etc; ${MAKE} distribution)
2331.111Ssimonb.endif
2341.1Scgd
2351.1Scgd
2361.7Scgddistrib-dirs:
2371.124Ssimonb	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${DESTDIR}
2381.67Sperry	-mtree -def mtree/NetBSD.dist -p ${DESTDIR}/ -u
2391.28Sjtc	cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys
2401.99Scjs
2411.96Scjs.if !defined(RELEASEDIR)
2421.117Ssimonbrelease snapshot snap_pre snap_md_pre snap_md_post:
2431.96Scjs	@echo setenv RELEASEDIR before doing that!
2441.96Scjs	@false
2451.96Scjs.else
2461.117Ssimonbrelease snapshot: distribution snap_pre snap_md_pre snap_kern snap_md_post
2471.96Scjs	sh ../distrib/sets/maketars -s ../distrib/sets \
2481.96Scjs		-d ${DESTDIR} -t ${RELEASEDIR}/binary/sets
2491.134Serh.if defined(CRYPTOPATH) && exists(${CRYPTOPATH})
2501.103Sfair	sh ../distrib/sets/maketars -s ../distrib/sets \
2511.103Sfair		-d ${DESTDIR} -t ${RELEASEDIR}/binary/security secr
2521.123Sis	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/security
2531.103Sfair.endif
2541.123Sis	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/sets
2551.123Sis	sh ../distrib/sets/makesums -t ${RELEASEDIR}/binary/kernel '*.gz'
2561.41Scgd
2571.41Scgdsnap_pre:
2581.96Scjs	/bin/rm -rf ${RELEASEDIR}
2591.124Ssimonb	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR}
2601.117Ssimonb.for dir in ${INSTALLATION_DIRS}
2611.124Ssimonb	${INSTALL} ${INSTPRIV} -d -o root -g wheel -m 755 ${RELEASEDIR}/${dir}
2621.117Ssimonb.endfor
2631.96Scjs
2641.96Scjs# the regular expression does a basename(1) on .CURDIR so that we don't
2651.96Scjs# have to keep looking up .. at compile time.
2661.96ScjsKERNSRCDIR?=	${.CURDIR:C/[^\/]+$//}sys
2671.96ScjsKERNOBJDIR?=	${KERNSRCDIR}/arch/${MACHINE}/compile
2681.96ScjsKERNCONFDIR?=	${KERNSRCDIR}/arch/${MACHINE}/conf
2691.96Scjs
2701.96Scjs# This target builds the GENERIC kernel (which must exist for all
2711.96Scjs# ports) and puts it in binary/sets/kern.tgz, and also builds any
2721.114Sfair# kernels specified in EXTRA_KERNELS. Since NetBSD's kernel build
2731.114Sfair# system can create more than one kernel from a single configuration
2741.114Sfair# we figure out how many there are, what they're named, and move them
2751.114Sfair# to binary/kernel/${KERNEL}.${CONFIGFILE}.gz - most often KERNEL will
2761.116Sfair# simply be "netbsd". If we don't find the "config" line, assume the
2771.116Sfair# kernel will be "netbsd" (some config files are simple additions on
2781.116Sfair# GENERIC, and just include it).
2791.116Sfair#
2801.116SfairGETKERNELAWK=	awk '/^config/ {print $$2; found=1} \
2811.116Sfair		END{ if (found == 0) print "netbsd"; }'
2821.96Scjs#
2831.118Sgwr.if !target(snap_kern)
2841.96Scjssnap_kern:
2851.135Smycroft.for configfile in GENERIC ${EXTRA_KERNELS} ${BUILD_KERNELS}
2861.125Ssommerfe	cd ${KERNCONFDIR} && ${CONFIG} \
2871.135Smycroft		-b ${KERNOBJDIR}/${configfile} -s ${KERNSRCDIR} ${configfile}
2881.97Scjs.ifndef UPDATE
2891.135Smycroft	cd ${KERNOBJDIR}/${configfile} && ${MAKE} clean 
2901.96Scjs.endif
2911.135Smycroft	cd ${KERNOBJDIR}/${configfile} && ${MAKE} depend && ${MAKE} ${_J}
2921.135Smycroft.endfor # kernels
2931.96Scjs	cd ${KERNOBJDIR}/GENERIC &&	\
2941.116Sfair		tar cf - `${GETKERNELAWK} ${KERNCONFDIR}/GENERIC` |\
2951.96Scjs		gzip -c -9 > ${RELEASEDIR}/binary/sets/kern.tgz
2961.135Smycroft.for configfile in GENERIC ${EXTRA_KERNELS}
2971.114Sfair	cd ${KERNOBJDIR}/${configfile} &&	\
2981.116Sfair		for kernel in `${GETKERNELAWK} \
2991.114Sfair			${KERNCONFDIR}/${configfile}` ; {   \
3001.114Sfair		gzip -c -9 < $${kernel} > \
3011.114Sfair			${RELEASEDIR}/binary/kernel/$${kernel}.${configfile}.gz ; }
3021.96Scjs.endfor # EXTRA_KERNELS
3031.118Sgwr.endif # no target(snap_kern)
3041.108Sdrochner
3051.96Scjs.endif # RELEASEDIR check
3061.41Scgd
3071.117Ssimonbsnap_md_pre:
3081.117Ssimonb# nothing here -- look in the machine-dependent Makefile.inc
3091.117Ssimonb
3101.117Ssimonbsnap_md_post:
3111.41Scgd# nothing here -- look in the machine-dependent Makefile.inc
3121.41Scgd
3131.34Scgd.endif	# DESTDIR check
3141.7Scgd
3151.1Scgd.include <bsd.prog.mk>
316