Makefile revision 1.253
11.253Slukem# $NetBSD: Makefile,v 1.253 2008/05/22 14:13:58 lukem 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.186Sthorpej# do-lib-libc: builds and installs prerequisites from lib/libc. 881.143Stv# do-lib: builds and installs prerequisites from lib. 891.143Stv# do-gnu-lib: builds and installs prerequisites from gnu/lib. 901.253Slukem# do-external-lib: builds and installs prerequisites from external/lib. 911.189Sitohy# do-ld.so: builds and installs prerequisites from libexec/ld.*_so. 921.137Stv# do-build: builds and installs the entire system. 931.227Slukem# do-x11: builds and installs X11R6 from src/x11 if ${MKX11} != "no" 941.222Slukem# do-obsolete: installs the obsolete sets (for the postinstall-* targets). 951.193Slukem# 961.32Scgd 971.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" 981.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk 991.146Stv.endif 1001.163Stv 1011.193Slukem# 1021.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may 1031.163Stv# not be the top level objdir, because "make obj" can happen in the *middle* 1041.163Stv# of "make build" (long after <bsd.own.mk> is calculated it). So, pre-set 1051.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}. 1061.193Slukem# 1071.163Stv_SRC_TOP_OBJ_= 1081.148Sjmc 1091.146Stv.include <bsd.own.mk> 1101.4Scgd 1111.193Slukem# 1121.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously 1131.137Stv# with a standard recursive target. 1141.193Slukem# 1151.137Stv 1161.137Stv.if make(build) || make(release) || make(snapshot) 1171.137Stv.for targ in ${TARGETS:Nobj:Ncleandir} 1181.137Stv.if make(${targ}) && !target(.BEGIN) 1191.137Stv.BEGIN: 1201.137Stv @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.' 1211.137Stv @false 1221.137Stv.endif 1231.137Stv.endfor 1241.137Stv.endif 1251.58Stv 1261.253Slukem_SUBDIR= tools lib include gnu external bin games libexec sbin usr.bin 1271.251Sjmmv_SUBDIR+= usr.sbin share rescue sys etc tests .WAIT distrib regress 1281.105Sassar 1291.193Slukem# 1301.137Stv# Weed out directories that don't exist. 1311.193Slukem# 1321.36Sexplorer 1331.137Stv.for dir in ${_SUBDIR} 1341.246Sdbj.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no") 1351.137StvSUBDIR+= ${dir} 1361.36Sexplorer.endif 1371.137Stv.endfor 1381.21Scgd 1391.13Sbrezak.if exists(regress) 1401.242Sdslregression-tests: .PHONY .MAKE 1411.10Scgd @echo Running regression tests... 1421.232Slukem ${MAKEDIRTARGET} regress regress 1431.13Sbrezak.endif 1441.20Scgd 1451.214Slukem.if ${MKUNPRIVED} != "no" 1461.179SthorpejNOPOSTINSTALL= # defined 1471.179Sthorpej.endif 1481.179Sthorpej 1491.242Sdslafterinstall: .PHONY .MAKE 1501.137Stv.if ${MKMAN} != "no" 1511.232Slukem ${MAKEDIRTARGET} share/man makedb 1521.137Stv.endif 1531.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no") 1541.232Slukem ${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta 1551.176Slukem.endif 1561.179Sthorpej.if !defined(NOPOSTINSTALL) 1571.232Slukem ${MAKEDIRTARGET} . postinstall-check 1581.159Sperry.endif 1591.170Slukem 1601.239Slukem_POSTINSTALL= ${.CURDIR}/usr.sbin/postinstall/postinstall 1611.239Slukem 1621.228Slukempostinstall-check: .PHONY 1631.169Slukem @echo " === Post installation checks ===" 1641.250Spavel ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi 1651.171Slukem @echo " ================================" 1661.171Slukem 1671.228Slukempostinstall-fix: .NOTMAIN .PHONY 1681.171Slukem @echo " === Post installation fixes ===" 1691.239Slukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix 1701.212Slukem @echo " ===============================" 1711.212Slukem 1721.228Slukempostinstall-fix-obsolete: .NOTMAIN .PHONY 1731.212Slukem @echo " === Removing obsolete files ===" 1741.239Slukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete 1751.212Slukem @echo " ===============================" 1761.169Slukem 1771.108Serh 1781.193Slukem# 1791.137Stv# Targets (in order!) called by "make build". 1801.193Slukem# 1811.245Smrg.if ${HAVE_GCC} == "3" 1821.220SmrgLIBGCC_EXT=3 1831.245Smrg.else 1841.244SmrgLIBGCC_EXT=4 1851.220Smrg.endif 1861.123Smrg 1871.156StvBUILDTARGETS+= check-tools 1881.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR) 1891.155StvBUILDTARGETS+= cleandir 1901.155Stv.endif 1911.149Stv.if ${MKOBJDIRS} != "no" 1921.137StvBUILDTARGETS+= obj 1931.123Smrg.endif 1941.138Stv.if ${USETOOLS} == "yes" 1951.152StvBUILDTARGETS+= do-tools 1961.131Stv.endif 1971.137Stv.if !defined(NODISTRIBDIRS) 1981.137StvBUILDTARGETS+= do-distrib-dirs 1991.131Stv.endif 2001.137Stv.if !defined(NOINCLUDES) 2011.137StvBUILDTARGETS+= includes 2021.131Stv.endif 2031.202SthorpejBUILDTARGETS+= do-tools-compat 2041.231SskrllBUILDTARGETS+= do-lib-csu 2051.207Sdrochner.if ${MKGCC} != "no" 2061.249SlukemBUILDTARGETS+= do-libgcc 2071.207Sdrochner.endif 2081.231SskrllBUILDTARGETS+= do-lib-libc 2091.253SlukemBUILDTARGETS+= do-lib do-gnu-lib do-external-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.253Slukem.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 external/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.249Slukemdo-libgcc: .PHONY .MAKE 3671.249Slukem.if ${MKGCC} != "no" 3681.249Slukem.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4") 3691.249Slukem ${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT} 3701.249Slukem.endif 3711.249Slukem ${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT} 3721.249Slukem.endif 3731.249Slukem 3741.242Sdsldo-ld.so: .PHONY .MAKE 3751.184Slukem.for targ in dependall install 3761.189Sitohy.if (${OBJECT_FMT} == "a.out") 3771.232Slukem ${MAKEDIRTARGET} libexec/ld.aout_so ${targ} 3781.189Sitohy.endif 3791.189Sitohy.if (${OBJECT_FMT} == "ELF") 3801.232Slukem ${MAKEDIRTARGET} libexec/ld.elf_so ${targ} 3811.189Sitohy.endif 3821.137Stv.endfor 3831.143Stv 3841.242Sdsldo-build: .PHONY .MAKE 3851.154Stv.for targ in dependall install 3861.232Slukem ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no 3871.154Stv.endfor 3881.200Slukem 3891.242Sdsldo-x11: .PHONY .MAKE 3901.232Slukem ${MAKEDIRTARGET} x11 build 3911.227Slukem 3921.242Sdsldo-obsolete: .PHONY .MAKE 3931.232Slukem ${MAKEDIRTARGET} etc install-obsolete-lists 3941.87Scjs 3951.193Slukem# 3961.137Stv# Speedup stubs for some subtrees that don't need to run these rules. 3971.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.) 3981.193Slukem# 3991.129Stv 4001.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools 4011.228Slukemincludes-${dir}: .PHONY 4021.152Stv @true 4031.152Stv.endfor 4041.152Stv.for dir in etc distrib regress 4051.228Slukeminstall-${dir}: .PHONY 4061.152Stv @true 4071.152Stv.endfor 4081.152Stv 4091.193Slukem# 4101.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant 4111.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... 4121.193Slukem# 4131.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY 4141.136Snathanw @true 4151.130Stv 4161.211Slukem.include <bsd.sys.mk> 4171.151Stv.include <bsd.obj.mk> 4181.209Slukem.include <bsd.kernobj.mk> 4191.146Stv.include <bsd.subdir.mk> 4201.144Stv 4211.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING 4221.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc 4231.230Slukem ${_MKMSG_CREATE} ${.TARGET} 4241.216Slukem ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@ 4251.209Slukem 4261.209Slukem 4271.209Slukem# 4281.209Slukem# Display current make(1) parameters 4291.209Slukem# 4301.242Sdslparams: .PHONY .MAKE 4311.232Slukem ${MAKEDIRTARGET} etc params 432