Makefile revision 1.462
11.462Snia#	$NetBSD: Makefile,v 1.462 2022/05/28 12:36:56 nia 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.172Sjlam#	${KERNSRCDIR}/arch/${MACHINE}/compile, but can be overridden.
161.96Scjs#   KERNCONFDIR is where the configuration files for kernels are found;
171.96Scjs#	default is ${KERNSRCDIR}/arch/${MACHINE}/conf but can be overridden.
181.304Slukem#   MKPOSTFIX; if not `no', install postfix configuration
191.270Slukem#   MKUNPRIVED; if not `no', allow non-root installs.
201.255Slukem#   MKUPDATE; if not `no', don't do a 'make clean' before kernel compile
211.154Sthorpej#
221.96Scjs# Targets:
231.96Scjs#    distribution: makes a full NetBSD distribution in DESTDIR. If
241.96Scjs#	INSTALL_DONE is set, it will not do a `make install.'
251.182Schs#	if DISTRIBUTION_DONE is set, it will not do anything.
261.96Scjs#    distrib-dirs: creates an empty NetBSD directory tree in DESTDIR.
271.96Scjs#	Called by distribution.
281.96Scjs#    snapshot: calls distribution, above, and then tars up the files
291.286Scl#	into a release(7) format in RELEASEDIR/${RELEASEMACHINEDIR}.
301.241Slukem#	Any port-dependent stuff for this target is found in
311.241Slukem#	etc.${MACHINE}/Makefile.inc.
321.106Scjs#    release: a synonym for `snapshot'
331.242Slukem#
341.199Stv
351.270Slukem# For MK* vars
361.90Skim.include <bsd.own.mk>
371.187Sjmc
381.260Slukem.include <bsd.kernobj.mk>	# For KERNSRCDIR, KERNOBJDIR, ...
391.260Slukem.include <bsd.endian.mk>	# For TARGET_ENDIANNESS
401.252Slukem
411.187Sjmc.MAKEOVERRIDES+=	USETOOLS
421.90Skim
431.23ScgdTZDIR=		/usr/share/zoneinfo
441.157SkleinkLOCALTIME?=	UTC
451.283SagcCKSUM?=		${TOOL_CKSUM}
461.330SchristosMAKESUMS=	MAKE=${MAKE:Q} CKSUM=${CKSUM:Q} ${HOST_SH} ${NETBSDSRCDIR}/distrib/sets/makesums
471.266SlukemDISTRIBVER!=	${HOST_SH} ${NETBSDSRCDIR}/sys/conf/osrelease.sh
481.19Sderaadt
491.419SapbGZIP_FLAGS= -9 ${GZIP_N_FLAG}
501.419Sapb
511.161Shubertf# Flags for creating ISO CDROM image
521.320Sapb# mkisofs is expected to be in $PATH, install via pkgsrc/sysutils/cdrtools
531.242Slukem# Note: At least mkisofs 2.0 should be used.
541.242Slukem#
551.341Sbouyer.if !defined(MKISOFS)
561.407SuebayasiMKISOFS!=       (which mkisofs || echo true) 2>/dev/null
571.341Sbouyer.endif
581.260SlukemDISTRIBREV!=	${HOST_SH} ${KERNSRCDIR}/conf/osrelease.sh -s
591.224Sbjh21# ISO 9660 volume ID.  Note that this can only contain [A-Z0-9_].
601.306SmartinISO_VOLID!=	echo NETBSD_${DISTRIBREV} | tr a-z A-Z
611.306SmartinMKISOFS_FLAGS+= -J -l -hide-joliet-trans-tbl -r -T \
621.224Sbjh21		-V ${ISO_VOLID} \
631.331Slukem		-publisher "The NetBSD Project" \
641.286Scl		-m "${RELEASEDIR}/${RELEASEMACHINEDIR}/installation/cdrom"
651.306Smartin.if ${MKISOFS_FLAGS:N-v}
661.306SmartinMKISOFS_FLAGS+=	-quiet
671.306Smartin.endif
681.306Smartin 
691.426Schristos# Reproducible build parameters
701.426Schristos.if ${MKREPRO:Uno} == "no"
711.426SchristosBUILDER!=	echo $${USER-root}@$$(hostname)
721.426Schristos.else
731.426SchristosBUILDER=	builder@localhost.NetBSD.org
741.426Schristos.endif
751.426Schristos.if ${MKREPRO_TIMESTAMP:Uno} == "no"
761.426SchristosPAX_TIMESTAMP=
771.426SchristosBUILD_DATE!=	date -u
781.426Schristos.else
791.426SchristosPAX_TIMESTAMP=--timestamp "${MKREPRO_TIMESTAMP}"
801.450SchristosBUILD_DATE!=	${TOOL_DATE} -u -r "${MKREPRO_TIMESTAMP}"
811.426Schristos.endif
821.1Scgd
831.80Sjonathan# MD Makefile.inc may append MD targets to BIN[123].  Make sure all
841.316Shubertf# are empty, to preserve the old semantics of setting them below with "+=".
851.242Slukem#
861.200SlukemBIN1=
871.80SjonathanBIN2=
881.80SjonathanBIN3=
891.80Sjonathan
901.286Scl# Directories to build in ${RELEASEDIR}/${RELEASEMACHINEDIR}.
911.241Slukem# MD Makefile.inc files can add to this.
921.117Ssimonb# NOTE: Parent directories must be listed before subdirectories.
931.242Slukem#
941.217SlukemINSTALLATION_DIRS=	binary binary/sets binary/kernel installation
951.117Ssimonb
961.286Scl.if exists(etc.${RELEASEMACHINE}/Makefile.inc)
971.286Scl.include "etc.${RELEASEMACHINE}/Makefile.inc"
981.71Scjs.endif
991.32Sjtc
1001.21Scgd# -rw-r--r--
1011.21ScgdBINOWN= root
1021.21ScgdBINGRP= wheel
1031.227SperryUTMPGRP= utmp
1041.432SchristosBIN1+=	auto_master bootptab changelist csh.cshrc csh.login \
1051.345Sadrianp	csh.logout daily daily.conf dm.conf envsys.conf floppytab ftpchroot \
1061.370Smbalmer	ftpusers gettytab gpio.conf group hosts hosts.lpd inetd.conf \
1071.345Sadrianp	locate.conf login.conf mailer.conf man.conf monthly monthly.conf \
1081.459Snia	named.conf netconfig networks newsyslog.conf \
1091.461Snia	nsswitch.conf passwd.conf pkgpath.conf phones printcap \
1101.408Sagc	profile protocols rbootd.conf rc rc.conf rc.local rc.subr \
1111.408Sagc	rc.shutdown remote rpc security security.conf services shells \
1121.408Sagc	shrc sysctl.conf syslog.conf weekly weekly.conf wscons.conf
1131.291Slukem
1141.460Snia.if ${MKMROUTING} != "no"
1151.459SniaBIN1+=	mrouted.conf
1161.459Snia.endif
1171.459Snia
1181.461Snia.if ${MKNTP} != "no"
1191.462SniaBIN1+=	ntp.conf
1201.461Snia.endif
1211.461Snia
1221.242Slukem# Use machine-specific disktab if it exists, or the MI one otherwise
1231.236Sjdolecek.if exists(etc.${MACHINE}/disktab)
1241.236SjdolecekBIN1+=	etc.${MACHINE}/disktab
1251.236Sjdolecek.else
1261.236SjdolecekBIN1+=	disktab
1271.236Sjdolecek.endif
1281.105Smycroft
1291.433Sryo.if exists(etc.${MACHINE}/ld.so.conf) && \
1301.447Sjakllsch    empty(MACHINE_ARCH:M*arm*hf*) && empty(MACHINE_ARCH:Maarch64*)
1311.234SjdolecekBIN1+=	etc.${MACHINE}/ld.so.conf
1321.152Sperry.endif
1331.152Sperry
1341.234Sjdolecek.if exists(etc.${MACHINE}/ttyaction)
1351.234SjdolecekBIN1+=	etc.${MACHINE}/ttyaction
1361.105Smycroft.endif
1371.1Scgd
1381.46Sderaadt# -rw-rw-r--
1391.80SjonathanBIN2+=	motd
1401.400SapbFILESBUILD_motd=	YES
1411.1Scgd
1421.77Smycroft# -rw-------
1431.438SroyBIN3+=	hosts.equiv wpa_supplicant.conf
1441.77Smycroft
1451.291SlukemSYSPKG=	etc
1461.230SperryETC_PKG=-T etc_pkg
1471.230SperryBASE_PKG=-T base_pkg
1481.242SlukemETC_INSTALL_FILE=cd ${.CURDIR} && ${INSTALL_FILE} ${ETC_PKG}
1491.261SclETC_INSTALL_OBJ_FILE=cd ${.OBJDIR} && ${INSTALL_FILE} ${ETC_PKG}
1501.230Sperry
1511.191Stv.if ${TARGET_ENDIANNESS} == "1234"
1521.252SlukemPWD_MKDB_ENDIAN=	-L
1531.191Stv.elif ${TARGET_ENDIANNESS} == "4321"
1541.252SlukemPWD_MKDB_ENDIAN=	-B
1551.170Sjdolecek.else
1561.252SlukemPWD_MKDB_ENDIAN=
1571.191Stv.endif
1581.149Ssjg
1591.149Ssjg
1601.242Slukem# distribution --
1611.242Slukem#	Build a distribution
1621.242Slukem#
1631.324Sdsldistribution: .PHONY .MAKE check_DESTDIR distrib-dirs
1641.182Schs.if !defined(DISTRIBUTION_DONE)
1651.87Sperry.if !defined(INSTALL_DONE)
1661.285Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR} include _DISTRIB=
1671.285Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR} install _DISTRIB=
1681.200Slukem.endif	# !INSTALL_DONE
1691.456Schristos	${MAKEDIRTARGET} . install-debugkernels
1701.285Slukem	${MAKEDIRTARGET} . install-etc-files
1711.360Smrg. if ${MKX11} != "no"
1721.358Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/mit/xorg distribution
1731.360Smrg. endif
1741.374Suebayasi. if ${MKEXTSRC} != "no"
1751.374Suebayasi	${MAKEDIRTARGET} ${NETBSDSRCDIR}/extsrc distribution
1761.374Suebayasi. endif
1771.285Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets makesetfiles
1781.200Slukem.endif	# !DISTRIBUTION_DONE
1791.193Sthorpej
1801.266Slukem
1811.400Sapb# motd is copied from a different ${MOTD_SOURCE} depending on DISTRIBVER
1821.400Sapb#
1831.400Sapb.if !empty(DISTRIBVER:M*.99.*)
1841.400SapbMOTD_SOURCE=	motd.current
1851.400Sapb.elif !empty(DISTRIBVER:M*BETA*)
1861.400SapbMOTD_SOURCE=	motd.beta
1871.400Sapb.elif !empty(DISTRIBVER:M*RC*)
1881.400SapbMOTD_SOURCE=	motd.rc
1891.400Sapb.else
1901.400SapbMOTD_SOURCE=	motd.default
1911.400Sapb.endif
1921.400SapbCLEANFILES+= motd
1931.400Sapbmotd: ${.CURDIR}/${MOTD_SOURCE} ${_NETBSD_VERSION_DEPENDS}
1941.400Sapb	${_MKTARGET_CREATE}
1951.400Sapb	${HOST_INSTALL_FILE} ${.CURDIR}/${MOTD_SOURCE} ${.TARGET}
1961.400Sapb
1971.340SapbCLEANFILES+=	MAKEDEV
1981.421SmattMAKEDEV_MACHINE=${"${MACHINE_CPU}" == "aarch64":?${MACHINE_CPU}:${MACHINE}}
1991.386SuebayasiMAKEDEV: ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \
2001.421Smatt    ${.CURDIR}/etc.${MAKEDEV_MACHINE}/MAKEDEV.conf
2011.263Slukem	${_MKTARGET_CREATE}
2021.421Smatt	MACHINE=${MAKEDEV_MACHINE:Q} MACHINE_ARCH=${MACHINE_ARCH:Q} \
2031.264Slukem	    NETBSDSRCDIR=${NETBSDSRCDIR:Q} \
2041.359Sapb	    ${TOOL_AWK} -f ${.CURDIR}/MAKEDEV.awk ${.CURDIR}/MAKEDEV.tmpl \
2051.359Sapb	    > ${.TARGET}
2061.257Sjdolecek
2071.401Sapb.include "${NETBSDSRCDIR}/etc/Makefile.params"
2081.425Schristos
2091.272SlukemCLEANFILES+=	etc-release
2101.322Sdsletc-release: .EXEC .MAKE
2111.266Slukem	${_MKTARGET_CREATE}
2121.266Slukem	@(	echo "NetBSD ${DISTRIBVER}/${MACHINE}"; \
2131.266Slukem		echo ; \
2141.269Slukem		cat ${NETBSDSRCDIR}/sys/conf/copyright; \
2151.266Slukem		echo ; \
2161.416Sapb		echo "Build information:"; \
2171.425Schristos		printf "%20s   %s\n" "Build date" "${BUILD_DATE}"; \
2181.425Schristos		printf "%20s   %s\n"  "Built by" "${BUILDER}"; \
2191.414Sapb		if [ -n "${BUILDID}" ]; then \
2201.416Sapb		    printf "%20s   %s\n"  "Build ID" "${BUILDID}" ; \
2211.416Sapb		fi ; \
2221.416Sapb		if [ -n "${BUILDINFO}" ]; then \
2231.416Sapb		    echo ; \
2241.416Sapb		    info="$$(printf "%b" ${BUILDINFO:Q})" ; \
2251.416Sapb		    printf "%s\n" "$${info}" \
2261.416Sapb		    | ${TOOL_SED} -e 's/^/        /' ; \
2271.414Sapb		fi ; \
2281.281Slukem		echo ; \
2291.416Sapb		echo "Build settings:"; \
2301.416Sapb		echo ; \
2311.401Sapb		${PRINT_PARAMS} ; \
2321.276Slukem	) >${.OBJDIR}/${.TARGET}
2331.266Slukem
2341.275Slukeminstall-etc-release: .PHONY etc-release
2351.272Slukem	${_MKMSG_INSTALL} etc/release
2361.266Slukem	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 444 \
2371.272Slukem	    etc-release ${DESTDIR}/etc/release
2381.242Slukem
2391.291Slukem
2401.291SlukemFILESDIR=		/etc
2411.291SlukemCONFIGFILES=
2421.291SlukemCONFIGSYMLINKS=
2431.291Slukem
2441.291Slukem.for file in ${BIN1}
2451.291SlukemCONFIGFILES+=		${file}
2461.291SlukemFILESMODE_${file:T}=	644
2471.291Slukem.endfor
2481.291Slukem
2491.291Slukem.for file in ${BIN2}
2501.291SlukemCONFIGFILES+=		${file}
2511.291SlukemFILESMODE_${file:T}=	664
2521.291Slukem.endfor
2531.291Slukem
2541.291Slukem.for file in ${BIN3}
2551.291SlukemCONFIGFILES+=		${file}
2561.291SlukemFILESMODE_${file:T}=	600
2571.291Slukem.endfor
2581.291Slukem
2591.327Stron.if (${MKPOSTFIX} != "no")
2601.291SlukemCONFIGFILES+=		aliases
2611.291SlukemFILESDIR_aliases=	/etc/mail
2621.291SlukemFILESMODE_aliases=	644
2631.327Stron.endif
2641.291Slukem
2651.291SlukemCONFIGFILES+=		MAKEDEV.local
2661.291SlukemFILESDIR_MAKEDEV.local=	/dev
2671.291SlukemFILESMODE_MAKEDEV.local=${BINMODE}
2681.291Slukem
2691.291SlukemCONFIGFILES+=		crontab
2701.291SlukemFILESDIR_crontab=	/var/cron/tabs
2711.291SlukemFILESNAME_crontab=	root
2721.291SlukemFILESMODE_crontab=	600
2731.291Slukem
2741.291SlukemCONFIGFILES+=		minfree
2751.291SlukemFILESDIR_minfree=	/var/crash
2761.291SlukemFILESMODE_minfree=	600
2771.291Slukem
2781.291SlukemCONFIGSYMLINKS+=	${TZDIR}/${LOCALTIME}	/etc/localtime \
2791.291Slukem			/usr/sbin/rmt		/etc/rmt
2801.291Slukem
2811.291Slukem
2821.242Slukem# install-etc-files --
2831.242Slukem#	Install etc (config) files; not performed by "make build"
2841.242Slukem#
2851.340Sapbinstall-etc-files: .PHONY .MAKE check_DESTDIR MAKEDEV
2861.291Slukem	${_MKMSG_INSTALL} ${DESTDIR}/etc/master.passwd
2871.230Sperry	${ETC_INSTALL_FILE} -o root -g wheel -m 600 \
2881.230Sperry	    master.passwd ${DESTDIR}/etc
2891.254Slukem	${TOOL_PWD_MKDB} -p ${PWD_MKDB_ENDIAN} -d ${DESTDIR}/ \
2901.230Sperry	    ${DESTDIR}/etc/master.passwd
2911.255Slukem.if ${MKUNPRIVED} != "no"
2921.222Slukem	( \
2931.403Schristos		mode=0600; \
2941.403Schristos		for metaent in spwd.db passwd pwd.db; do \
2951.403Schristos	    		echo "./etc/$${metaent} type=file mode=$${mode} uname=root gname=wheel tags=etc_pkg"; \
2961.403Schristos			mode=0644; \
2971.246Slukem		done; \
2981.239Slukem	) | ${METALOG.add}
2991.255Slukem.endif	# MKUNPRIVED != no
3001.291Slukem	${_MKMSG_INSTALL} ${DESTDIR}/etc/ttys
3011.421Smatt.if exists(${.CURDIR}/etc.${MACHINE}/ttys)
3021.289Schristos	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
3031.298Schristos	    ${.CURDIR}/etc.${MACHINE}/ttys ${DESTDIR}/etc
3041.421Smatt.else
3051.421Smatt	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
3061.421Smatt	    ${.CURDIR}/etc.${MACHINE_CPU}/ttys ${DESTDIR}/etc
3071.421Smatt.endif
3081.351Sad.if exists(etc.${MACHINE}/boot.cfg)
3091.351Sad	${_MKMSG_INSTALL} ${DESTDIR}/boot.cfg
3101.351Sad	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
3111.351Sad	    ${.CURDIR}/etc.${MACHINE}/boot.cfg ${DESTDIR}/
3121.351Sad.endif
3131.291Slukem	${_MKMSG_INSTALL} ${DESTDIR}/dev/MAKEDEV
3141.259Sross	${ETC_INSTALL_OBJ_FILE} -o ${BINOWN} -g ${BINGRP} -m 555 \
3151.257Sjdolecek	    MAKEDEV ${DESTDIR}/dev
3161.291Slukem.for owner group mode file in \
3171.291Slukem		${BINOWN} operator	664	/etc/dumpdates  \
3181.291Slukem		${BINOWN} operator	600	/etc/skeykeys \
3191.291Slukem		root wheel		600	/var/at/at.deny \
3201.378Sdholland		root wheel		644	/var/db/locate.database \
3211.291Slukem		${BINOWN} ${BINGRP}	600	/var/log/authlog \
3221.291Slukem		root wheel		600	/var/log/cron \
3231.313Slukem		${BINOWN} ${UTMPGRP}	664	/var/log/lastlog \
3241.313Slukem		${BINOWN} ${UTMPGRP}	664	/var/log/lastlogx \
3251.291Slukem		${BINOWN} ${BINGRP}	640	/var/log/lpd-errs \
3261.291Slukem		${BINOWN} ${BINGRP}	600	/var/log/maillog \
3271.291Slukem		${BINOWN} ${BINGRP}	644	/var/log/messages \
3281.291Slukem		${BINOWN} ${BINGRP}	600	/var/log/secure \
3291.313Slukem		${BINOWN} ${UTMPGRP}	664	/var/log/wtmp \
3301.313Slukem		${BINOWN} ${UTMPGRP}	664	/var/log/wtmpx \
3311.291Slukem		${BINOWN} ${BINGRP}	600	/var/log/xferlog \
3321.291Slukem		daemon staff		664	/var/msgs/bounds \
3331.291Slukem		${BINOWN} ${UTMPGRP}	664	/var/run/utmp \
3341.291Slukem		${BINOWN} ${UTMPGRP}	664	/var/run/utmpx \
3351.291Slukem		games games		664	/var/games/atc_score \
3361.291Slukem		games games		664	/var/games/battlestar.log \
3371.291Slukem		games games		664	/var/games/cfscores \
3381.291Slukem		games games		664	/var/games/criblog \
3391.291Slukem		games games		660	/var/games/hackdir/perm \
3401.291Slukem		games games		660	/var/games/hackdir/record \
3411.291Slukem		games games		664	/var/games/larn/llog12.0 \
3421.291Slukem		games games		664	/var/games/larn/lscore12.0 \
3431.291Slukem		games games		664	/var/games/larn/playerids \
3441.291Slukem		games games		664	/var/games/robots_roll \
3451.291Slukem		games games		664	/var/games/rogue.scores \
3461.291Slukem		games games		664	/var/games/saillog \
3471.291Slukem		games games		664	/var/games/snakerawscores \
3481.291Slukem		games games		664	/var/games/snake.log \
3491.291Slukem		games games		664	/var/games/tetris.scores
3501.291Slukem	${_MKMSG_INSTALL} ${DESTDIR}${file}
3511.385Suebayasi	if [ ! -e ${DESTDIR}${file} -o -s ${DESTDIR}${file} ]; then \
3521.385Suebayasi		${ETC_INSTALL_FILE} -o ${owner} -g ${group} -m ${mode} \
3531.440Sgson			/dev/null ${DESTDIR}${file}; \
3541.385Suebayasi	else true; fi
3551.291Slukem.endfor
3561.432Schristos.for subdir in . defaults autofs bluetooth iscsi mtree namedb pam.d powerd rc.d root skel ssh
3571.291Slukem	${MAKEDIRTARGET} ${subdir} configinstall
3581.291Slukem.endfor
3591.357Sjoerg	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/dhcpcd/sbin/dhcpcd configinstall
3601.287Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.bin/mail configinstall
3611.303Speter.if (${MKPF} != "no")
3621.294Syamt	${MAKEDIRTARGET} ${NETBSDSRCDIR}/usr.sbin/pf configinstall
3631.303Speter.endif
3641.369Smrg	${MAKEDIRTARGET} ${NETBSDSRCDIR}/crypto/external/bsd/openssh/bin configinstall
3651.304Slukem.if (${MKPOSTFIX} != "no")
3661.367Stron	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/ibm-public/postfix configinstall
3671.304Slukem.endif
3681.363Sjmmv.if (${MKATF} != "no")
3691.363Sjmmv	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/atf/etc/atf configinstall
3701.363Sjmmv.endif
3711.406Sjmmv.if (${MKKYUA} != "no")
3721.406Sjmmv	${MAKEDIRTARGET} ${NETBSDSRCDIR}/external/bsd/kyua-cli/etc/kyua configinstall
3731.406Sjmmv.endif
3741.247Slukem
3751.247Slukem
3761.247Slukem# install-obsolete-lists --
3771.247Slukem#	Install var/db/obsolete set lists; this is performed by "make build"
3781.247Slukem#
3791.247SlukemOBSOLETE.dir=		${.OBJDIR}/obsolete.dir
3801.452SmayaOBSOLETE.files=		base comp etc games gpufw man misc rescue text
3811.405Smatt.if ${MKDEBUG} != "no"
3821.405SmattOBSOLETE.files+=	debug
3831.405Smatt.endif
3841.445Sjmcneill.if ${MKDTB} != "no"
3851.445SjmcneillOBSOLETE.files+=	dtb
3861.445Sjmcneill.endif
3871.376She.if ${MKKMOD} != "no"
3881.376SheOBSOLETE.files+=	modules
3891.376She.endif
3901.383Snjoly.if ${MKATF} != "no"
3911.383SnjolyOBSOLETE.files+=	tests
3921.383Snjoly.endif
3931.360Smrg.if ${MKX11} != "no"
3941.311SlukemOBSOLETE.files+=	xbase xcomp xetc xfont xserver
3951.449Smartin.if ${MKDEBUG} != "no"
3961.449SmartinOBSOLETE.files+=	xdebug
3971.449Smartin.endif
3981.307Stron.endif
3991.247Slukem
4001.387Suebayasi# XXX make "makeobsolete" set wise; then generate files respectively
4011.322Sdslinstall-obsolete-lists: .PHONY .MAKE
4021.246Slukem	mkdir -p ${OBSOLETE.dir}
4031.360Smrg.if ${MKX11} != "no"
4041.307Stron	(cd ${NETBSDSRCDIR}/distrib/sets && \
4051.364Ssketch	    AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -b -t ${OBSOLETE.dir})
4061.307Stron.else
4071.253Slukem	(cd ${NETBSDSRCDIR}/distrib/sets && \
4081.364Ssketch	    AWK=${TOOL_AWK:Q} MAKE=${MAKE:Q} ${HOST_SH} ./makeobsolete -t ${OBSOLETE.dir})
4091.307Stron.endif
4101.246Slukem.for file in ${OBSOLETE.files}
4111.291Slukem	${_MKMSG_INSTALL} ${DESTDIR}/var/db/obsolete/${file}
4121.387Suebayasi	if [ ! -e ${DESTDIR}/var/db/obsolete/${file} ] || \
4131.387Suebayasi	    ! cmp -s ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete/${file}; then \
4141.387Suebayasi		${ETC_INSTALL_FILE} -o ${BINOWN} -g ${BINGRP} -m 644 \
4151.387Suebayasi		    ${OBSOLETE.dir}/${file} ${DESTDIR}/var/db/obsolete; \
4161.387Suebayasi	else true; fi
4171.246Slukem.endfor
4181.1Scgd
4191.242Slukem
4201.242Slukem# distrib-dirs --
4211.242Slukem#	Populate $DESTDIR with directories needed by NetBSD
4221.242Slukem#
4231.371Smrgdistrib-dirs: .PHONY check_DESTDIR
4241.371Smrg	cd ${NETBSDSRCDIR}/etc/mtree && ${MAKE} distrib-dirs
4251.255Slukem
4261.437SmartinCOMPRESS_PROGRAM=${"${USE_XZ_SETS:Uno}"!="no":?${TOOL_XZ}:${TOOL_GZIP}}
4271.434SmartinXZ_OPT=-9
4281.437SmartinTAR_SUFF=${"${USE_XZ_SETS:Uno}"!="no":?tar.xz:tgz}
4291.242Slukem
4301.242Slukem# release, snapshot --
4311.242Slukem#	Build a full distribution including kernels & install media.
4321.242Slukem#
4331.324Sdslrelease snapshot: .PHONY .MAKE check_DESTDIR check_RELEASEDIR snap_md_post
4341.285Slukem	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib/sets sets
4351.315Sjmc	${MAKESUMS} -A -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets \
4361.434Smartin		${KERNEL_SETS:@.SETS.@kern-${.SETS.}.${TAR_SUFF}@}
4371.286Scl	${MAKESUMS} -t ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel '*.gz'
4381.161Shubertf
4391.242Slukem
4401.242Slukem# iso-image --
4411.242Slukem#	Standalone target to create a CDROM image after the release
4421.242Slukem#	was composed.  Should be run after "make release" in src and xsrc.
4431.341Sbouyer#	The do-iso-image is to be called from etc.$MACHINE/Makefile.inc
4441.242Slukem#
4451.245Slukem#	Note: At least mkisofs 2.0 should be used.
4461.242Slukem#
4471.292SheCDROM_NAME_ADD?=
4481.415SmartinCDROM_IMAGE?=${RELEASEDIR}/images/NetBSD-${DISTRIBVER}-${MACHINE}.iso
4491.319SapbCDROM.dir=	${.OBJDIR}/cdrom.dir
4501.319SapbCDROM.pathlist=	${.OBJDIR}/cdrom.pathlist
4511.242Slukem
4521.341Sbouyeriso-image:
4531.341Sbouyer
4541.341Sbouyer.if ${MKISOFS} != true
4551.341Sbouyerdo-iso-image: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-post
4561.415Smartin	${MAKESUMS} -t ${RELEASEDIR}/images/ '*.iso'
4571.395Sjoerg	@echo "iso-image created as: ${CDROM_IMAGE}"
4581.341Sbouyer.else
4591.341Sbouyerdo-iso-image:
4601.341Sbouyer	@echo iso-image: mkisofs not found
4611.341Sbouyer.endif
4621.161Shubertf
4631.275Slukemiso-image-setup: .PHONY check_RELEASEDIR
4641.242Slukem	rm -f ${CDROM.pathlist}
4651.302Sfredb.for extra in README SOURCE_DATE source
4661.302Sfredb.if exists(${RELEASEDIR}/${extra})
4671.302Sfredb	echo "${extra}=${RELEASEDIR}/${extra}" >> ${CDROM.pathlist}
4681.302Sfredb.endif
4691.302Sfredb.endfor
4701.342Sbad	echo "${MACHINE}/=${RELEASEDIR}/${RELEASEMACHINEDIR}/" >> ${CDROM.pathlist}
4711.242Slukem	mkdir -p ${CDROM.dir}
4721.415Smartin
4731.415Smartincheck_imagedir:
4741.415Smartin	mkdir -p ${RELEASEDIR}/images
4751.242Slukem
4761.248Slukem# iso-image-mi --
4771.242Slukem#	Create the image after the MD operations have completed.
4781.248Slukem#
4791.415Smartiniso-image-mi: .PHONY check_DESTDIR check_RELEASEDIR iso-image-md-pre check_imagedir
4801.242Slukem	@if ! ${MKISOFS} --version; then \
4811.320Sapb		echo "install pkgsrc/sysutils/cdrtools and run 'make iso-image'." ; \
4821.242Slukem		false; \
4831.161Shubertf	fi
4841.242Slukem	${MKISOFS} ${MKISOFS_FLAGS} -graft-points -path-list ${CDROM.pathlist} \
4851.395Sjoerg	    -o ${CDROM_IMAGE} ${CDROM.dir}
4861.242Slukem
4871.248Slukem# iso-image-md-pre --
4881.242Slukem#	Setup ${CDROM.dir} to produce a bootable CD image.
4891.242Slukem#	Overridden by etc.$MACHINE/Makefile.inc
4901.242Slukem#
4911.324Sdsliso-image-md-pre: .PHONY check_DESTDIR check_RELEASEDIR iso-image-setup
4921.242Slukem#	(empty -- look in the machine-dependent Makefile.inc)
4931.161Shubertf
4941.248Slukem# iso-image-md-post --
4951.242Slukem#	Fixup the CD-image to be bootable.
4961.242Slukem#	Overridden by etc.$MACHINE/Makefile.inc
4971.242Slukem#
4981.324Sdsliso-image-md-post: .PHONY check_DESTDIR check_RELEASEDIR iso-image-mi
4991.242Slukem#	(empty -- look in the machine-dependent Makefile.inc)
5001.41Scgd
5011.242Slukem
5021.396Stsutsui# live-image --
5031.396Stsutsui#	Standalone target to create live images after the release was composed.
5041.396Stsutsui#	Should be run after "make release" in src and xsrc.
5051.396Stsutsui#	LIVEIMG_RELEASEDIR specifies where to install live images and
5061.396Stsutsui#	it can be set in MD etc.${MACHINE}/Makefile.inc.
5071.396Stsutsui#
5081.398SrizLIVEIMG_RELEASEDIR?= ${RELEASEDIR}/images
5091.396Stsutsui
5101.396Stsutsuilive-image: .PHONY check_DESTDIR check_RELEASEDIR
5111.396Stsutsui	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib live_image \
5121.396Stsutsui	    LIVEIMG_RELEASEDIR=${LIVEIMG_RELEASEDIR}
5131.396Stsutsui	${MAKESUMS} -t ${LIVEIMG_RELEASEDIR} '*.img.gz'
5141.396Stsutsui
5151.396Stsutsui# install-image --
5161.396Stsutsui#	Standalone target to create installation images
5171.396Stsutsui#	after the release was composed.
5181.396Stsutsui#	Should be run after "make release" in src and xsrc.
5191.396Stsutsui#	INSTIMG_RELEASEDIR specifies where to install live images and
5201.396Stsutsui#	it can be set in MD etc.${MACHINE}/Makefile.inc.
5211.396Stsutsui#
5221.398SrizINSTIMG_RELEASEDIR?= ${RELEASEDIR}/images
5231.396Stsutsui
5241.396Stsutsuiinstall-image: .PHONY check_DESTDIR check_RELEASEDIR
5251.396Stsutsui	${MAKEDIRTARGET} ${NETBSDSRCDIR}/distrib install_image \
5261.396Stsutsui	    INSTIMG_RELEASEDIR=${INSTIMG_RELEASEDIR}
5271.396Stsutsui	${MAKESUMS} -t ${INSTIMG_RELEASEDIR} '*.img.gz'
5281.396Stsutsui
5291.242Slukem# snap_pre --
5301.242Slukem#	Create ${RELEASEDIR} and necessary subdirectories.
5311.242Slukem#
5321.324Sdslsnap_pre: .PHONY check_DESTDIR check_RELEASEDIR distribution
5331.241Slukem	${INSTALL} -d -m 755 ${RELEASEDIR}
5341.255Slukem.if ${MKUPDATE} == "no"
5351.168Sjmc# Could be a mount point, ignore the errors
5361.286Scl	-/bin/rm -rf ${RELEASEDIR}/${RELEASEMACHINEDIR}
5371.240Slukem.endif
5381.286Scl	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}
5391.117Ssimonb.for dir in ${INSTALLATION_DIRS}
5401.286Scl	${INSTALL} -d -m 755 ${RELEASEDIR}/${RELEASEMACHINEDIR}/${dir}
5411.117Ssimonb.endfor
5421.96Scjs
5431.242Slukem# snap_post --
5441.242Slukem#	Build the install media and notes from distrib
5451.242Slukem#
5461.324Sdslsnap_post: .PHONY .MAKE build_kernelsets build_releasekernels
5471.255Slukem.if ${MKUPDATE} == "no"
5481.233Slukem	cd ${NETBSDSRCDIR}/distrib && ${MAKE} cleandir
5491.233Slukem.endif
5501.233Slukem	cd ${NETBSDSRCDIR}/distrib && ${MAKE} depend && ${MAKE} && \
5511.233Slukem	    ${MAKE} release
5521.233Slukem
5531.324Sdsl# build kernels --
5541.242Slukem#	This target builds the kernels specified by each port.
5551.242Slukem#	A port may specify the following kernels:
5561.196Sthorpej#
5571.196Sthorpej#	KERNEL_SETS		The list of kernels that will be
5581.196Sthorpej#				packaged into sets, named
5591.436Smartin#				kern-${kernel}.tgz (or .tar.xz).
5601.436Smartin#				These kernels are also placed in the
5611.436Smartin#				binary/kernel area of the release package
5621.436Smartin#				as netbsd-${kernel}.gz.
5631.196Sthorpej#
5641.196Sthorpej#	EXTRA_KERNELS		Additional kernels to place in the
5651.203Schs#				binary/kernel area of the release
5661.196Sthorpej#				package as netbsd-${kernel}.gz, but
5671.196Sthorpej#				which are not placed into sets. This
5681.196Sthorpej#				allows a port to provide e.g. a netbootable
5691.196Sthorpej#				installation kernel containing a ramdisk.
5701.196Sthorpej#
5711.196Sthorpej#	BUILD_KERNELS		Additional kernels to build which are
5721.196Sthorpej#				not placed into sets nor into the
5731.203Schs#				binary/kernel area of the release
5741.196Sthorpej#				package.  These are typically kernels
5751.196Sthorpej#				that are built for inclusion only in
5761.196Sthorpej#				installation disk/CD-ROM/tape images.
5771.116Sfair#
5781.242Slukem#	A port may also specify KERNEL_SUFFIXES, which is an optional list
5791.242Slukem#	of filename suffixes for kernels to include in the kernel sets and
5801.242Slukem#	in the binary/kernel area of the release package (e.g. "netbsd" vs.
5811.242Slukem#	"netbsd.ecoff" and "netbsd.srec").  It is not an error if kernels
5821.242Slukem#	with these suffixes do not exist in the kernel build directory.
5831.197Sthorpej#
5841.229Slukem#
5851.229Slukem# A list of all the kernels to build, which can be overridden from
5861.229Slukem# external sources (such as make(1)'s environment or command line)
5871.229Slukem#
5881.229SlukemALL_KERNELS?=	${KERNEL_SETS} ${EXTRA_KERNELS} ${BUILD_KERNELS}
5891.402Smlelstv.export ALL_KERNELS
5901.242Slukem
5911.359SapbGETKERNELAWK=	${TOOL_AWK} '/^config/ {print $$2; found=1} \
5921.116Sfair		END{ if (found == 0) print "netbsd"; }'
5931.242Slukem
5941.324Sdslbuild_kernels: .PHONY
5951.232Slukem#	Configure & compile kernels listed in ${ALL_KERNELS}
5961.232Slukem#
5971.201Slukem.if !defined(KERNELS_DONE)						# {
5981.424Suebayasi.for configfile in ${ALL_KERNELS:O:u}					# {
5991.324Sdslbuild_kernels: kern-${configfile}
6001.322Sdslkern-${configfile}: .PHONY .MAKE
6011.422Suebayasi	cd ${KERNCONFDIR} && ${TOOL_CONFIG} ${CONFIGOPTS} -s ${KERNSRCDIR} \
6021.455Schristos	    ${MKDEBUGKERNEL == "yes" :? -DDEBUG=-g :} \
6031.439Smartin	    -b ${KERNOBJDIR}/${configfile:C/.*\///} ${configfile}
6041.255Slukem.if ${MKUPDATE} == "no"
6051.427Schristos	${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} distclean
6061.96Scjs.endif
6071.427Schristos	${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} depend && \
6081.456Schristos	${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} && \
6091.456Schristos	${MAKE} -C ${KERNOBJDIR}/${configfile:C/.*\///} debuginstall
6101.232Slukem.endfor	# ALL_KERNELS							# }
6111.232Slukem.endif	# KERNELS_DONE							# }
6121.232Slukem
6131.324Sdslbuild_kernelsets: .PHONY
6141.241Slukem#	Create kernel sets from ${KERNEL_SETS} into
6151.286Scl#	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
6161.232Slukem#
6171.424Suebayasi.for configfile in ${KERNEL_SETS:O:u}					# {
6181.424Suebayasi.for configsel in ${ALL_KERNELS:O:u}
6191.402Smlelstv.if ${configfile} == ${configsel}
6201.324Sdslbuild_kernelsets: kernset-${configfile}
6211.324Sdslkernset-${configfile}: .PHONY build_kernels snap_pre
6221.430Schristos	@kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile}); \
6231.197Sthorpej	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
6241.256Sdsl	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
6251.434Smartin	kern_tgz=${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets/kern-${configfile}.${TAR_SUFF}; \
6261.434Smartin	pax_cmd="GZIP=${GZIP_FLAGS:Q} XZ_OPT=${XZ_OPT:Q} ${TOOL_PAX} ${PAX_TIMESTAMP} --use-compress-program ${COMPRESS_PROGRAM:Q} -O -w -M -N ${NETBSDSRCDIR}/etc -f $${kern_tgz}"; \
6271.256Sdsl	cd $${kerndir} && { \
6281.256Sdsl		kernels=; newest=; \
6291.210Slukem		for kernel in $${kernlist}; do \
6301.256Sdsl			for s in "" $${kernsuffixes}; do \
6311.256Sdsl				ks="$${kernel}$${s}"; \
6321.256Sdsl				[ -f $${ks} ] || continue; \
6331.256Sdsl				kernels="$${kernels} $${ks}"; \
6341.442Schristos				[ -z "$${newest}" -o $${ks} \
6351.442Schristos				    -nt "$${newest}" ] && newest=$${ks}; \
6361.455Schristos				[ ${MKDEBUGKERNEL} = "no" -o \
6371.458Skre				     ! -f $${ks}.gdb ] && continue; \
6381.455Schristos				kernels="$${kernels} $${ks}.gdb"; \
6391.197Sthorpej			done; \
6401.256Sdsl		done; \
6411.256Sdsl		[ $${kern_tgz} -nt "$${newest}" ] || { \
6421.256Sdsl			echo "echo $${kernels} | $${pax_cmd}"; \
6431.444Schristos			if [ ${KERNEL_DIR} = "yes" ]; then \
6441.442Schristos				tmpdir=kernel$$; \
6451.442Schristos				trap "rm -fr $${tmpdir}" 0 1 2 3 15; \
6461.442Schristos				mkdir -p $${tmpdir}/netbsd; \
6471.442Schristos				d=./netbsd; \
6481.442Schristos				cd $${tmpdir}; \
6491.442Schristos			else \
6501.442Schristos				d=.; \
6511.442Schristos			fi; \
6521.256Sdsl			( echo "/set uname=${BINOWN} gname=${BINGRP}"; \
6531.256Sdsl			echo ". type=dir optional"; \
6541.442Schristos			if [ ${KERNEL_DIR} = "yes" ]; then \
6551.442Schristos				echo "./netbsd type=dir optional"; \
6561.442Schristos			fi; \
6571.256Sdsl			for kernel in $${kernels}; do \
6581.442Schristos				if [ ${KERNEL_DIR} = "yes" ]; then \
6591.442Schristos					newname=$$(echo $${kernel} | \
6601.442Schristos					    ${TOOL_SED} -e s/netbsd/kernel/); \
6611.442Schristos					ln ../$${kernel} ./netbsd/$${newname}; \
6621.442Schristos				else \
6631.442Schristos					newname=$${kernel}; \
6641.442Schristos				fi; \
6651.442Schristos				echo "$${d}/$${newname} type=file"; \
6661.256Sdsl			done ) | eval $${pax_cmd}; \
6671.442Schristos			if [ ${KERNEL_DIR} = "yes" ]; then \
6681.442Schristos				mv $${kern_tgz} ..; \
6691.442Schristos			fi; \
6701.256Sdsl		} \
6711.256Sdsl	}
6721.402Smlelstv.endif
6731.402Smlelstv.endfor
6741.232Slukem.endfor	# KERNEL_SETS							# }
6751.232Slukem
6761.324Sdslbuild_releasekernels: .PHONY
6771.232Slukem#	Build kernel.gz from ${KERNEL_SETS} ${EXTRA_KERNELS} into
6781.286Scl#	${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel
6791.232Slukem#
6801.424Suebayasi.for configfile in ${KERNEL_SETS:O:u} ${EXTRA_KERNELS:O:u}		# {
6811.424Suebayasi.for configsel in ${ALL_KERNELS:O:u}
6821.402Smlelstv.if ${configfile} == ${configsel}
6831.324Sdslbuild_releasekernels: releasekern-${configfile}
6841.324Sdslreleasekern-${configfile}: .PHONY build_kernels snap_pre
6851.430Schristos	@kernlist=$$(${GETKERNELAWK} ${KERNCONFDIR}/${configfile:C/.*\///}); \
6861.197Sthorpej	kerndir=${KERNOBJDIR}/${configfile:C/.*\///}; \
6871.256Sdsl	kernsuffixes="${KERNEL_SUFFIXES:S/^/./}"; \
6881.429Schristos	dest="${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/kernel"; \
6891.256Sdsl	cd $${kerndir} && {	\
6901.256Sdsl		for kernel in $${kernlist}; do \
6911.256Sdsl			for s in "" $${kernsuffixes}; do \
6921.256Sdsl				ks="$${kernel}$${s}"; \
6931.256Sdsl				[ ! -f $${ks} ] && continue; \
6941.429Schristos				knl_gz="$${dest}/$${kernel}-${configfile:C/.*\///}$${s}.gz"; \
6951.256Sdsl				[ $${knl_gz} -nt $${ks} ] && continue; \
6961.352Sgdt				rm -f $${knl_gz}; \
6971.419Sapb				echo "${TOOL_GZIP} ${GZIP_FLAGS} -c < $${kerndir}/$${ks} > $${knl_gz}"; \
6981.419Sapb				${TOOL_GZIP} ${GZIP_FLAGS} -c < $${ks} > $${knl_gz}; \
6991.197Sthorpej			done; \
7001.256Sdsl		done; \
7011.256Sdsl	}
7021.402Smlelstv.endif
7031.402Smlelstv.endfor
7041.232Slukem.endfor	# KERNEL_SETS EXTRA_KERNELS					# }
7051.232Slukem
7061.456Schristos# install-debugkernels:
7071.456Schristos#	Create fake kernel debug files to satisfy the sets requirements
7081.456Schristos#	They will be later replaced with the real ones if we are building
7091.456Schristos#	kernels. This mess is needed because checkflist runs before the
7101.456Schristos#	kernels are built. It should really run before the sets are build.
7111.456Schristosinstall-debugkernels:
7121.456Schristos.if ${MKDEBUG:Uno} == "yes"
7131.457Schristos	@for i in $$(${NETBSDSRCDIR}/distrib/sets/makeflist debug | \
7141.457Schristos	    ${TOOL_GREP} -E '^./usr/libdata/debug/(nfs)?netbsd-'); do \
7151.457Schristos		echo touch ${DESTDIR}/$$i; \
7161.457Schristos		touch ${DESTDIR}/$$i; \
7171.457Schristos	done
7181.456Schristos.	for k in ${ALL_KERNELS}
7191.456Schristosinstall-debugkernels: ${DESTDIR}${DEBUGDIR}/netbsd-${k}.debug
7201.456Schristos		
7211.456Schristos${DESTDIR}${DEBUGDIR}/netbsd-${k}.debug:
7221.456Schristos	${_MKTARGET_INSTALL}
7231.456Schristos	touch ${.TARGET}
7241.456Schristos.	endfor
7251.456Schristos.endif
7261.456Schristos
7271.242Slukem# snap_md_post --
7281.242Slukem#	Machine dependent distribution media operations.
7291.242Slukem#	Overridden by etc.$MACHINE/Makefile.inc
7301.242Slukem#
7311.324Sdslsnap_md_post: .PHONY check_DESTDIR check_RELEASEDIR snap_post
7321.242Slukem#	(empty -- look in the machine-dependent Makefile.inc)
7331.242Slukem
7341.242Slukem
7351.242Slukemclean:
7361.246Slukem	-rm -rf ${CDROM.dir} ${CDROM.pathlist} ${OBSOLETE.dir}
7371.7Scgd
7381.392SjymSUBDIR=	defaults rc.d mtree
7391.362Scube
7401.1Scgd.include <bsd.prog.mk>
7411.362Scube.include <bsd.subdir.mk>
7421.309Stron
7431.309Strontest:
7441.309Stron	@echo ${OBSOLETE.files}
745