Makefile revision 1.252
11.252Slukem# $NetBSD: Makefile,v 1.252 2008/03/18 04:24:38 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.189Sitohy# do-ld.so: builds and installs prerequisites from libexec/ld.*_so. 911.137Stv# do-build: builds and installs the entire system. 921.227Slukem# do-x11: builds and installs X11R6 from src/x11 if ${MKX11} != "no" 931.222Slukem# do-obsolete: installs the obsolete sets (for the postinstall-* targets). 941.193Slukem# 951.32Scgd 961.146Stv.if ${.MAKEFLAGS:M${.CURDIR}/share/mk} == "" 971.146Stv.MAKEFLAGS: -m ${.CURDIR}/share/mk 981.146Stv.endif 991.163Stv 1001.193Slukem# 1011.163Stv# If _SRC_TOP_OBJ_ gets set here, we will end up with a directory that may 1021.163Stv# not be the top level objdir, because "make obj" can happen in the *middle* 1031.163Stv# of "make build" (long after <bsd.own.mk> is calculated it). So, pre-set 1041.163Stv# _SRC_TOP_OBJ_ here so it will not be added to ${.MAKEOVERRIDES}. 1051.193Slukem# 1061.163Stv_SRC_TOP_OBJ_= 1071.148Sjmc 1081.146Stv.include <bsd.own.mk> 1091.4Scgd 1101.193Slukem# 1111.137Stv# Sanity check: make sure that "make build" is not invoked simultaneously 1121.137Stv# with a standard recursive target. 1131.193Slukem# 1141.137Stv 1151.137Stv.if make(build) || make(release) || make(snapshot) 1161.137Stv.for targ in ${TARGETS:Nobj:Ncleandir} 1171.137Stv.if make(${targ}) && !target(.BEGIN) 1181.137Stv.BEGIN: 1191.137Stv @echo 'BUILD ABORTED: "make build" and "make ${targ}" are mutually exclusive.' 1201.137Stv @false 1211.137Stv.endif 1221.137Stv.endfor 1231.137Stv.endif 1241.58Stv 1251.166Ssimonb_SUBDIR= tools lib include gnu bin games libexec sbin usr.bin 1261.251Sjmmv_SUBDIR+= usr.sbin share rescue sys etc tests .WAIT distrib regress 1271.105Sassar 1281.193Slukem# 1291.137Stv# Weed out directories that don't exist. 1301.193Slukem# 1311.36Sexplorer 1321.137Stv.for dir in ${_SUBDIR} 1331.246Sdbj.if ("${dir}" == ".WAIT") || exists(${dir}/Makefile) && (${BUILD_${dir}:Uyes} != "no") 1341.137StvSUBDIR+= ${dir} 1351.36Sexplorer.endif 1361.137Stv.endfor 1371.21Scgd 1381.13Sbrezak.if exists(regress) 1391.242Sdslregression-tests: .PHONY .MAKE 1401.10Scgd @echo Running regression tests... 1411.232Slukem ${MAKEDIRTARGET} regress regress 1421.13Sbrezak.endif 1431.20Scgd 1441.214Slukem.if ${MKUNPRIVED} != "no" 1451.179SthorpejNOPOSTINSTALL= # defined 1461.179Sthorpej.endif 1471.179Sthorpej 1481.242Sdslafterinstall: .PHONY .MAKE 1491.137Stv.if ${MKMAN} != "no" 1501.232Slukem ${MAKEDIRTARGET} share/man makedb 1511.137Stv.endif 1521.214Slukem.if (${MKUNPRIVED} != "no" && ${MKINFO} != "no") 1531.232Slukem ${MAKEDIRTARGET} gnu/usr.bin/texinfo/install-info infodir-meta 1541.176Slukem.endif 1551.179Sthorpej.if !defined(NOPOSTINSTALL) 1561.232Slukem ${MAKEDIRTARGET} . postinstall-check 1571.159Sperry.endif 1581.170Slukem 1591.239Slukem_POSTINSTALL= ${.CURDIR}/usr.sbin/postinstall/postinstall 1601.239Slukem 1611.228Slukempostinstall-check: .PHONY 1621.169Slukem @echo " === Post installation checks ===" 1631.250Spavel ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ check; if [ $$? -gt 1 ]; then exit 1; fi 1641.171Slukem @echo " ================================" 1651.171Slukem 1661.228Slukempostinstall-fix: .NOTMAIN .PHONY 1671.171Slukem @echo " === Post installation fixes ===" 1681.239Slukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix 1691.212Slukem @echo " ===============================" 1701.212Slukem 1711.228Slukempostinstall-fix-obsolete: .NOTMAIN .PHONY 1721.212Slukem @echo " === Removing obsolete files ===" 1731.239Slukem ${HOST_SH} ${_POSTINSTALL} -s ${.CURDIR} -d ${DESTDIR}/ fix obsolete 1741.212Slukem @echo " ===============================" 1751.169Slukem 1761.108Serh 1771.193Slukem# 1781.137Stv# Targets (in order!) called by "make build". 1791.193Slukem# 1801.245Smrg.if ${HAVE_GCC} == "3" 1811.220SmrgLIBGCC_EXT=3 1821.245Smrg.else 1831.244SmrgLIBGCC_EXT=4 1841.220Smrg.endif 1851.123Smrg 1861.156StvBUILDTARGETS+= check-tools 1871.214Slukem.if ${MKUPDATE} == "no" && !defined(NOCLEANDIR) 1881.155StvBUILDTARGETS+= cleandir 1891.155Stv.endif 1901.149Stv.if ${MKOBJDIRS} != "no" 1911.137StvBUILDTARGETS+= obj 1921.123Smrg.endif 1931.138Stv.if ${USETOOLS} == "yes" 1941.152StvBUILDTARGETS+= do-tools 1951.131Stv.endif 1961.137Stv.if !defined(NODISTRIBDIRS) 1971.137StvBUILDTARGETS+= do-distrib-dirs 1981.131Stv.endif 1991.137Stv.if !defined(NOINCLUDES) 2001.137StvBUILDTARGETS+= includes 2011.131Stv.endif 2021.202SthorpejBUILDTARGETS+= do-tools-compat 2031.231SskrllBUILDTARGETS+= do-lib-csu 2041.207Sdrochner.if ${MKGCC} != "no" 2051.249SlukemBUILDTARGETS+= do-libgcc 2061.207Sdrochner.endif 2071.231SskrllBUILDTARGETS+= do-lib-libc 2081.224SlukemBUILDTARGETS+= do-lib do-gnu-lib 2091.224SlukemBUILDTARGETS+= do-ld.so 2101.224SlukemBUILDTARGETS+= do-build 2111.227Slukem.if ${MKX11} != "no" 2121.227SlukemBUILDTARGETS+= do-x11 2131.227Slukem.endif 2141.200SlukemBUILDTARGETS+= do-obsolete 2151.131Stv 2161.193Slukem# 2171.137Stv# Enforce proper ordering of some rules. 2181.193Slukem# 2191.123Smrg 2201.137Stv.ORDER: ${BUILDTARGETS} 2211.228Slukemincludes-lib: .PHONY includes-include includes-sys 2221.228Slukemincludes-gnu: .PHONY includes-lib 2231.123Smrg 2241.193Slukem# 2251.137Stv# Build the system and install into DESTDIR. 2261.193Slukem# 2271.123Smrg 2281.191SlukemSTART_TIME!= date 2291.191Slukem 2301.242Sdslbuild: .PHONY .MAKE 2311.137Stv.if defined(BUILD_DONE) 2321.137Stv @echo "Build already installed into ${DESTDIR}" 2331.137Stv.else 2341.191Slukem @echo "Build started at: ${START_TIME}" 2351.145Stv.for tgt in ${BUILDTARGETS} 2361.232Slukem ${MAKEDIRTARGET} . ${tgt} 2371.145Stv.endfor 2381.232Slukem ${MAKEDIRTARGET} etc install-etc-release 2391.191Slukem @echo "Build started at: ${START_TIME}" 2401.172Sbjh21 @printf "Build finished at: " && date 2411.71Smycroft.endif 2421.160Sthorpej 2431.193Slukem# 2441.160Sthorpej# Build a full distribution, but not a release (i.e. no sets into 2451.193Slukem# ${RELEASEDIR}). "buildworld" enforces a build to ${DESTDIR} != / 2461.193Slukem# 2471.160Sthorpej 2481.242Sdsldistribution buildworld: .PHONY .MAKE 2491.194Slukem.if make(buildworld) && \ 2501.194Slukem (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") 2511.193Slukem @echo "Won't make ${.TARGET} with DESTDIR=/" 2521.193Slukem @false 2531.193Slukem.endif 2541.232Slukem ${MAKEDIRTARGET} . build NOPOSTINSTALL=1 2551.232Slukem ${MAKEDIRTARGET} etc distribution INSTALL_DONE=1 2561.181Sthorpej.if defined(DESTDIR) && ${DESTDIR} != "" && ${DESTDIR} != "/" 2571.232Slukem ${MAKEDIRTARGET} . postinstall-fix-obsolete 2581.232Slukem ${MAKEDIRTARGET} distrib/sets checkflist 2591.181Sthorpej.endif 2601.192Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 2611.185Slukem @printf "make ${.TARGET} finished at: " && date 2621.123Smrg 2631.193Slukem# 2641.193Slukem# Install the distribution from $DESTDIR to $INSTALLWORLDDIR (defaults to `/') 2651.193Slukem# If installing to /, ensures that the host's operating system is NetBSD and 2661.193Slukem# the host's `uname -m` == ${MACHINE}. 2671.193Slukem# 2681.193Slukem 2691.193SlukemHOST_UNAME_S!= uname -s 2701.193SlukemHOST_UNAME_M!= uname -m 2711.193Slukem 2721.242Sdslinstallworld: .PHONY .MAKE 2731.194Slukem.if (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/") 2741.193Slukem @echo "Can't make ${.TARGET} to DESTDIR=/" 2751.193Slukem @false 2761.193Slukem.endif 2771.193Slukem.if !defined(INSTALLWORLDDIR) || \ 2781.193Slukem ${INSTALLWORLDDIR} == "" || ${INSTALLWORLDDIR} == "/" 2791.193Slukem.if (${HOST_UNAME_S} != "NetBSD") 2801.193Slukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_S} to NetBSD with INSTALLWORLDDIR=/" 2811.193Slukem @false 2821.193Slukem.endif 2831.193Slukem.if (${HOST_UNAME_M} != ${MACHINE}) 2841.193Slukem @echo "Won't cross-make ${.TARGET} from ${HOST_UNAME_M} to ${MACHINE} with INSTALLWORLDDIR=/" 2851.193Slukem @false 2861.193Slukem.endif 2871.193Slukem.endif 2881.232Slukem ${MAKEDIRTARGET} distrib/sets installsets \ 2891.232Slukem INSTALLDIR=${INSTALLWORLDDIR:U/} INSTALLSETS= 2901.232Slukem ${MAKEDIRTARGET} . postinstall-check DESTDIR=${INSTALLWORLDDIR} 2911.193Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 2921.193Slukem @printf "make ${.TARGET} finished at: " && date 2931.199Slukem 2941.199Slukem# 2951.206Slukem# Create sets from $DESTDIR or $NETBSDSRCDIR into $RELEASEDIR 2961.199Slukem# 2971.199Slukem 2981.241Sapb.for tgt in sets sourcesets syspkgs 2991.242Sdsl${tgt}: .PHONY .MAKE 3001.232Slukem ${MAKEDIRTARGET} distrib/sets ${tgt} 3011.206Slukem.endfor 3021.193Slukem 3031.193Slukem# 3041.240Slukem# Build a release or snapshot (implies "make distribution"). Note that 3051.181Sthorpej# in this case, the set lists will be checked before the tar files 3061.181Sthorpej# are made. 3071.193Slukem# 3081.123Smrg 3091.242Sdslrelease snapshot: .PHONY .MAKE 3101.240Slukem ${MAKEDIRTARGET} . distribution 3111.240Slukem ${MAKEDIRTARGET} etc release DISTRIBUTION_DONE=1 3121.192Slukem @echo "make ${.TARGET} started at: ${START_TIME}" 3131.185Slukem @printf "make ${.TARGET} finished at: " && date 3141.123Smrg 3151.193Slukem# 3161.243Sapb# Create a CD-ROM image. 3171.243Sapb# 3181.243Sapb 3191.243Sapbiso-image: .PHONY 3201.247Sbouyer ${MAKEDIRTARGET} distrib iso_image 3211.243Sapb ${MAKEDIRTARGET} etc iso-image 3221.243Sapb @echo "make ${.TARGET} started at: ${START_TIME}" 3231.243Sapb @printf "make ${.TARGET} finished at: " && date 3241.243Sapb 3251.248Sjnemethiso-image-source: .PHONY 3261.248Sjnemeth ${MAKEDIRTARGET} distrib iso_image CDSOURCE=true 3271.248Sjnemeth ${MAKEDIRTARGET} etc iso-image 3281.248Sjnemeth @echo "make ${.TARGET} started at: ${START_TIME}" 3291.248Sjnemeth @printf "make ${.TARGET} finished at: " && date 3301.248Sjnemeth 3311.243Sapb# 3321.137Stv# Special components of the "make build" process. 3331.193Slukem# 3341.156Stv 3351.228Slukemcheck-tools: .PHONY 3361.223Slukem.if ${TOOLCHAIN_MISSING} != "no" && !defined(EXTERNAL_TOOLCHAIN) 3371.187Sthorpej @echo '*** WARNING: Building on MACHINE=${MACHINE} with missing toolchain.' 3381.187Sthorpej @echo '*** May result in a failed build or corrupt binaries!' 3391.187Sthorpej.elif defined(EXTERNAL_TOOLCHAIN) 3401.187Sthorpej @echo '*** Using external toolchain rooted at ${EXTERNAL_TOOLCHAIN}.' 3411.156Stv.endif 3421.173Ssommerfe.if defined(NBUILDJOBS) 3431.173Ssommerfe @echo '*** WARNING: NBUILDJOBS is obsolete; use -j directly instead!' 3441.173Ssommerfe.endif 3451.123Smrg 3461.242Sdsldo-distrib-dirs: .PHONY .MAKE 3471.147Sjmc.if !defined(DESTDIR) || ${DESTDIR} == "" 3481.232Slukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=/ 3491.147Sjmc.else 3501.232Slukem ${MAKEDIRTARGET} etc distrib-dirs DESTDIR=${DESTDIR} 3511.147Sjmc.endif 3521.190Slukem 3531.190Slukem.for targ in cleandir obj includes 3541.228Slukemdo-${targ}: .PHONY ${targ} 3551.190Slukem @true 3561.190Slukem.endfor 3571.123Smrg 3581.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 3591.242Sdsldo-${dir:S/\//-/g}: .PHONY .MAKE 3601.137Stv.for targ in dependall install 3611.232Slukem ${MAKEDIRTARGET} ${dir} ${targ} 3621.137Stv.endfor 3631.184Slukem.endfor 3641.184Slukem 3651.249Slukemdo-libgcc: .PHONY .MAKE 3661.249Slukem.if ${MKGCC} != "no" 3671.249Slukem.if (${HAVE_GCC} == "3" || ${HAVE_GCC} == "4") 3681.249Slukem ${MAKEDIRTARGET} . do-gnu-lib-crtstuff${LIBGCC_EXT} 3691.249Slukem.endif 3701.249Slukem ${MAKEDIRTARGET} . do-gnu-lib-libgcc${LIBGCC_EXT} 3711.249Slukem.endif 3721.249Slukem 3731.242Sdsldo-ld.so: .PHONY .MAKE 3741.184Slukem.for targ in dependall install 3751.189Sitohy.if (${OBJECT_FMT} == "a.out") 3761.232Slukem ${MAKEDIRTARGET} libexec/ld.aout_so ${targ} 3771.189Sitohy.endif 3781.189Sitohy.if (${OBJECT_FMT} == "ELF") 3791.232Slukem ${MAKEDIRTARGET} libexec/ld.elf_so ${targ} 3801.189Sitohy.endif 3811.137Stv.endfor 3821.143Stv 3831.242Sdsldo-build: .PHONY .MAKE 3841.154Stv.for targ in dependall install 3851.232Slukem ${MAKEDIRTARGET} . ${targ} BUILD_tools=no BUILD_lib=no 3861.154Stv.endfor 3871.200Slukem 3881.242Sdsldo-x11: .PHONY .MAKE 3891.232Slukem ${MAKEDIRTARGET} x11 build 3901.227Slukem 3911.242Sdsldo-obsolete: .PHONY .MAKE 3921.232Slukem ${MAKEDIRTARGET} etc install-obsolete-lists 3931.87Scjs 3941.193Slukem# 3951.137Stv# Speedup stubs for some subtrees that don't need to run these rules. 3961.137Stv# (Tells <bsd.subdir.mk> not to recurse for them.) 3971.193Slukem# 3981.129Stv 3991.152Stv.for dir in bin etc distrib games libexec regress sbin usr.sbin tools 4001.228Slukemincludes-${dir}: .PHONY 4011.152Stv @true 4021.152Stv.endfor 4031.152Stv.for dir in etc distrib regress 4041.228Slukeminstall-${dir}: .PHONY 4051.152Stv @true 4061.152Stv.endfor 4071.152Stv 4081.193Slukem# 4091.152Stv# XXX this needs to change when distrib Makefiles are recursion compliant 4101.193Slukem# XXX many distrib subdirs need "cd etc && make snap_pre snap_kern" first... 4111.193Slukem# 4121.228Slukemdependall-distrib depend-distrib all-distrib: .PHONY 4131.136Snathanw @true 4141.130Stv 4151.211Slukem.include <bsd.sys.mk> 4161.151Stv.include <bsd.obj.mk> 4171.209Slukem.include <bsd.kernobj.mk> 4181.146Stv.include <bsd.subdir.mk> 4191.144Stv 4201.228Slukembuild-docs: .PHONY ${.CURDIR}/BUILDING 4211.188Slukem${.CURDIR}/BUILDING: doc/BUILDING.mdoc 4221.230Slukem ${_MKMSG_CREATE} ${.TARGET} 4231.216Slukem ${TOOL_GROFF} -mdoc -Tascii -P-bou $> >$@ 4241.209Slukem 4251.209Slukem 4261.209Slukem# 4271.209Slukem# Display current make(1) parameters 4281.209Slukem# 4291.242Sdslparams: .PHONY .MAKE 4301.232Slukem ${MAKEDIRTARGET} etc params 431