Makefile revision 1.259
11.259Spooka#	$NetBSD: Makefile,v 1.259 2008/10/16 09:43:12 pooka Exp $
21.95Scjs
31.193Slukem#
41.95Scjs# This is the top-level makefile for building NetBSD. For an outline of
51.95Scjs# how to build a snapshot or release, as well as other release engineering
61.221Ssalo# information, see http://www.NetBSD.org/developers/releng/index.html
71.95Scjs#
81.95Scjs# Not everything you can set or do is documented in this makefile. In
91.95Scjs# particular, you should review the files in /usr/share/mk (especially
101.95Scjs# bsd.README) for general information on building programs and writing
111.95Scjs# Makefiles within this structure, and see the comments in src/etc/Makefile
121.95Scjs# for further information on installation and release set options.
131.95Scjs#
141.95Scjs# Variables listed below can be set on the make command line (highest
151.95Scjs# priority), in /etc/mk.conf (middle priority), or in the environment
161.95Scjs# (lowest priority).
171.95Scjs#
181.95Scjs# Variables:
191.101Ssommerfe#   DESTDIR is the target directory for installation of the compiled
201.101Ssommerfe#	software. It defaults to /. Note that programs are built against
211.101Ssommerfe#	libraries installed in DESTDIR.
221.214Slukem#   MKMAN, if `no', will prevent building of manual pages.
231.214Slukem#   MKOBJDIRS, if not `no', will build object directories at
241.101Ssommerfe#	an appropriate point in a build.
251.214Slukem#   MKSHARE, if `no', will prevent building and installing
261.95Scjs#	anything in /usr/share.
271.214Slukem#   MKUPDATE, if not `no', will avoid a `make cleandir' at the start of
281.178Senami#	`make build', as well as having the effects listed in
291.178Senami#	/usr/share/mk/bsd.README.
301.125Smrg#   NOCLEANDIR, if defined, will avoid a `make cleandir' at the start
311.178Senami#	of the `make build'.
321.119Stoddpw#   NOINCLUDES will avoid the `make includes' usually done by `make build'.
331.95Scjs#
341.214Slukem#   See mk.conf(5) for more details.
351.214Slukem#
361.214Slukem#
371.95Scjs# Targets:
381.137Stv#   build:
391.196Slukem#	Builds a full release of NetBSD in DESTDIR, except for the
401.196Slukem#	/etc configuration files.
411.196Slukem#	If BUILD_DONE is set, this is an empty target.
421.196Slukem#   distribution:
431.196Slukem#	Builds a full release of NetBSD in DESTDIR, including the /etc
441.196Slukem#	configuration files.
451.196Slukem#   buildworld:
461.196Slukem#	As per `make distribution', except that it ensures that DESTDIR
471.196Slukem#	is not the root directory.
481.196Slukem#   installworld:
491.196Slukem#	Install the distribution from DESTDIR to INSTALLWORLDDIR (which
501.196Slukem#	defaults to the root directory).  Ensures that INSTALLWORLDDIR
511.196Slukem#	is the not root directory if cross compiling.
521.137Stv#   release:
531.240Slukem#	Does a `make distribution', and then tars up the DESTDIR files
541.252Slukem#	into ${RELEASEDIR}/${RELEASEMACHINEDIR}, in release(7) format.
551.196Slukem#	(See etc/Makefile for more information on this.)
561.137Stv#   regression-tests:
571.137Stv#	Runs the regression tests in "regress" on this host.
581.206Slukem#   sets:
591.252Slukem#	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/sets
601.252Slukem#	from ${DESTDIR}
611.206Slukem#   sourcesets:
621.206Slukem#	Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
631.241Sapb#   syspkgs:
641.252Slukem#	Populate ${RELEASEDIR}/${RELEASEMACHINEDIR}/binary/syspkgs
651.252Slukem#	from ${DESTDIR}
661.243Sapb#   iso-image:
671.248Sjnemeth#	Create CD-ROM image in RELEASEDIR/iso.
681.243Sapb#	RELEASEDIR must already have been populated by `make release'
691.243Sapb#	or equivalent.
701.248Sjnemeth#   iso-image-source:
711.248Sjnemeth#	Create CD-ROM image with source in RELEASEDIR/iso.
721.248Sjnemeth#	RELEASEDIR must already have been populated by
731.248Sjnemeth#	`make release sourcesets' or equivalent.
741.123Smrg#
751.137Stv# Targets invoked by `make build,' in order:
761.155Stv#   cleandir:        cleans the tree.
771.137Stv#   obj:             creates object directories.
781.152Stv#   do-tools:        builds host toolchain.
791.208Slukem#   do-distrib-dirs: creates the distribution directories.
801.208Slukem#   includes:        installs include files.
811.202Sthorpej#   do-tools-compat: builds the "libnbcompat" library; needed for some
821.202Sthorpej#                    random host tool programs in the source tree.
831.238Slukem#   do-lib-csu:      builds and installs prerequisites from lib/csu.
841.249Slukem#   do-libgcc:       builds and installs prerequisites from
851.249Slukem#                    gnu/lib/crtstuff${LIBGCC_EXT} (if necessary) and
861.249Slukem#                    gnu/lib/libgcc${LIBGCC_EXT}.
871.256Sgmcgarry#   do-libpcc:       builds and install prerequisites from
881.256Sgmcgarry#                    external/bsd/pcc/crtstuff and external/bsd/pcc/libpcc.
891.186Sthorpej#   do-lib-libc:     builds and installs prerequisites from lib/libc.
901.143Stv#   do-lib:          builds and installs prerequisites from lib.
911.143Stv#   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
921.253Slukem#   do-external-lib: builds and installs prerequisites from external/lib.
931.259Spooka#   do-sys-rump-fs-lib:  builds and installs prerequisites from sys/rump/fs/lib
941.259Spooka#   do-sys-rump-net-lib: builds and installs prerequisites from sys/rump/net/lib
951.189Sitohy#   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
961.137Stv#   do-build:        builds and installs the entire system.
971.257Slukem#   do-x11:          builds and installs X11; either
981.258Sjnemeth#                    X11R7 from src/external/mit/xorg if ${MKXORG} != "no"
991.257Slukem#                    or X11R6 from src/x11 if ${MKX11} != "no"
1001.222Slukem#   do-obsolete:     installs the obsolete sets (for the postinstall-* targets).
1011.193Slukem#
1021.32Scgd
1031.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
1041.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk
1051.146Stv.endif
1061.163Stv
1071.193Slukem#
1081.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
1091.163Stv# not be the top level objdir, because "make obj" can happen in the *middle*
1101.163Stv# of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
1111.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
1121.193Slukem#
1131.163Stv_SRC_TOP_OBJ_=
1141.148Sjmc
1151.146Stv.include <bsd.own.mk>
1161.4Scgd
1171.193Slukem#
1181.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously
1191.137Stv# with a standard recursive target.
1201.193Slukem#
1211.137Stv
1221.137Stv.if make(build) || make(release) || make(snapshot)
1231.137Stv.for targ in ${TARGETS:Nobj:Ncleandir}
1241.137Stv.if make(${targ}) && !target(.BEGIN)
1251.137Stv.BEGIN:
1261.137Stv	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
1271.137Stv	@false
1281.137Stv.endif
1291.137Stv.endfor
1301.137Stv.endif
1311.58Stv
1321.253Slukem_SUBDIR=	tools lib include gnu external bin games libexec sbin usr.bin
1331.251Sjmmv_SUBDIR+=	usr.sbin share rescue sys etc tests .WAIT distrib regress
1341.105Sassar
1351.193Slukem#
1361.137Stv# Weed out directories that don't exist.
1371.193Slukem#
1381.36Sexplorer
1391.137Stv.for dir in ${_SUBDIR}
1401.246Sdbj.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
1411.137StvSUBDIR+=	${dir}
1421.36Sexplorer.endif
1431.137Stv.endfor
1441.21Scgd
1451.13Sbrezak.if exists(regress)
1461.242Sdslregression-tests: .PHONY .MAKE
1471.10Scgd	@echo Running regression tests...
1481.232Slukem	${MAKEDIRTARGET} regress regress
1491.13Sbrezak.endif
1501.20Scgd
1511.214Slukem.if ${MKUNPRIVED} != "no"
1521.179SthorpejNOPOSTINSTALL=	# defined
1531.179Sthorpej.endif
1541.179Sthorpej
1551.242Sdslafterinstall: .PHONY .MAKE
1561.137Stv.if ${MKMAN} != "no"
1571.232Slukem	${MAKEDIRTARGET} share/man makedb
1581.137Stv.endif
1591.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
1601.232Slukem	${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
1611.176Slukem.endif
1621.179Sthorpej.if !defined(NOPOSTINSTALL)
1631.232Slukem	${MAKEDIRTARGET} . postinstall-check
1641.159Sperry.endif
1651.170Slukem
1661.239Slukem_POSTINSTALL=	${.CURDIR}/usr.sbin/postinstall/postinstall
1671.239Slukem
1681.228Slukempostinstall-check: .PHONY
1691.169Slukem	@echo "   === Post installation checks ==="
1701.250Spavel	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi
1711.171Slukem	@echo "   ================================"
1721.171Slukem
1731.228Slukempostinstall-fix: .NOTMAIN .PHONY
1741.171Slukem	@echo "   === Post installation fixes ==="
1751.239Slukem	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
1761.212Slukem	@echo "   ==============================="
1771.212Slukem
1781.228Slukempostinstall-fix-obsolete: .NOTMAIN .PHONY
1791.212Slukem	@echo "   === Removing obsolete files ==="
1801.239Slukem	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
1811.212Slukem	@echo "   ==============================="
1821.169Slukem
1831.108Serh
1841.193Slukem#
1851.137Stv# Targets (in order!) called by "make build".
1861.193Slukem#
1871.256Sgmcgarry.if defined(HAVE_GCC)
1881.245Smrg.if ${HAVE_GCC} == "3"
1891.220SmrgLIBGCC_EXT=3
1901.245Smrg.else
1911.244SmrgLIBGCC_EXT=4
1921.220Smrg.endif
1931.256Sgmcgarry.endif
1941.123Smrg
1951.156StvBUILDTARGETS+=	check-tools
1961.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
1971.155StvBUILDTARGETS+=	cleandir
1981.155Stv.endif
1991.149Stv.if ${MKOBJDIRS} != "no"
2001.137StvBUILDTARGETS+=	obj
2011.123Smrg.endif
2021.138Stv.if ${USETOOLS} == "yes"
2031.152StvBUILDTARGETS+=	do-tools
2041.131Stv.endif
2051.137Stv.if !defined(NODISTRIBDIRS)
2061.137StvBUILDTARGETS+=	do-distrib-dirs
2071.131Stv.endif
2081.137Stv.if !defined(NOINCLUDES)
2091.137StvBUILDTARGETS+=	includes
2101.131Stv.endif
2111.202SthorpejBUILDTARGETS+=	do-tools-compat
2121.231SskrllBUILDTARGETS+=	do-lib-csu
2131.207Sdrochner.if ${MKGCC} != "no"
2141.249SlukemBUILDTARGETS+=	do-libgcc
2151.207Sdrochner.endif
2161.256Sgmcgarry.if ${MKPCC} != "no"
2171.256SgmcgarryBUILDTARGET+=	do-libpcc
2181.256Sgmcgarry.endif
2191.231SskrllBUILDTARGETS+=	do-lib-libc
2201.253SlukemBUILDTARGETS+=	do-lib do-gnu-lib do-external-lib
2211.259SpookaBUILDTARGETS+=	do-sys-rump-fs-lib do-sys-rump-net-lib
2221.224SlukemBUILDTARGETS+=	do-ld.so
2231.224SlukemBUILDTARGETS+=	do-build
2241.257Slukem.if ${MKX11} != "no" || ${MKXORG} != "no"
2251.227SlukemBUILDTARGETS+=	do-x11
2261.227Slukem.endif
2271.200SlukemBUILDTARGETS+=	do-obsolete
2281.131Stv
2291.193Slukem#
2301.137Stv# Enforce proper ordering of some rules.
2311.193Slukem#
2321.123Smrg
2331.137Stv.ORDER:		${BUILDTARGETS}
2341.228Slukemincludes-lib:	.PHONY includes-include includes-sys
2351.228Slukemincludes-gnu:	.PHONY includes-lib
2361.123Smrg
2371.193Slukem#
2381.137Stv# Build the system and install into DESTDIR.
2391.193Slukem#
2401.123Smrg
2411.191SlukemSTART_TIME!=	date
2421.191Slukem
2431.242Sdslbuild: .PHONY .MAKE
2441.137Stv.if defined(BUILD_DONE)
2451.137Stv	@echo "Build already installed into ${DESTDIR}"
2461.137Stv.else
2471.191Slukem	@echo "Build started at: ${START_TIME}"
2481.145Stv.for tgt in ${BUILDTARGETS}
2491.232Slukem	${MAKEDIRTARGET} . ${tgt}
2501.145Stv.endfor
2511.232Slukem	${MAKEDIRTARGET} etc install-etc-release
2521.191Slukem	@echo   "Build started at:  ${START_TIME}"
2531.172Sbjh21	@printf "Build finished at: " && date
2541.71Smycroft.endif
2551.160Sthorpej
2561.193Slukem#
2571.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into
2581.193Slukem# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
2591.193Slukem#
2601.160Sthorpej
2611.242Sdsldistribution buildworld: .PHONY .MAKE
2621.194Slukem.if make(buildworld) && \
2631.194Slukem    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2641.193Slukem	@echo "Won't make ${.TARGET} with DESTDIR=/"
2651.193Slukem	@false
2661.193Slukem.endif
2671.232Slukem	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
2681.232Slukem	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
2691.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
2701.232Slukem	${MAKEDIRTARGET} . postinstall-fix-obsolete
2711.232Slukem	${MAKEDIRTARGET} distrib/sets checkflist
2721.181Sthorpej.endif
2731.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2741.185Slukem	@printf "make ${.TARGET} finished at: " && date
2751.123Smrg
2761.193Slukem#
2771.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
2781.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and
2791.193Slukem# the host's `uname -m` == ${MACHINE}.
2801.193Slukem#
2811.193Slukem
2821.193SlukemHOST_UNAME_S!=	uname -s
2831.193SlukemHOST_UNAME_M!=	uname -m
2841.193Slukem
2851.242Sdslinstallworld: .PHONY .MAKE
2861.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2871.193Slukem	@echo "Can't make ${.TARGET} to DESTDIR=/"
2881.193Slukem	@false
2891.193Slukem.endif
2901.193Slukem.if !defined(INSTALLWORLDDIR) || \
2911.193Slukem    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
2921.193Slukem.if (${HOST_UNAME_S} != "NetBSD")
2931.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
2941.193Slukem	@false
2951.193Slukem.endif
2961.193Slukem.if (${HOST_UNAME_M} != ${MACHINE})
2971.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
2981.193Slukem	@false
2991.193Slukem.endif
3001.193Slukem.endif
3011.232Slukem	${MAKEDIRTARGET} distrib/sets installsets \
3021.232Slukem	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
3031.232Slukem	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
3041.193Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3051.193Slukem	@printf "make ${.TARGET} finished at: " && date
3061.199Slukem
3071.199Slukem#
3081.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
3091.199Slukem#
3101.199Slukem
3111.241Sapb.for tgt in sets sourcesets syspkgs
3121.242Sdsl${tgt}: .PHONY .MAKE
3131.232Slukem	${MAKEDIRTARGET} distrib/sets ${tgt}
3141.206Slukem.endfor
3151.193Slukem
3161.193Slukem#
3171.240Slukem# Build a release or snapshot (implies "make distribution").  Note that
3181.181Sthorpej# in this case, the set lists will be checked before the tar files
3191.181Sthorpej# are made.
3201.193Slukem#
3211.123Smrg
3221.242Sdslrelease snapshot: .PHONY .MAKE
3231.240Slukem	${MAKEDIRTARGET} . distribution
3241.240Slukem	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
3251.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3261.185Slukem	@printf "make ${.TARGET} finished at: " && date
3271.123Smrg
3281.193Slukem#
3291.243Sapb# Create a CD-ROM image.
3301.243Sapb#
3311.243Sapb
3321.243Sapbiso-image: .PHONY
3331.247Sbouyer	${MAKEDIRTARGET} distrib iso_image
3341.243Sapb	${MAKEDIRTARGET} etc iso-image
3351.243Sapb	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3361.243Sapb	@printf "make ${.TARGET} finished at: " && date
3371.243Sapb
3381.248Sjnemethiso-image-source: .PHONY
3391.248Sjnemeth	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
3401.248Sjnemeth	${MAKEDIRTARGET} etc iso-image
3411.248Sjnemeth	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3421.248Sjnemeth	@printf "make ${.TARGET} finished at: " && date
3431.248Sjnemeth
3441.243Sapb#
3451.137Stv# Special components of the "make build" process.
3461.193Slukem#
3471.156Stv
3481.228Slukemcheck-tools: .PHONY
3491.223Slukem.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
3501.187Sthorpej	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
3511.187Sthorpej	@echo '*** May result in a failed build or corrupt binaries!'
3521.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN)
3531.187Sthorpej	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
3541.156Stv.endif
3551.173Ssommerfe.if defined(NBUILDJOBS)
3561.173Ssommerfe	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
3571.173Ssommerfe.endif
3581.123Smrg
3591.242Sdsldo-distrib-dirs: .PHONY .MAKE
3601.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == ""
3611.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
3621.147Sjmc.else
3631.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
3641.147Sjmc.endif
3651.190Slukem
3661.190Slukem.for targ in cleandir obj includes
3671.228Slukemdo-${targ}: .PHONY ${targ}
3681.190Slukem	@true
3691.190Slukem.endfor
3701.123Smrg
3711.256Sgmcgarry.if defined(HAVE_GCC)
3721.256SgmcgarryBUILD_CC_LIB= gnu/lib/crtstuff${LIBGCC_EXT}
3731.256SgmcgarryBUILD_CC_LIB+= gnu/lib/libgcc${LIBGCC_EXT}
3741.256Sgmcgarry.elif defined(HAVE_PCC)
3751.256SgmcgarryBUILD_CC_LIB+= external/bsd/pcc/crtstuff
3761.256SgmcgarryBUILD_CC_LIB+= external/bsd/pcc/libpcc
3771.256Sgmcgarry.endif
3781.256Sgmcgarry
3791.259Spooka.for dir in tools tools/compat lib/csu ${BUILD_CC_LIB} lib/libc lib/libdes lib gnu/lib external/lib sys/rump/fs/lib sys/rump/net/lib
3801.242Sdsldo-${dir:S/\//-/g}: .PHONY .MAKE
3811.137Stv.for targ in dependall install
3821.232Slukem	${MAKEDIRTARGET} ${dir} ${targ}
3831.137Stv.endfor
3841.184Slukem.endfor
3851.184Slukem
3861.249Slukemdo-libgcc: .PHONY .MAKE
3871.256Sgmcgarry.if defined(HAVE_GCC)
3881.249Slukem.if ${MKGCC} != "no"
3891.249Slukem.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
3901.249Slukem	${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT}
3911.249Slukem.endif
3921.249Slukem	${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT}
3931.249Slukem.endif
3941.256Sgmcgarry.endif
3951.256Sgmcgarry
3961.256Sgmcgarrydo-libpcc: .PHONY .MAKE
3971.256Sgmcgarry.if defined(HAVE_PCC)
3981.256Sgmcgarry.if ${MKPCC} != "no"
3991.256Sgmcgarry	${MAKEDIRTARGET} . do-pcc-lib-crtstuff
4001.256Sgmcgarry	${MAKEDIRTARGET} . do-pcc-lib-libpcc
4011.256Sgmcgarry.endif
4021.256Sgmcgarry.endif
4031.249Slukem
4041.242Sdsldo-ld.so: .PHONY .MAKE
4051.184Slukem.for targ in dependall install
4061.189Sitohy.if (${OBJECT_FMT} == "a.out")
4071.232Slukem	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
4081.189Sitohy.endif
4091.189Sitohy.if (${OBJECT_FMT} == "ELF")
4101.232Slukem	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
4111.189Sitohy.endif
4121.137Stv.endfor
4131.143Stv
4141.242Sdsldo-build: .PHONY .MAKE
4151.154Stv.for targ in dependall install
4161.232Slukem	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
4171.154Stv.endfor
4181.200Slukem
4191.242Sdsldo-x11: .PHONY .MAKE
4201.254Smrg.if ${MKXORG} != "no"
4211.254Smrg	${MAKEDIRTARGET} external/mit/xorg build
4221.257Slukem.elif ${MKX11} != "no"
4231.257Slukem	${MAKEDIRTARGET} x11 build
4241.254Smrg.else
4251.257Slukem	@echo "Neither MKX11 or MKXORG is enabled"
4261.257Slukem	@false
4271.254Smrg.endif
4281.227Slukem
4291.242Sdsldo-obsolete: .PHONY .MAKE
4301.232Slukem	${MAKEDIRTARGET} etc install-obsolete-lists
4311.87Scjs
4321.193Slukem#
4331.137Stv# Speedup stubs for some subtrees that don't need to run these rules.
4341.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.)
4351.193Slukem#
4361.129Stv
4371.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
4381.228Slukemincludes-${dir}: .PHONY
4391.152Stv	@true
4401.152Stv.endfor
4411.152Stv.for dir in etc distrib regress
4421.228Slukeminstall-${dir}: .PHONY
4431.152Stv	@true
4441.152Stv.endfor
4451.152Stv
4461.193Slukem#
4471.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant
4481.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
4491.193Slukem#
4501.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY
4511.136Snathanw	@true
4521.130Stv
4531.211Slukem.include <bsd.sys.mk>
4541.151Stv.include <bsd.obj.mk>
4551.209Slukem.include <bsd.kernobj.mk>
4561.146Stv.include <bsd.subdir.mk>
4571.144Stv
4581.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING
4591.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc
4601.230Slukem	${_MKMSG_CREATE} ${.TARGET}
4611.216Slukem	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
4621.209Slukem
4631.209Slukem
4641.209Slukem#
4651.209Slukem# Display current make(1) parameters
4661.209Slukem#
4671.242Sdslparams: .PHONY .MAKE
4681.232Slukem	${MAKEDIRTARGET} etc params
469