Makefile revision 1.248
11.248Sjnemeth#	$NetBSD: Makefile,v 1.248 2007/08/30 05:30:02 jnemeth 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.236Sthorpej#   do-gnu-lib-crtstuff3: builds and installs prerequisites from
831.236Sthorpej#			  gnu/lib/crtstuff3
841.222Slukem#   do-gnu-lib-libgcc3: builds and installs prerequisites from gnu/lib/libgcc3
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.239Slukem	${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check
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.244Smrg.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4")
2041.236SthorpejBUILDTARGETS+=	do-gnu-lib-crtstuff${LIBGCC_EXT}
2051.237Stacha.endif
2061.220SmrgBUILDTARGETS+=	do-gnu-lib-libgcc${LIBGCC_EXT}
2071.207Sdrochner.endif
2081.231SskrllBUILDTARGETS+=	do-lib-libc
2091.224SlukemBUILDTARGETS+=	do-lib do-gnu-lib
2101.224SlukemBUILDTARGETS+=	do-ld.so
2111.224SlukemBUILDTARGETS+=	do-build
2121.227Slukem.if ${MKX11} != "no"
2131.227SlukemBUILDTARGETS+=	do-x11
2141.227Slukem.endif
2151.200SlukemBUILDTARGETS+=	do-obsolete
2161.131Stv
2171.193Slukem#
2181.137Stv# Enforce proper ordering of some rules.
2191.193Slukem#
2201.123Smrg
2211.137Stv.ORDER:		${BUILDTARGETS}
2221.228Slukemincludes-lib:	.PHONY includes-include includes-sys
2231.228Slukemincludes-gnu:	.PHONY includes-lib
2241.123Smrg
2251.193Slukem#
2261.137Stv# Build the system and install into DESTDIR.
2271.193Slukem#
2281.123Smrg
2291.191SlukemSTART_TIME!=	date
2301.191Slukem
2311.242Sdslbuild: .PHONY .MAKE
2321.137Stv.if defined(BUILD_DONE)
2331.137Stv	@echo "Build already installed into ${DESTDIR}"
2341.137Stv.else
2351.191Slukem	@echo "Build started at: ${START_TIME}"
2361.145Stv.for tgt in ${BUILDTARGETS}
2371.232Slukem	${MAKEDIRTARGET} . ${tgt}
2381.145Stv.endfor
2391.232Slukem	${MAKEDIRTARGET} etc install-etc-release
2401.191Slukem	@echo   "Build started at:  ${START_TIME}"
2411.172Sbjh21	@printf "Build finished at: " && date
2421.71Smycroft.endif
2431.160Sthorpej
2441.193Slukem#
2451.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into
2461.193Slukem# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
2471.193Slukem#
2481.160Sthorpej
2491.242Sdsldistribution buildworld: .PHONY .MAKE
2501.194Slukem.if make(buildworld) && \
2511.194Slukem    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2521.193Slukem	@echo "Won't make ${.TARGET} with DESTDIR=/"
2531.193Slukem	@false
2541.193Slukem.endif
2551.232Slukem	${MAKEDIRTARGET} . build NOPOSTINSTALL=1
2561.232Slukem	${MAKEDIRTARGET} etc distribution INSTALL_DONE=1
2571.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
2581.232Slukem	${MAKEDIRTARGET} . postinstall-fix-obsolete
2591.232Slukem	${MAKEDIRTARGET} distrib/sets checkflist
2601.181Sthorpej.endif
2611.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2621.185Slukem	@printf "make ${.TARGET} finished at: " && date
2631.123Smrg
2641.193Slukem#
2651.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
2661.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and
2671.193Slukem# the host's `uname -m` == ${MACHINE}.
2681.193Slukem#
2691.193Slukem
2701.193SlukemHOST_UNAME_S!=	uname -s
2711.193SlukemHOST_UNAME_M!=	uname -m
2721.193Slukem
2731.242Sdslinstallworld: .PHONY .MAKE
2741.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2751.193Slukem	@echo "Can't make ${.TARGET} to DESTDIR=/"
2761.193Slukem	@false
2771.193Slukem.endif
2781.193Slukem.if !defined(INSTALLWORLDDIR) || \
2791.193Slukem    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
2801.193Slukem.if (${HOST_UNAME_S} != "NetBSD")
2811.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
2821.193Slukem	@false
2831.193Slukem.endif
2841.193Slukem.if (${HOST_UNAME_M} != ${MACHINE})
2851.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
2861.193Slukem	@false
2871.193Slukem.endif
2881.193Slukem.endif
2891.232Slukem	${MAKEDIRTARGET} distrib/sets installsets \
2901.232Slukem	    INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS=
2911.232Slukem	${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR}
2921.193Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2931.193Slukem	@printf "make ${.TARGET} finished at: " && date
2941.199Slukem
2951.199Slukem#
2961.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
2971.199Slukem#
2981.199Slukem
2991.241Sapb.for tgt in sets sourcesets syspkgs
3001.242Sdsl${tgt}: .PHONY .MAKE
3011.232Slukem	${MAKEDIRTARGET} distrib/sets ${tgt}
3021.206Slukem.endfor
3031.193Slukem
3041.193Slukem#
3051.240Slukem# Build a release or snapshot (implies "make distribution").  Note that
3061.181Sthorpej# in this case, the set lists will be checked before the tar files
3071.181Sthorpej# are made.
3081.193Slukem#
3091.123Smrg
3101.242Sdslrelease snapshot: .PHONY .MAKE
3111.240Slukem	${MAKEDIRTARGET} . distribution
3121.240Slukem	${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1
3131.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3141.185Slukem	@printf "make ${.TARGET} finished at: " && date
3151.123Smrg
3161.193Slukem#
3171.243Sapb# Create a CD-ROM image.
3181.243Sapb#
3191.243Sapb
3201.243Sapbiso-image: .PHONY
3211.247Sbouyer	${MAKEDIRTARGET} distrib iso_image
3221.243Sapb	${MAKEDIRTARGET} etc iso-image
3231.243Sapb	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3241.243Sapb	@printf "make ${.TARGET} finished at: " && date
3251.243Sapb
3261.248Sjnemethiso-image-source: .PHONY
3271.248Sjnemeth	${MAKEDIRTARGET} distrib iso_image CDSOURCE=true
3281.248Sjnemeth	${MAKEDIRTARGET} etc iso-image
3291.248Sjnemeth	@echo   "make ${.TARGET} started at:  ${START_TIME}"
3301.248Sjnemeth	@printf "make ${.TARGET} finished at: " && date
3311.248Sjnemeth
3321.243Sapb#
3331.137Stv# Special components of the "make build" process.
3341.193Slukem#
3351.156Stv
3361.228Slukemcheck-tools: .PHONY
3371.223Slukem.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN)
3381.187Sthorpej	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
3391.187Sthorpej	@echo '*** May result in a failed build or corrupt binaries!'
3401.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN)
3411.187Sthorpej	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
3421.156Stv.endif
3431.173Ssommerfe.if defined(NBUILDJOBS)
3441.173Ssommerfe	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
3451.173Ssommerfe.endif
3461.123Smrg
3471.242Sdsldo-distrib-dirs: .PHONY .MAKE
3481.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == ""
3491.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/
3501.147Sjmc.else
3511.232Slukem	${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR}
3521.147Sjmc.endif
3531.190Slukem
3541.190Slukem.for targ in cleandir obj includes
3551.228Slukemdo-${targ}: .PHONY ${targ}
3561.190Slukem	@true
3571.190Slukem.endfor
3581.123Smrg
3591.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
3601.242Sdsldo-${dir:S/\//-/g}: .PHONY .MAKE
3611.137Stv.for targ in dependall install
3621.232Slukem	${MAKEDIRTARGET} ${dir} ${targ}
3631.137Stv.endfor
3641.184Slukem.endfor
3651.184Slukem
3661.242Sdsldo-ld.so: .PHONY .MAKE
3671.184Slukem.for targ in dependall install
3681.189Sitohy.if (${OBJECT_FMT} == "a.out")
3691.232Slukem	${MAKEDIRTARGET} libexec/ld.aout_so ${targ}
3701.189Sitohy.endif
3711.189Sitohy.if (${OBJECT_FMT} == "ELF")
3721.232Slukem	${MAKEDIRTARGET} libexec/ld.elf_so ${targ}
3731.189Sitohy.endif
3741.137Stv.endfor
3751.143Stv
3761.242Sdsldo-build: .PHONY .MAKE
3771.154Stv.for targ in dependall install
3781.232Slukem	${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no
3791.154Stv.endfor
3801.200Slukem
3811.242Sdsldo-x11: .PHONY .MAKE
3821.232Slukem	${MAKEDIRTARGET} x11 build
3831.227Slukem
3841.242Sdsldo-obsolete: .PHONY .MAKE
3851.232Slukem	${MAKEDIRTARGET} etc install-obsolete-lists
3861.87Scjs
3871.193Slukem#
3881.137Stv# Speedup stubs for some subtrees that don't need to run these rules.
3891.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.)
3901.193Slukem#
3911.129Stv
3921.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
3931.228Slukemincludes-${dir}: .PHONY
3941.152Stv	@true
3951.152Stv.endfor
3961.152Stv.for dir in etc distrib regress
3971.228Slukeminstall-${dir}: .PHONY
3981.152Stv	@true
3991.152Stv.endfor
4001.152Stv
4011.193Slukem#
4021.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant
4031.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
4041.193Slukem#
4051.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY
4061.136Snathanw	@true
4071.130Stv
4081.211Slukem.include <bsd.sys.mk>
4091.151Stv.include <bsd.obj.mk>
4101.209Slukem.include <bsd.kernobj.mk>
4111.146Stv.include <bsd.subdir.mk>
4121.144Stv
4131.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING
4141.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc
4151.230Slukem	${_MKMSG_CREATE} ${.TARGET}
4161.216Slukem	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
4171.209Slukem
4181.209Slukem
4191.209Slukem#
4201.209Slukem# Display current make(1) parameters
4211.209Slukem#
4221.242Sdslparams: .PHONY .MAKE
4231.232Slukem	${MAKEDIRTARGET} etc params
424