Makefile revision 1.221
11.221Ssalo#	$NetBSD: Makefile,v 1.221 2003/07/26 17:10:25 salo 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.196Slukem#	Does a `make build', 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.123Smrg#
631.137Stv# Targets invoked by `make build,' in order:
641.155Stv#   cleandir:        cleans the tree.
651.137Stv#   obj:             creates object directories.
661.152Stv#   do-tools:        builds host toolchain.
671.208Slukem#   do-distrib-dirs: creates the distribution directories.
681.208Slukem#   includes:        installs include files.
691.202Sthorpej#   do-tools-compat: builds the "libnbcompat" library; needed for some
701.202Sthorpej#                    random host tool programs in the source tree.
711.208Slukem#   do-gnu-lib-libgcc: builds and installs prerequisites from gnu/lib/libgcc
721.168Stv#   do-lib-csu:      builds and installs prerequisites from lib/csu.
731.186Sthorpej#   do-lib-libc:     builds and installs prerequisites from lib/libc.
741.219Slukem#   do-lib-libdes:   builds and installs prerequisites from lib/libdes.
751.143Stv#   do-lib:          builds and installs prerequisites from lib.
761.143Stv#   do-gnu-lib:      builds and installs prerequisites from gnu/lib.
771.189Sitohy#   do-ld.so:        builds and installs prerequisites from libexec/ld.*_so.
781.137Stv#   do-build:        builds and installs the entire system.
791.208Slukem#   do-obsolete:     builds and installs the entire system.
801.193Slukem#
811.32Scgd
821.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == ""
831.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk
841.146Stv.endif
851.163Stv
861.193Slukem#
871.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may
881.163Stv# not be the top level objdir, because "make obj" can happen in the *middle*
891.163Stv# of "make build" (long after <bsd.own.mk> is calculated it).  So, pre-set
901.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}.
911.193Slukem#
921.163Stv_SRC_TOP_OBJ_=
931.148Sjmc
941.146Stv.include <bsd.own.mk>
951.4Scgd
961.193Slukem#
971.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously
981.137Stv# with a standard recursive target.
991.193Slukem#
1001.137Stv
1011.137Stv.if make(build) || make(release) || make(snapshot)
1021.137Stv.for targ in ${TARGETS:Nobj:Ncleandir}
1031.137Stv.if make(${targ}) && !target(.BEGIN)
1041.137Stv.BEGIN:
1051.137Stv	@echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.'
1061.137Stv	@false
1071.137Stv.endif
1081.137Stv.endfor
1091.137Stv.endif
1101.58Stv
1111.166Ssimonb_SUBDIR=	tools lib include gnu bin games libexec sbin usr.bin
1121.205Sthorpej_SUBDIR+=	usr.sbin share rescue sys etc .WAIT distrib regress
1131.105Sassar
1141.193Slukem#
1151.137Stv# Weed out directories that don't exist.
1161.193Slukem#
1171.36Sexplorer
1181.137Stv.for dir in ${_SUBDIR}
1191.154Stv.if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no")
1201.137StvSUBDIR+=	${dir}
1211.36Sexplorer.endif
1221.137Stv.endfor
1231.21Scgd
1241.13Sbrezak.if exists(regress)
1251.10Scgdregression-tests:
1261.10Scgd	@echo Running regression tests...
1271.152Stv	@(cd ${.CURDIR}/regress && ${MAKE} regress)
1281.13Sbrezak.endif
1291.20Scgd
1301.214Slukem.if ${MKUNPRIVED} != "no"
1311.179SthorpejNOPOSTINSTALL=	# defined
1321.179Sthorpej.endif
1331.179Sthorpej
1341.176Slukemafterinstall:
1351.137Stv.if ${MKMAN} != "no"
1361.152Stv	(cd ${.CURDIR}/share/man && ${MAKE} makedb)
1371.137Stv.endif
1381.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no")
1391.164Sjmc	(cd ${.CURDIR}/gnu/usr.bin/texinfo/install-info && ${MAKE} infodir-meta)
1401.176Slukem.endif
1411.179Sthorpej.if !defined(NOPOSTINSTALL)
1421.180Sdrochner	(cd ${.CURDIR} && ${MAKE} postinstall-check)
1431.159Sperry.endif
1441.170Slukem
1451.170Slukempostinstall-check:
1461.169Slukem	@echo "   === Post installation checks ==="
1471.212Slukem	${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check
1481.171Slukem	@echo "   ================================"
1491.171Slukem
1501.171Slukempostinstall-fix: .NOTMAIN
1511.171Slukem	@echo "   === Post installation fixes ==="
1521.212Slukem	${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix
1531.212Slukem	@echo "   ==============================="
1541.212Slukem
1551.212Slukempostinstall-fix-obsolete: .NOTMAIN
1561.212Slukem	@echo "   === Removing obsolete files ==="
1571.212Slukem	${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete
1581.212Slukem	@echo "   ==============================="
1591.169Slukem
1601.108Serh
1611.193Slukem#
1621.137Stv# Targets (in order!) called by "make build".
1631.193Slukem#
1641.220Smrg.if ${USE_TOOLS_TOOLCHAIN} == "no"
1651.220SmrgLIBGCC_EXT=3
1661.220Smrg.else
1671.220SmrgLIBGCC_EXT=
1681.220Smrg.endif
1691.123Smrg
1701.156StvBUILDTARGETS+=	check-tools
1711.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR)
1721.155StvBUILDTARGETS+=	cleandir
1731.155Stv.endif
1741.149Stv.if ${MKOBJDIRS} != "no"
1751.137StvBUILDTARGETS+=	obj
1761.123Smrg.endif
1771.138Stv.if ${USETOOLS} == "yes"
1781.152StvBUILDTARGETS+=	do-tools
1791.131Stv.endif
1801.137Stv.if !defined(NODISTRIBDIRS)
1811.137StvBUILDTARGETS+=	do-distrib-dirs
1821.131Stv.endif
1831.137Stv.if !defined(NOINCLUDES)
1841.137StvBUILDTARGETS+=	includes
1851.131Stv.endif
1861.202SthorpejBUILDTARGETS+=	do-tools-compat
1871.207Sdrochner.if ${MKGCC} != "no"
1881.220SmrgBUILDTARGETS+=	do-gnu-lib-libgcc${LIBGCC_EXT}
1891.207Sdrochner.endif
1901.218SfvdlBUILDTARGETS+=	do-lib-csu do-lib-libc do-lib-libdes do-lib do-gnu-lib \
1911.218Sfvdl		do-ld.so do-build
1921.200SlukemBUILDTARGETS+=	do-obsolete
1931.131Stv
1941.193Slukem#
1951.137Stv# Enforce proper ordering of some rules.
1961.193Slukem#
1971.123Smrg
1981.137Stv.ORDER:		${BUILDTARGETS}
1991.137Stvincludes-lib:	includes-include includes-sys
2001.137Stvincludes-gnu:	includes-lib
2011.123Smrg
2021.193Slukem#
2031.137Stv# Build the system and install into DESTDIR.
2041.193Slukem#
2051.123Smrg
2061.191SlukemSTART_TIME!=	date
2071.191Slukem
2081.137Stvbuild:
2091.137Stv.if defined(BUILD_DONE)
2101.137Stv	@echo "Build already installed into ${DESTDIR}"
2111.137Stv.else
2121.191Slukem	@echo "Build started at: ${START_TIME}"
2131.145Stv.for tgt in ${BUILDTARGETS}
2141.173Ssommerfe	@(cd ${.CURDIR} && ${MAKE} ${tgt})
2151.145Stv.endfor
2161.191Slukem	@echo   "Build started at:  ${START_TIME}"
2171.172Sbjh21	@printf "Build finished at: " && date
2181.71Smycroft.endif
2191.160Sthorpej
2201.193Slukem#
2211.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into
2221.193Slukem# ${RELEASEDIR}).  "buildworld" enforces a build to ${DESTDIR} != /
2231.193Slukem#
2241.160Sthorpej
2251.193Slukemdistribution buildworld:
2261.194Slukem.if make(buildworld) && \
2271.194Slukem    (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2281.193Slukem	@echo "Won't make ${.TARGET} with DESTDIR=/"
2291.193Slukem	@false
2301.193Slukem.endif
2311.182Suwe	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
2321.160Sthorpej	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 distribution)
2331.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/"
2341.217Slukem	(cd ${.CURDIR} && ${MAKE} postinstall-fix-obsolete)
2351.181Sthorpej	(cd ${.CURDIR}/distrib/sets && ${MAKE} checkflist)
2361.181Sthorpej.endif
2371.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2381.185Slukem	@printf "make ${.TARGET} finished at: " && date
2391.123Smrg
2401.193Slukem#
2411.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/')
2421.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and
2431.193Slukem# the host's `uname -m` == ${MACHINE}.
2441.193Slukem#
2451.193Slukem
2461.193SlukemHOST_UNAME_S!=	uname -s
2471.193SlukemHOST_UNAME_M!=	uname -m
2481.193Slukem
2491.193Slukeminstallworld:
2501.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
2511.193Slukem	@echo "Can't make ${.TARGET} to DESTDIR=/"
2521.193Slukem	@false
2531.193Slukem.endif
2541.193Slukem.if !defined(INSTALLWORLDDIR) || \
2551.193Slukem    ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/"
2561.193Slukem.if (${HOST_UNAME_S} != "NetBSD")
2571.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/"
2581.193Slukem	@false
2591.193Slukem.endif
2601.193Slukem.if (${HOST_UNAME_M} != ${MACHINE})
2611.193Slukem	@echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/"
2621.193Slukem	@false
2631.193Slukem.endif
2641.193Slukem.endif
2651.193Slukem	(cd ${.CURDIR}/distrib/sets && \
2661.193Slukem	    ${MAKE} INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= installsets)
2671.193Slukem	(cd ${.CURDIR} && \
2681.193Slukem	    ${MAKE} DESTDIR=${INSTALLWORLDDIR} postinstall-check)
2691.193Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2701.193Slukem	@printf "make ${.TARGET} finished at: " && date
2711.199Slukem
2721.199Slukem#
2731.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR
2741.199Slukem#
2751.199Slukem
2761.206Slukem.for tgt in sets sourcesets
2771.206Slukem${tgt}:
2781.206Slukem	(cd ${.CURDIR}/distrib/sets && ${MAKE} $@)
2791.206Slukem.endfor
2801.193Slukem
2811.193Slukem#
2821.181Sthorpej# Build a release or snapshot (implies "make build").  Note that
2831.181Sthorpej# in this case, the set lists will be checked before the tar files
2841.181Sthorpej# are made.
2851.193Slukem#
2861.123Smrg
2871.179Sthorpejrelease snapshot:
2881.179Sthorpej	(cd ${.CURDIR} && ${MAKE} NOPOSTINSTALL=1 build)
2891.152Stv	(cd ${.CURDIR}/etc && ${MAKE} INSTALL_DONE=1 release)
2901.192Slukem	@echo   "make ${.TARGET} started at:  ${START_TIME}"
2911.185Slukem	@printf "make ${.TARGET} finished at: " && date
2921.123Smrg
2931.193Slukem#
2941.137Stv# Special components of the "make build" process.
2951.193Slukem#
2961.156Stv
2971.156Stvcheck-tools:
2981.187Sthorpej.if ${TOOLCHAIN_MISSING} == "yes" && !defined(EXTERNAL_TOOLCHAIN)
2991.187Sthorpej	@echo '*** WARNING:  Building on MACHINE=${MACHINE} with missing toolchain.'
3001.187Sthorpej	@echo '*** May result in a failed build or corrupt binaries!'
3011.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN)
3021.187Sthorpej	@echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.'
3031.156Stv.endif
3041.173Ssommerfe.if defined(NBUILDJOBS)
3051.173Ssommerfe	@echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!'
3061.173Ssommerfe.endif
3071.123Smrg
3081.137Stvdo-distrib-dirs:
3091.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == ""
3101.152Stv	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
3111.147Sjmc.else
3121.152Stv	(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=${DESTDIR} distrib-dirs)
3131.147Sjmc.endif
3141.190Slukem
3151.190Slukem.for targ in cleandir obj includes
3161.190Slukemdo-${targ}: ${targ}
3171.190Slukem	@true
3181.190Slukem.endfor
3191.123Smrg
3201.220Smrg.for dir in tools tools/compat lib/csu gnu/lib/libgcc${LIBGCC_EXT} lib/libc lib/libdes lib gnu/lib
3211.207Sdrochnerdo-${dir:S/\//-/g}:
3221.137Stv.for targ in dependall install
3231.173Ssommerfe	(cd ${.CURDIR}/${dir} && ${MAKE} ${targ})
3241.137Stv.endfor
3251.184Slukem.endfor
3261.184Slukem
3271.189Sitohydo-ld.so:
3281.184Slukem.for targ in dependall install
3291.189Sitohy.if (${OBJECT_FMT} == "a.out")
3301.189Sitohy	(cd ${.CURDIR}/libexec/ld.aout_so && ${MAKE} ${targ})
3311.189Sitohy.endif
3321.189Sitohy.if (${OBJECT_FMT} == "ELF")
3331.184Slukem	(cd ${.CURDIR}/libexec/ld.elf_so && ${MAKE} ${targ})
3341.189Sitohy.endif
3351.137Stv.endfor
3361.143Stv
3371.143Stvdo-build:
3381.154Stv.for targ in dependall install
3391.173Ssommerfe	(cd ${.CURDIR} && ${MAKE} ${targ} BUILD_tools=no BUILD_lib=no)
3401.154Stv.endfor
3411.200Slukem
3421.200Slukemdo-obsolete:
3431.200Slukem	(cd ${.CURDIR}/etc && ${MAKE} install-obsolete-lists)
3441.87Scjs
3451.193Slukem#
3461.137Stv# Speedup stubs for some subtrees that don't need to run these rules.
3471.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.)
3481.193Slukem#
3491.129Stv
3501.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools
3511.152Stvincludes-${dir}:
3521.152Stv	@true
3531.152Stv.endfor
3541.152Stv.for dir in etc distrib regress
3551.152Stvinstall-${dir}:
3561.152Stv	@true
3571.152Stv.endfor
3581.152Stv
3591.193Slukem#
3601.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant
3611.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first...
3621.193Slukem#
3631.152Stvdependall-distrib depend-distrib all-distrib:
3641.136Snathanw	@true
3651.130Stv
3661.211Slukem.include <bsd.sys.mk>
3671.151Stv.include <bsd.obj.mk>
3681.209Slukem.include <bsd.kernobj.mk>
3691.146Stv.include <bsd.subdir.mk>
3701.144Stv
3711.150Stvbuild-docs: ${.CURDIR}/BUILDING
3721.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc
3731.216Slukem	${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@
3741.209Slukem
3751.209Slukem
3761.209Slukem#
3771.209Slukem# Display current make(1) parameters
3781.209Slukem#
3791.209Slukemparams:
3801.209Slukem.for var in	BSDSRCDIR BSDOBJDIR BUILDID DESTDIR EXTERNAL_TOOLCHAIN \
3811.209Slukem		KERNARCHDIR KERNCONFDIR KERNOBJDIR KERNSRCDIR \
3821.210Slukem		MACHINE MACHINE_ARCH MAKECONF MAKEFLAGS \
3831.214Slukem		MAKEOBJDIR MAKEOBJDIRPREFIX \
3841.214Slukem		MKOBJDIRS MKUNPRIVED MKUPDATE \
3851.210Slukem		RELEASEDIR TOOLCHAIN_MISSING TOOLDIR \
3861.214Slukem		USETOOLS
3871.209Slukem.if defined(${var})
3881.209Slukem	@printf "%20s = '%-s'\n" ${var} ${${var}:Q}
3891.209Slukem.else
3901.209Slukem	@printf "%20s = (undefined)\n" ${var}
3911.209Slukem.endif
3921.209Slukem.endfor
393