Makefile revision 1.250
11.250Spavel#	$NetBSD: Makefile,v 1.250 2007/10/07 16:35:21 pavel 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.196Slukem#	into RELEASEDIR/${MACHINE}, 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.206Slukem#	Populate ${RELEASEDIR}/${MACHINE}/binary/sets from ${DESTDIR}
601.206Slukem#   sourcesets:
611.206Slukem#	Populate ${RELEASEDIR}/source/sets from ${NETBSDSRCDIR}
621.241Sapb#   syspkgs:
631.241Sapb#	Populate ${RELEASEDIR}/${MACHINE}/binary/syspkgs from ${DESTDIR}
641.243Sapb#   iso-image:
651.248Sjnemeth#	Create CD-ROM image in RELEASEDIR/iso.
661.243Sapb#	RELEASEDIR must already have been populated by `make release'
671.243Sapb#	or equivalent.
681.248Sjnemeth#   iso-image-source:
691.248Sjnemeth#	Create CD-ROM image with source in RELEASEDIR/iso.
701.248Sjnemeth#	RELEASEDIR must already have been populated by
711.248Sjnemeth#	`make release sourcesets' or equivalent.
721.123Smrg#
731.137Stv# Targets invoked by `make build,' in order:
741.155Stv#   cleandir:        cleans the tree.
751.137Stv#   obj:             creates object directories.
761.152Stv#   do-tools:        builds host toolchain.
771.208Slukem#   do-distrib-dirs: creates the distribution directories.
781.208Slukem#   includes:        installs include files.
791.202Sthorpej#   do-tools-compat: builds the "libnbcompat" library; needed for some
801.202Sthorpej#                    random host tool programs in the source tree.
811.238Slukem#   do-lib-csu:      builds and installs prerequisites from lib/csu.
821.249Slukem#   do-libgcc:       builds and installs prerequisites from
831.249Slukem#                    gnu/lib/crtstuff${LIBGCC_EXT} (if necessary) and
841.249Slukem#                    gnu/lib/libgcc${LIBGCC_EXT}.
851.186Sthorpej#   do-lib-libc:     builds and installs prerequisites from lib/libc.
861.143Stv#   do-lib:          builds and installs prerequisites from lib.
871.143Stv#   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
881.189Sitohy#   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
891.137Stv#   do-build:        builds and installs the entire system.
901.227Slukem#   do-x11:          builds and installs X11R6 from src/x11 if ${MKX11} != "no"
911.222Slukem#   do-obsolete:     installs the obsolete sets (for the postinstall-* targets).
921.193Slukem#
931.32Scgd
941.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
951.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk
961.146Stv.endif
971.163Stv
981.193Slukem#
991.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
1001.163Stv# not be the top level objdir, because "make obj" can happen in the *middle*
1011.163Stv# of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
1021.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
1031.193Slukem#
1041.163Stv_SRC_TOP_OBJ_=
1051.148Sjmc
1061.146Stv.include <bsd.own.mk>
1071.4Scgd
1081.193Slukem#
1091.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously
1101.137Stv# with a standard recursive target.
1111.193Slukem#
1121.137Stv
1131.137Stv.if make(build) || make(release) || make(snapshot)
1141.137Stv.for targ in ${TARGETS:Nobj:Ncleandir}
1151.137Stv.if make(${targ}) && !target(.BEGIN)
1161.137Stv.BEGIN:
1171.137Stv	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
1181.137Stv	@false
1191.137Stv.endif
1201.137Stv.endfor
1211.137Stv.endif
1221.58Stv
1231.166Ssimonb_SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
1241.205Sthorpej_SUBDIR+=	usr.sbin share rescue sys etc .WAIT distrib regress
1251.105Sassar
1261.193Slukem#
1271.137Stv# Weed out directories that don't exist.
1281.193Slukem#
1291.36Sexplorer
1301.137Stv.for dir in ${_SUBDIR}
1311.246Sdbj.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
1321.137StvSUBDIR+=	${dir}
1331.36Sexplorer.endif
1341.137Stv.endfor
1351.21Scgd
1361.13Sbrezak.if exists(regress)
1371.242Sdslregression-tests: .PHONY .MAKE
1381.10Scgd	@echo Running regression tests...
1391.232Slukem	${MAKEDIRTARGET} regress regress
1401.13Sbrezak.endif
1411.20Scgd
1421.214Slukem.if ${MKUNPRIVED} != "no"
1431.179SthorpejNOPOSTINSTALL=	# defined
1441.179Sthorpej.endif
1451.179Sthorpej
1461.242Sdslafterinstall: .PHONY .MAKE
1471.137Stv.if ${MKMAN} != "no"
1481.232Slukem	${MAKEDIRTARGET} share/man makedb
1491.137Stv.endif
1501.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
1511.232Slukem	${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta
1521.176Slukem.endif
1531.179Sthorpej.if !defined(NOPOSTINSTALL)
1541.232Slukem	${MAKEDIRTARGET} . postinstall-check
1551.159Sperry.endif
1561.170Slukem
1571.239Slukem_POSTINSTALL=	${.CURDIR}/usr.sbin/postinstall/postinstall
1581.239Slukem
1591.228Slukempostinstall-check: .PHONY
1601.169Slukem	@echo "   === Post installation checks ==="
1611.250Spavel	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi
1621.171Slukem	@echo "   ================================"
1631.171Slukem
1641.228Slukempostinstall-fix: .NOTMAIN .PHONY
1651.171Slukem	@echo "   === Post installation fixes ==="
1661.239Slukem	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix
1671.212Slukem	@echo "   ==============================="
1681.212Slukem
1691.228Slukempostinstall-fix-obsolete: .NOTMAIN .PHONY
1701.212Slukem	@echo "   === Removing obsolete files ==="
1711.239Slukem	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
1721.212Slukem	@echo "   ==============================="
1731.169Slukem
1741.108Serh
1751.193Slukem#
1761.137Stv# Targets (in order!) called by "make build".
1771.193Slukem#
1781.245Smrg.if ${HAVE_GCC} == "3"
1791.220SmrgLIBGCC_EXT=3
1801.245Smrg.else
1811.244SmrgLIBGCC_EXT=4
1821.220Smrg.endif
1831.123Smrg
1841.156StvBUILDTARGETS+=	check-tools
1851.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
1861.155StvBUILDTARGETS+=	cleandir
1871.155Stv.endif
1881.149Stv.if ${MKOBJDIRS} != "no"
1891.137StvBUILDTARGETS+=	obj
1901.123Smrg.endif
1911.138Stv.if ${USETOOLS} == "yes"
1921.152StvBUILDTARGETS+=	do-tools
1931.131Stv.endif
1941.137Stv.if !defined(NODISTRIBDIRS)
1951.137StvBUILDTARGETS+=	do-distrib-dirs
1961.131Stv.endif
1971.137Stv.if !defined(NOINCLUDES)
1981.137StvBUILDTARGETS+=	includes
1991.131Stv.endif
2001.202SthorpejBUILDTARGETS+=	do-tools-compat
2011.231SskrllBUILDTARGETS+=	do-lib-csu
2021.207Sdrochner.if ${MKGCC} != "no"
2031.249SlukemBUILDTARGETS+=	do-libgcc
2041.207Sdrochner.endif
2051.231SskrllBUILDTARGETS+=	do-lib-libc
2061.224SlukemBUILDTARGETS+=	do-lib do-gnu-lib
2071.224SlukemBUILDTARGETS+=	do-ld.so
2081.224SlukemBUILDTARGETS+=	do-build
2091.227Slukem.if ${MKX11} != "no"
2101.227SlukemBUILDTARGETS+=	do-x11
2111.227Slukem.endif
2121.200SlukemBUILDTARGETS+=	do-obsolete
2131.131Stv
2141.193Slukem#
2151.137Stv# Enforce proper ordering of some rules.
2161.193Slukem#
2171.123Smrg
2181.137Stv.ORDER:		${BUILDTARGETS}
2191.228Slukemincludes-lib:	.PHONY includes-include includes-sys
2201.228Slukemincludes-gnu:	.PHONY includes-lib
2211.123Smrg
2221.193Slukem#
2231.137Stv# Build the system and install into DESTDIR.
2241.193Slukem#
2251.123Smrg
2261.191SlukemSTART_TIME!=	date
2271.191Slukem
2281.242Sdslbuild: .PHONY .MAKE
2291.137Stv.if defined(BUILD_DONE)
2301.137Stv	@echo "Build already installed into ${DESTDIR}"
2311.137Stv.else
2321.191Slukem	@echo "Build started at: ${START_TIME}"
2331.145Stv.for tgt in ${BUILDTARGETS}
2341.232Slukem	${MAKEDIRTARGET} . ${tgt}
2351.145Stv.endfor
2361.232Slukem	${MAKEDIRTARGET} etc install-etc-release
2371.191Slukem	@echo   "Build started at:  ${START_TIME}"
2381.172Sbjh21	@printf "Build finished at: " && date
2391.71Smycroft.endif
2401.160Sthorpej
2411.193Slukem#
2421.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into
2431.193Slukem# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
2441.193Slukem#
2451.160Sthorpej
2461.242Sdsldistribution buildworld: .PHONY .MAKE
2471.194Slukem.if make(buildworld) && \
2481.194Slukem    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2491.193Slukem	@echo "Won't make ${.TARGET} with DESTDIR=/"
2501.193Slukem	@false
2511.193Slukem.endif
2521.232Slukem	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
2531.232Slukem	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
2541.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
2551.232Slukem	${MAKEDIRTARGET} . postinstall-fix-obsolete
2561.232Slukem	${MAKEDIRTARGET} distrib/sets checkflist
2571.181Sthorpej.endif
2581.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2591.185Slukem	@printf "make ${.TARGET} finished at: " && date
2601.123Smrg
2611.193Slukem#
2621.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
2631.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and
2641.193Slukem# the host's `uname -m` == ${MACHINE}.
2651.193Slukem#
2661.193Slukem
2671.193SlukemHOST_UNAME_S!=	uname -s
2681.193SlukemHOST_UNAME_M!=	uname -m
2691.193Slukem
2701.242Sdslinstallworld: .PHONY .MAKE
2711.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2721.193Slukem	@echo "Can't make ${.TARGET} to DESTDIR=/"
2731.193Slukem	@false
2741.193Slukem.endif
2751.193Slukem.if !defined(INSTALLWORLDDIR) || \
2761.193Slukem    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
2771.193Slukem.if (${HOST_UNAME_S} != "NetBSD")
2781.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
2791.193Slukem	@false
2801.193Slukem.endif
2811.193Slukem.if (${HOST_UNAME_M} != ${MACHINE})
2821.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
2831.193Slukem	@false
2841.193Slukem.endif
2851.193Slukem.endif
2861.232Slukem	${MAKEDIRTARGET} distrib/sets installsets \
2871.232Slukem	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
2881.232Slukem	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
2891.193Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2901.193Slukem	@printf "make ${.TARGET} finished at: " && date
2911.199Slukem
2921.199Slukem#
2931.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
2941.199Slukem#
2951.199Slukem
2961.241Sapb.for tgt in sets sourcesets syspkgs
2971.242Sdsl${tgt}: .PHONY .MAKE
2981.232Slukem	${MAKEDIRTARGET} distrib/sets ${tgt}
2991.206Slukem.endfor
3001.193Slukem
3011.193Slukem#
3021.240Slukem# Build a release or snapshot (implies "make distribution").  Note that
3031.181Sthorpej# in this case, the set lists will be checked before the tar files
3041.181Sthorpej# are made.
3051.193Slukem#
3061.123Smrg
3071.242Sdslrelease snapshot: .PHONY .MAKE
3081.240Slukem	${MAKEDIRTARGET} . distribution
3091.240Slukem	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
3101.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3111.185Slukem	@printf "make ${.TARGET} finished at: " && date
3121.123Smrg
3131.193Slukem#
3141.243Sapb# Create a CD-ROM image.
3151.243Sapb#
3161.243Sapb
3171.243Sapbiso-image: .PHONY
3181.247Sbouyer	${MAKEDIRTARGET} distrib iso_image
3191.243Sapb	${MAKEDIRTARGET} etc iso-image
3201.243Sapb	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3211.243Sapb	@printf "make ${.TARGET} finished at: " && date
3221.243Sapb
3231.248Sjnemethiso-image-source: .PHONY
3241.248Sjnemeth	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
3251.248Sjnemeth	${MAKEDIRTARGET} etc iso-image
3261.248Sjnemeth	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3271.248Sjnemeth	@printf "make ${.TARGET} finished at: " && date
3281.248Sjnemeth
3291.243Sapb#
3301.137Stv# Special components of the "make build" process.
3311.193Slukem#
3321.156Stv
3331.228Slukemcheck-tools: .PHONY
3341.223Slukem.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
3351.187Sthorpej	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
3361.187Sthorpej	@echo '*** May result in a failed build or corrupt binaries!'
3371.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN)
3381.187Sthorpej	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
3391.156Stv.endif
3401.173Ssommerfe.if defined(NBUILDJOBS)
3411.173Ssommerfe	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
3421.173Ssommerfe.endif
3431.123Smrg
3441.242Sdsldo-distrib-dirs: .PHONY .MAKE
3451.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == ""
3461.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
3471.147Sjmc.else
3481.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
3491.147Sjmc.endif
3501.190Slukem
3511.190Slukem.for targ in cleandir obj includes
3521.228Slukemdo-${targ}: .PHONY ${targ}
3531.190Slukem	@true
3541.190Slukem.endfor
3551.123Smrg
3561.236Sthorpej.for dir in tools tools/compat lib/csu gnu/lib/crtstuff${LIBGCC_EXT} gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib
3571.242Sdsldo-${dir:S/\//-/g}: .PHONY .MAKE
3581.137Stv.for targ in dependall install
3591.232Slukem	${MAKEDIRTARGET} ${dir} ${targ}
3601.137Stv.endfor
3611.184Slukem.endfor
3621.184Slukem
3631.249Slukemdo-libgcc: .PHONY .MAKE
3641.249Slukem.if ${MKGCC} != "no"
3651.249Slukem.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
3661.249Slukem	${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT}
3671.249Slukem.endif
3681.249Slukem	${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT}
3691.249Slukem.endif
3701.249Slukem
3711.242Sdsldo-ld.so: .PHONY .MAKE
3721.184Slukem.for targ in dependall install
3731.189Sitohy.if (${OBJECT_FMT} == "a.out")
3741.232Slukem	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
3751.189Sitohy.endif
3761.189Sitohy.if (${OBJECT_FMT} == "ELF")
3771.232Slukem	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
3781.189Sitohy.endif
3791.137Stv.endfor
3801.143Stv
3811.242Sdsldo-build: .PHONY .MAKE
3821.154Stv.for targ in dependall install
3831.232Slukem	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
3841.154Stv.endfor
3851.200Slukem
3861.242Sdsldo-x11: .PHONY .MAKE
3871.232Slukem	${MAKEDIRTARGET} x11 build
3881.227Slukem
3891.242Sdsldo-obsolete: .PHONY .MAKE
3901.232Slukem	${MAKEDIRTARGET} etc install-obsolete-lists
3911.87Scjs
3921.193Slukem#
3931.137Stv# Speedup stubs for some subtrees that don't need to run these rules.
3941.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.)
3951.193Slukem#
3961.129Stv
3971.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
3981.228Slukemincludes-${dir}: .PHONY
3991.152Stv	@true
4001.152Stv.endfor
4011.152Stv.for dir in etc distrib regress
4021.228Slukeminstall-${dir}: .PHONY
4031.152Stv	@true
4041.152Stv.endfor
4051.152Stv
4061.193Slukem#
4071.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant
4081.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
4091.193Slukem#
4101.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY
4111.136Snathanw	@true
4121.130Stv
4131.211Slukem.include <bsd.sys.mk>
4141.151Stv.include <bsd.obj.mk>
4151.209Slukem.include <bsd.kernobj.mk>
4161.146Stv.include <bsd.subdir.mk>
4171.144Stv
4181.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING
4191.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc
4201.230Slukem	${_MKMSG_CREATE} ${.TARGET}
4211.216Slukem	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
4221.209Slukem
4231.209Slukem
4241.209Slukem#
4251.209Slukem# Display current make(1) parameters
4261.209Slukem#
4271.242Sdslparams: .PHONY .MAKE
4281.232Slukem	${MAKEDIRTARGET} etc params
429