Makefile revision 1.237
11.237Stacha# $NetBSD: Makefile,v 1.237 2004/09/02 02:02:38 tacha 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.236Sthorpej# do-gnu-lib-crtstuff3: builds and installs prerequisites from 721.236Sthorpej# gnu/lib/crtstuff3 731.222Slukem# do-gnu-lib-libgcc3: builds and installs prerequisites from gnu/lib/libgcc3 741.168Stv# do-lib-csu: builds and installs prerequisites from lib/csu. 751.186Sthorpej# do-lib-libc: builds and installs prerequisites from lib/libc. 761.143Stv# do-lib: builds and installs prerequisites from lib. 771.143Stv# do-gnu-lib: builds and installs prerequisites from gnu/lib. 781.189Sitohy# do-ld.so: builds and installs prerequisites from libexec/ld.*_so. 791.137Stv# do-build: builds and installs the entire system. 801.227Slukem# do-x11: builds and installs X11R6 from src/x11 if ${MKX11} != "no" 811.222Slukem# do-obsolete: installs the obsolete sets (for the postinstall-* targets). 821.193Slukem# 831.32Scgd 841.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" 851.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk 861.146Stv.endif 871.163Stv 881.193Slukem# 891.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may 901.163Stv# not be the top level objdir, because "make obj" can happen in the *middle* 911.163Stv# of "make build" (long after <bsd.own.mk> is calculated it). So, pre-set 921.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}. 931.193Slukem# 941.163Stv_SRC_TOP_OBJ_= 951.148Sjmc 961.146Stv.include <bsd.own.mk> 971.4Scgd 981.193Slukem# 991.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously 1001.137Stv# with a standard recursive target. 1011.193Slukem# 1021.137Stv 1031.137Stv.if make(build) || make(release) || make(snapshot) 1041.137Stv.for targ in ${TARGETS:Nobj:Ncleandir} 1051.137Stv.if make(${targ}) && !target(.BEGIN) 1061.137Stv.BEGIN: 1071.137Stv @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.' 1081.137Stv @false 1091.137Stv.endif 1101.137Stv.endfor 1111.137Stv.endif 1121.58Stv 1131.166Ssimonb_SUBDIR= tools lib include gnu bin games libexec sbin usr.bin 1141.205Sthorpej_SUBDIR+= usr.sbin share rescue sys etc .WAIT distrib regress 1151.105Sassar 1161.193Slukem# 1171.137Stv# Weed out directories that don't exist. 1181.193Slukem# 1191.36Sexplorer 1201.137Stv.for dir in ${_SUBDIR} 1211.154Stv.if exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no") 1221.137StvSUBDIR+= ${dir} 1231.36Sexplorer.endif 1241.137Stv.endfor 1251.21Scgd 1261.13Sbrezak.if exists(regress) 1271.228Slukemregression-tests: .PHONY 1281.10Scgd @echo Running regression tests... 1291.232Slukem ${MAKEDIRTARGET} regress regress 1301.13Sbrezak.endif 1311.20Scgd 1321.214Slukem.if ${MKUNPRIVED} != "no" 1331.179SthorpejNOPOSTINSTALL= # defined 1341.179Sthorpej.endif 1351.179Sthorpej 1361.228Slukemafterinstall: .PHONY 1371.137Stv.if ${MKMAN} != "no" 1381.232Slukem ${MAKEDIRTARGET} share/man makedb 1391.137Stv.endif 1401.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no") 1411.232Slukem ${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta 1421.176Slukem.endif 1431.179Sthorpej.if !defined(NOPOSTINSTALL) 1441.232Slukem ${MAKEDIRTARGET} . postinstall-check 1451.159Sperry.endif 1461.170Slukem 1471.228Slukempostinstall-check: .PHONY 1481.169Slukem @echo " === Post installation checks ===" 1491.212Slukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ check 1501.171Slukem @echo " ================================" 1511.171Slukem 1521.228Slukempostinstall-fix: .NOTMAIN .PHONY 1531.171Slukem @echo " === Post installation fixes ===" 1541.212Slukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix 1551.212Slukem @echo " ===============================" 1561.212Slukem 1571.228Slukempostinstall-fix-obsolete: .NOTMAIN .PHONY 1581.212Slukem @echo " === Removing obsolete files ===" 1591.212Slukem ${HOST_SH} ${.CURDIR}/etc/postinstall -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete 1601.212Slukem @echo " ===============================" 1611.169Slukem 1621.108Serh 1631.193Slukem# 1641.137Stv# Targets (in order!) called by "make build". 1651.193Slukem# 1661.220Smrg.if ${USE_TOOLS_TOOLCHAIN} == "no" 1671.220SmrgLIBGCC_EXT=3 1681.220Smrg.else 1691.220SmrgLIBGCC_EXT= 1701.220Smrg.endif 1711.123Smrg 1721.156StvBUILDTARGETS+= check-tools 1731.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR) 1741.155StvBUILDTARGETS+= cleandir 1751.155Stv.endif 1761.149Stv.if ${MKOBJDIRS} != "no" 1771.137StvBUILDTARGETS+= obj 1781.123Smrg.endif 1791.138Stv.if ${USETOOLS} == "yes" 1801.152StvBUILDTARGETS+= do-tools 1811.131Stv.endif 1821.137Stv.if !defined(NODISTRIBDIRS) 1831.137StvBUILDTARGETS+= do-distrib-dirs 1841.131Stv.endif 1851.137Stv.if !defined(NOINCLUDES) 1861.137StvBUILDTARGETS+= includes 1871.131Stv.endif 1881.202SthorpejBUILDTARGETS+= do-tools-compat 1891.231SskrllBUILDTARGETS+= do-lib-csu 1901.207Sdrochner.if ${MKGCC} != "no" 1911.237Stacha.if ${HAVE_GCC3} != "no" 1921.236SthorpejBUILDTARGETS+= do-gnu-lib-crtstuff${LIBGCC_EXT} 1931.237Stacha.endif 1941.220SmrgBUILDTARGETS+= do-gnu-lib-libgcc${LIBGCC_EXT} 1951.207Sdrochner.endif 1961.231SskrllBUILDTARGETS+= do-lib-libc 1971.224SlukemBUILDTARGETS+= do-lib do-gnu-lib 1981.224SlukemBUILDTARGETS+= do-ld.so 1991.224SlukemBUILDTARGETS+= do-build 2001.227Slukem.if ${MKX11} != "no" 2011.227SlukemBUILDTARGETS+= do-x11 2021.227Slukem.endif 2031.200SlukemBUILDTARGETS+= do-obsolete 2041.131Stv 2051.193Slukem# 2061.137Stv# Enforce proper ordering of some rules. 2071.193Slukem# 2081.123Smrg 2091.137Stv.ORDER: ${BUILDTARGETS} 2101.228Slukemincludes-lib: .PHONY includes-include includes-sys 2111.228Slukemincludes-gnu: .PHONY includes-lib 2121.123Smrg 2131.193Slukem# 2141.137Stv# Build the system and install into DESTDIR. 2151.193Slukem# 2161.123Smrg 2171.191SlukemSTART_TIME!= date 2181.191Slukem 2191.228Slukembuild: .PHONY 2201.137Stv.if defined(BUILD_DONE) 2211.137Stv @echo "Build already installed into ${DESTDIR}" 2221.137Stv.else 2231.191Slukem @echo "Build started at: ${START_TIME}" 2241.145Stv.for tgt in ${BUILDTARGETS} 2251.232Slukem ${MAKEDIRTARGET} . ${tgt} 2261.145Stv.endfor 2271.232Slukem ${MAKEDIRTARGET} etc install-etc-release 2281.191Slukem @echo "Build started at: ${START_TIME}" 2291.172Sbjh21 @printf "Build finished at: " && date 2301.71Smycroft.endif 2311.160Sthorpej 2321.193Slukem# 2331.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into 2341.193Slukem# ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != / 2351.193Slukem# 2361.160Sthorpej 2371.228Slukemdistribution buildworld: .PHONY 2381.194Slukem.if make(buildworld) && \ 2391.194Slukem (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") 2401.193Slukem @echo "Won't make ${.TARGET} with DESTDIR=/" 2411.193Slukem @false 2421.193Slukem.endif 2431.232Slukem ${MAKEDIRTARGET} . build NOPOSTINSTALL=1 2441.232Slukem ${MAKEDIRTARGET} etc distribution INSTALL_DONE=1 2451.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/" 2461.232Slukem ${MAKEDIRTARGET} . postinstall-fix-obsolete 2471.232Slukem ${MAKEDIRTARGET} distrib/sets checkflist 2481.181Sthorpej.endif 2491.192Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 2501.185Slukem @printf "make ${.TARGET} finished at: " && date 2511.123Smrg 2521.193Slukem# 2531.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/') 2541.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and 2551.193Slukem# the host's `uname -m` == ${MACHINE}. 2561.193Slukem# 2571.193Slukem 2581.193SlukemHOST_UNAME_S!= uname -s 2591.193SlukemHOST_UNAME_M!= uname -m 2601.193Slukem 2611.228Slukeminstallworld: .PHONY 2621.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") 2631.193Slukem @echo "Can't make ${.TARGET} to DESTDIR=/" 2641.193Slukem @false 2651.193Slukem.endif 2661.193Slukem.if !defined(INSTALLWORLDDIR) || \ 2671.193Slukem ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/" 2681.193Slukem.if (${HOST_UNAME_S} != "NetBSD") 2691.193Slukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/" 2701.193Slukem @false 2711.193Slukem.endif 2721.193Slukem.if (${HOST_UNAME_M} != ${MACHINE}) 2731.193Slukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/" 2741.193Slukem @false 2751.193Slukem.endif 2761.193Slukem.endif 2771.232Slukem ${MAKEDIRTARGET} distrib/sets installsets \ 2781.232Slukem INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= 2791.232Slukem ${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR} 2801.193Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 2811.193Slukem @printf "make ${.TARGET} finished at: " && date 2821.199Slukem 2831.199Slukem# 2841.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR 2851.199Slukem# 2861.199Slukem 2871.206Slukem.for tgt in sets sourcesets 2881.228Slukem${tgt}: .PHONY 2891.232Slukem ${MAKEDIRTARGET} distrib/sets ${tgt} 2901.206Slukem.endfor 2911.193Slukem 2921.193Slukem# 2931.181Sthorpej# Build a release or snapshot (implies "make build"). Note that 2941.181Sthorpej# in this case, the set lists will be checked before the tar files 2951.181Sthorpej# are made. 2961.193Slukem# 2971.123Smrg 2981.228Slukemrelease snapshot: .PHONY 2991.232Slukem ${MAKEDIRTARGET} . build NOPOSTINSTALL=1 3001.232Slukem ${MAKEDIRTARGET} etc release INSTALL_DONE=1 3011.192Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 3021.185Slukem @printf "make ${.TARGET} finished at: " && date 3031.123Smrg 3041.193Slukem# 3051.137Stv# Special components of the "make build" process. 3061.193Slukem# 3071.156Stv 3081.228Slukemcheck-tools: .PHONY 3091.223Slukem.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN) 3101.187Sthorpej @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.' 3111.187Sthorpej @echo '*** May result in a failed build or corrupt binaries!' 3121.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN) 3131.187Sthorpej @echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.' 3141.156Stv.endif 3151.173Ssommerfe.if defined(NBUILDJOBS) 3161.173Ssommerfe @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!' 3171.173Ssommerfe.endif 3181.123Smrg 3191.228Slukemdo-distrib-dirs: .PHONY 3201.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == "" 3211.232Slukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/ 3221.147Sjmc.else 3231.232Slukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR} 3241.147Sjmc.endif 3251.190Slukem 3261.190Slukem.for targ in cleandir obj includes 3271.228Slukemdo-${targ}: .PHONY ${targ} 3281.190Slukem @true 3291.190Slukem.endfor 3301.123Smrg 3311.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 3321.228Slukemdo-${dir:S/\//-/g}: .PHONY 3331.137Stv.for targ in dependall install 3341.232Slukem ${MAKEDIRTARGET} ${dir} ${targ} 3351.137Stv.endfor 3361.184Slukem.endfor 3371.184Slukem 3381.228Slukemdo-ld.so: .PHONY 3391.184Slukem.for targ in dependall install 3401.189Sitohy.if (${OBJECT_FMT} == "a.out") 3411.232Slukem ${MAKEDIRTARGET} libexec/ld.aout_so ${targ} 3421.189Sitohy.endif 3431.189Sitohy.if (${OBJECT_FMT} == "ELF") 3441.232Slukem ${MAKEDIRTARGET} libexec/ld.elf_so ${targ} 3451.189Sitohy.endif 3461.137Stv.endfor 3471.143Stv 3481.228Slukemdo-build: .PHONY 3491.154Stv.for targ in dependall install 3501.232Slukem ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no 3511.154Stv.endfor 3521.200Slukem 3531.228Slukemdo-x11: .PHONY 3541.232Slukem ${MAKEDIRTARGET} x11 build 3551.227Slukem 3561.228Slukemdo-obsolete: .PHONY 3571.232Slukem ${MAKEDIRTARGET} etc install-obsolete-lists 3581.87Scjs 3591.193Slukem# 3601.137Stv# Speedup stubs for some subtrees that don't need to run these rules. 3611.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.) 3621.193Slukem# 3631.129Stv 3641.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools 3651.228Slukemincludes-${dir}: .PHONY 3661.152Stv @true 3671.152Stv.endfor 3681.152Stv.for dir in etc distrib regress 3691.228Slukeminstall-${dir}: .PHONY 3701.152Stv @true 3711.152Stv.endfor 3721.152Stv 3731.193Slukem# 3741.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant 3751.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... 3761.193Slukem# 3771.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY 3781.136Snathanw @true 3791.130Stv 3801.211Slukem.include <bsd.sys.mk> 3811.151Stv.include <bsd.obj.mk> 3821.209Slukem.include <bsd.kernobj.mk> 3831.146Stv.include <bsd.subdir.mk> 3841.144Stv 3851.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING 3861.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc 3871.230Slukem ${_MKMSG_CREATE} ${.TARGET} 3881.216Slukem ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@ 3891.209Slukem 3901.209Slukem 3911.209Slukem# 3921.209Slukem# Display current make(1) parameters 3931.209Slukem# 3941.228Slukemparams: .PHONY 3951.232Slukem ${MAKEDIRTARGET} etc params 396