1# 2# $FreeBSD$ 3# 4# Make command line options: 5# -DNO_CLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir 6# -DNO_CLEAN do not clean at all 7# -DDB_FROM_SRC use the user/group databases in src/etc instead of 8# the system database when installing. 9# -DNO_SHARE do not go into share subdir 10# -DKERNFAST define NO_KERNEL{CONFIG,CLEAN,OBJ} 11# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel 12# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel 13# -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel 14# -DNO_PORTSUPDATE do not update ports in ${MAKE} update 15# -DNO_ROOT install without using root privilege 16# -DNO_DOCUPDATE do not update doc in ${MAKE} update 17# -DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects 18# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 19# LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list 20# LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target 21# LOCAL_MTREE="list of mtree files" to process to allow local directories 22# to be created before files are installed 23# LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools 24# list 25# LOCAL_XTOOL_DIRS="list of dirs" to add additional dirs to the 26# cross-tools target 27# METALOG="path to metadata log" to write permission and ownership 28# when NO_ROOT is set. (default: ${DESTDIR}/METALOG) 29# TARGET="machine" to crossbuild world for a different machine type 30# TARGET_ARCH= may be required when a TARGET supports multiple endians 31# BUILDENV_SHELL= shell to launch for the buildenv target (def:${SHELL}) 32# WORLD_FLAGS= additional flags to pass to make(1) during buildworld 33# KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel 34# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. 35# All libraries and includes, and some build tools will still build. 36 37# 38# The intended user-driven targets are: 39# buildworld - rebuild *everything*, including glue to help do upgrades 40# installworld- install everything built by "buildworld" 41# checkworld - run test suite on installed world 42# doxygen - build API documentation of the kernel 43# update - convenient way to update your source tree (eg: svn/svnup) 44# 45# Standard targets (not defined here) are documented in the makefiles in 46# /usr/share/mk. These include: 47# obj depend all install clean cleandepend cleanobj 48 49.if !defined(TARGET) || !defined(TARGET_ARCH) 50.error "Both TARGET and TARGET_ARCH must be defined." 51.endif 52 53.if make(showconfig) || make(test-system-*) 54_MKSHOWCONFIG= t 55.endif 56 57SRCDIR?= ${.CURDIR} 58LOCALBASE?= /usr/local 59 60.include "share/mk/src.tools.mk" 61 62# Cross toolchain changes must be in effect before bsd.compiler.mk 63# so that gets the right CC, and pass CROSS_TOOLCHAIN to submakes. 64.if defined(CROSS_TOOLCHAIN) 65.if exists(${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk) 66.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" 67.elif exists(/usr/share/toolchains/${CROSS_TOOLCHAIN}.mk) 68.include "/usr/share/toolchains/${CROSS_TOOLCHAIN}.mk" 69.elif exists(${CROSS_TOOLCHAIN}) 70.include "${CROSS_TOOLCHAIN}" 71.else 72.error CROSS_TOOLCHAIN ${CROSS_TOOLCHAIN} not found 73.endif 74CROSSENV+=CROSS_TOOLCHAIN="${CROSS_TOOLCHAIN}" 75.endif 76.if defined(CROSS_TOOLCHAIN_PREFIX) 77CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 78.endif 79 80XCOMPILERS= CC CXX CPP 81.for COMPILER in ${XCOMPILERS} 82.if defined(CROSS_COMPILER_PREFIX) 83X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}} 84.else 85X${COMPILER}?= ${${COMPILER}} 86.endif 87.endfor 88# If a full path to an external cross compiler is given, don't build 89# a cross compiler. 90.if ${XCC:N${CCACHE_BIN}:M/*} 91MK_CLANG_BOOTSTRAP= no 92.endif 93 94# Pull in compiler metadata from buildworld/toolchain if possible to avoid 95# running CC from bsd.compiler.mk. 96.if make(installworld) || make(install) || make(distributeworld) || \ 97 make(stageworld) 98.-include "${OBJTOP}/toolchain-metadata.mk" 99.if !defined(_LOADED_TOOLCHAIN_METADATA) 100.error A build is required first. You may have the wrong MAKEOBJDIRPREFIX set. 101.endif 102.endif 103 104# Pull in COMPILER_TYPE and COMPILER_FREEBSD_VERSION early. Pull it from the 105# tree to be friendlier to foreign OS builds. It's safe to do so unconditionally 106# here since we will always have the right make, unlike in src/Makefile 107# Don't include bsd.linker.mk yet until XBINUTILS is handled (after src.opts.mk) 108_NO_INCLUDE_LINKERMK= t 109# We also want the X_COMPILER* variables if we are using an external toolchain. 110_WANT_TOOLCHAIN_CROSS_VARS= t 111.include "share/mk/bsd.compiler.mk" 112.undef _NO_INCLUDE_LINKERMK 113.undef _WANT_TOOLCHAIN_CROSS_VARS 114# src.opts.mk depends on COMPILER_FEATURES 115.include "share/mk/src.opts.mk" 116 117.if ${TARGET} == ${MACHINE} 118TARGET_CPUTYPE?=${CPUTYPE} 119.else 120TARGET_CPUTYPE?= 121.endif 122.if !empty(TARGET_CPUTYPE) 123_TARGET_CPUTYPE=${TARGET_CPUTYPE} 124.else 125_TARGET_CPUTYPE=dummy 126.endif 127.if ${TARGET} == "arm" 128.if ${TARGET_ARCH:Marmv[67]*} != "" && ${TARGET_CPUTYPE:M*soft*} == "" 129TARGET_ABI= gnueabihf 130.else 131TARGET_ABI= gnueabi 132.endif 133.endif 134MACHINE_ABI?= unknown 135MACHINE_TRIPLE?=${MACHINE_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${MACHINE_ABI}-freebsd13.0 136TARGET_ABI?= unknown 137TARGET_TRIPLE?= ${TARGET_ARCH:S/amd64/x86_64/:C/[hs]f$//:S/mipsn32/mips64/}-${TARGET_ABI}-freebsd13.0 138KNOWN_ARCHES?= aarch64/arm64 \ 139 amd64 \ 140 armv6/arm \ 141 armv7/arm \ 142 i386 \ 143 mips \ 144 mipsel/mips \ 145 mips64el/mips \ 146 mipsn32el/mips \ 147 mips64/mips \ 148 mipsn32/mips \ 149 mipshf/mips \ 150 mipselhf/mips \ 151 mips64elhf/mips \ 152 mips64hf/mips \ 153 powerpc \ 154 powerpc64/powerpc \ 155 powerpcspe/powerpc \ 156 riscv64/riscv \ 157 riscv64sf/riscv 158 159.if ${TARGET} == ${TARGET_ARCH} 160_t= ${TARGET} 161.else 162_t= ${TARGET_ARCH}/${TARGET} 163.endif 164.for _t in ${_t} 165.if empty(KNOWN_ARCHES:M${_t}) 166.error Unknown target ${TARGET_ARCH}:${TARGET}. 167.endif 168.endfor 169 170# If all targets are disabled for system llvm then don't expect it to work 171# for cross-builds. 172.if !defined(TOOLS_PREFIX) && ${MK_LLVM_TARGET_ALL} == "no" && \ 173 ${MACHINE} != ${TARGET} && ${MACHINE_ARCH} != ${TARGET_ARCH} && \ 174 !make(showconfig) 175MK_SYSTEM_COMPILER= no 176MK_SYSTEM_LINKER= no 177.endif 178 179# Handle external binutils. 180.if defined(CROSS_TOOLCHAIN_PREFIX) 181CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 182.endif 183XBINUTILS= AS AR LD NM OBJCOPY RANLIB SIZE STRINGS 184.for BINUTIL in ${XBINUTILS} 185.if defined(CROSS_BINUTILS_PREFIX) && \ 186 exists(${CROSS_BINUTILS_PREFIX}/${${BINUTIL}}) 187X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX:C,/*$,,}/${${BINUTIL}} 188.else 189X${BINUTIL}?= ${${BINUTIL}} 190.endif 191.endfor 192 193# If a full path to an external linker is given, don't build lld. 194.if ${XLD:M/*} 195MK_LLD_BOOTSTRAP= no 196.endif 197 198# We also want the X_LINKER* variables if we are using an external toolchain. 199_WANT_TOOLCHAIN_CROSS_VARS= t 200.include "share/mk/bsd.linker.mk" 201.undef _WANT_TOOLCHAIN_CROSS_VARS 202 203# Begin WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD 204 205# WITH_SYSTEM_COMPILER - Pull in needed values and make a decision. 206 207# Check if there is a local compiler that can satisfy as an external compiler. 208# Which compiler is expected to be used? 209.if ${MK_CLANG_BOOTSTRAP} == "yes" 210WANT_COMPILER_TYPE= clang 211.else 212WANT_COMPILER_TYPE= 213.endif 214 215.if !defined(WANT_COMPILER_FREEBSD_VERSION) && !make(showconfig) && \ 216 !make(test-system-linker) 217.if ${WANT_COMPILER_TYPE} == "clang" 218WANT_COMPILER_FREEBSD_VERSION_FILE= lib/clang/freebsd_cc_version.h 219WANT_COMPILER_FREEBSD_VERSION!= \ 220 awk '$$2 == "FREEBSD_CC_VERSION" {printf("%d\n", $$3)}' \ 221 ${SRCDIR}/${WANT_COMPILER_FREEBSD_VERSION_FILE} || echo unknown 222WANT_COMPILER_VERSION_FILE= lib/clang/include/clang/Basic/Version.inc 223WANT_COMPILER_VERSION!= \ 224 awk '$$2 == "CLANG_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \ 225 ${SRCDIR}/${WANT_COMPILER_VERSION_FILE} || echo unknown 226.endif 227.export WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_VERSION 228.endif # !defined(WANT_COMPILER_FREEBSD_VERSION) 229 230# It needs to be the same revision as we would build for the bootstrap. 231# If the expected vs CC is different then we can't skip. 232# GCC cannot be used for cross-arch yet. For clang we pass -target later if 233# TARGET_ARCH!=MACHINE_ARCH. 234.if ${MK_SYSTEM_COMPILER} == "yes" && \ 235 defined(WANT_COMPILER_FREEBSD_VERSION) && \ 236 ${MK_CLANG_BOOTSTRAP} == "yes" && \ 237 !make(xdev*) && \ 238 ${X_COMPILER_TYPE} == ${WANT_COMPILER_TYPE} && \ 239 (${X_COMPILER_TYPE} == "clang" || ${TARGET_ARCH} == ${MACHINE_ARCH}) && \ 240 ${X_COMPILER_VERSION} == ${WANT_COMPILER_VERSION} && \ 241 ${X_COMPILER_FREEBSD_VERSION} == ${WANT_COMPILER_FREEBSD_VERSION} 242# Everything matches, disable the bootstrap compiler. 243MK_CLANG_BOOTSTRAP= no 244USING_SYSTEM_COMPILER= yes 245.endif # ${WANT_COMPILER_TYPE} == ${COMPILER_TYPE} 246 247# WITH_SYSTEM_LD - Pull in needed values and make a decision. 248 249# Check if there is a local linker that can satisfy as an external linker. 250# Which linker is expected to be used? 251.if ${MK_LLD_BOOTSTRAP} == "yes" 252WANT_LINKER_TYPE= lld 253.elif ${MK_BINUTILS_BOOTSTRAP} == "yes" 254# Note that there's no support for bfd in WITH_SYSTEM_LINKER. 255WANT_LINKER_TYPE= bfd 256.else 257WANT_LINKER_TYPE= 258.endif 259 260.if !defined(WANT_LINKER_FREEBSD_VERSION) && !make(showconfig) && \ 261 !make(test-system-compiler) 262.if ${WANT_LINKER_TYPE} == "lld" 263WANT_LINKER_FREEBSD_VERSION_FILE= lib/clang/include/VCSVersion.inc 264_WANT_LINKER_FREEBSD_VERSION!= \ 265 awk '$$2 == "LLD_REVISION" {gsub(/"/, "", $$3); print $$3}' \ 266 ${SRCDIR}/${WANT_LINKER_FREEBSD_VERSION_FILE} || echo unknown 267WANT_LINKER_FREEBSD_VERSION=${_WANT_LINKER_FREEBSD_VERSION:C/.*-(.*)/\1/} 268WANT_LINKER_VERSION_FILE= lib/clang/include/lld/Common/Version.inc 269WANT_LINKER_VERSION!= \ 270 awk '$$2 == "LLD_VERSION" {split($$3, a, "."); print a[1] * 10000 + a[2] * 100 + a[3]}' \ 271 ${SRCDIR}/${WANT_LINKER_VERSION_FILE} || echo unknown 272.else 273WANT_LINKER_FREEBSD_VERSION_FILE= 274WANT_LINKER_FREEBSD_VERSION= 275.endif 276.export WANT_LINKER_FREEBSD_VERSION WANT_LINKER_VERSION 277.endif # !defined(WANT_LINKER_FREEBSD_VERSION) 278 279.if ${MK_SYSTEM_LINKER} == "yes" && \ 280 defined(WANT_LINKER_FREEBSD_VERSION) && \ 281 (${MK_LLD_BOOTSTRAP} == "yes") && \ 282 !make(xdev*) && \ 283 ${X_LINKER_TYPE} == ${WANT_LINKER_TYPE} && \ 284 ${X_LINKER_VERSION} == ${WANT_LINKER_VERSION} && \ 285 ${X_LINKER_FREEBSD_VERSION} == ${WANT_LINKER_FREEBSD_VERSION} 286# Everything matches, disable the bootstrap linker. 287MK_LLD_BOOTSTRAP= no 288USING_SYSTEM_LINKER= yes 289.endif # ${WANT_LINKER_TYPE} == ${LINKER_TYPE} 290 291# WITH_SYSTEM_COMPILER / WITH_SYSTEM_LINKER - Handle defaults and debug. 292USING_SYSTEM_COMPILER?= no 293USING_SYSTEM_LINKER?= no 294 295TEST_SYSTEM_COMPILER_VARS= \ 296 USING_SYSTEM_COMPILER MK_SYSTEM_COMPILER \ 297 MK_CROSS_COMPILER MK_CLANG_BOOTSTRAP \ 298 WANT_COMPILER_TYPE WANT_COMPILER_VERSION WANT_COMPILER_VERSION_FILE \ 299 WANT_COMPILER_FREEBSD_VERSION WANT_COMPILER_FREEBSD_VERSION_FILE \ 300 CC COMPILER_TYPE COMPILER_FEATURES COMPILER_VERSION \ 301 COMPILER_FREEBSD_VERSION \ 302 XCC X_COMPILER_TYPE X_COMPILER_FEATURES X_COMPILER_VERSION \ 303 X_COMPILER_FREEBSD_VERSION 304TEST_SYSTEM_LINKER_VARS= \ 305 USING_SYSTEM_LINKER MK_SYSTEM_LINKER \ 306 MK_LLD_BOOTSTRAP MK_BINUTILS_BOOTSTRAP \ 307 WANT_LINKER_TYPE WANT_LINKER_VERSION WANT_LINKER_VERSION_FILE \ 308 WANT_LINKER_FREEBSD_VERSION WANT_LINKER_FREEBSD_VERSION_FILE \ 309 LD LINKER_TYPE LINKER_FEATURES LINKER_VERSION \ 310 LINKER_FREEBSD_VERSION \ 311 XLD X_LINKER_TYPE X_LINKER_FEATURES X_LINKER_VERSION \ 312 X_LINKER_FREEBSD_VERSION 313 314.for _t in compiler linker 315test-system-${_t}: .PHONY 316.for v in ${TEST_SYSTEM_${_t:tu}_VARS} 317 ${_+_}@printf "%-35s= %s\n" "${v}" "${${v}}" 318.endfor 319.endfor 320.if (make(buildworld) || make(buildkernel) || make(kernel-toolchain) || \ 321 make(toolchain) || make(_cross-tools)) 322.if ${USING_SYSTEM_COMPILER} == "yes" 323.info SYSTEM_COMPILER: Determined that CC=${CC} matches the source tree. Not bootstrapping a cross-compiler. 324.elif ${MK_CLANG_BOOTSTRAP} == "yes" 325.info SYSTEM_COMPILER: libclang will be built for bootstrapping a cross-compiler. 326.endif 327.if ${USING_SYSTEM_LINKER} == "yes" 328.info SYSTEM_LINKER: Determined that LD=${LD} matches the source tree. Not bootstrapping a cross-linker. 329.elif ${MK_LLD_BOOTSTRAP} == "yes" 330.info SYSTEM_LINKER: libclang will be built for bootstrapping a cross-linker. 331.endif 332.endif 333 334# End WITH_SYSTEM_COMPILER / WITH_SYSTEM_LD 335 336# Store some compiler metadata for use in installworld where we don't 337# want to invoke CC at all. 338_TOOLCHAIN_METADATA_VARS= COMPILER_VERSION \ 339 COMPILER_TYPE \ 340 COMPILER_FEATURES \ 341 COMPILER_FREEBSD_VERSION \ 342 COMPILER_RESOURCE_DIR \ 343 LINKER_VERSION \ 344 LINKER_FEATURES \ 345 LINKER_TYPE \ 346 LINKER_FREEBSD_VERSION 347toolchain-metadata.mk: .PHONY .META 348 @: > ${.TARGET} 349 @echo ".info Using cached toolchain metadata from build at $$(hostname) on $$(date)" \ 350 > ${.TARGET} 351 @echo "_LOADED_TOOLCHAIN_METADATA=t" >> ${.TARGET} 352.for v in ${_TOOLCHAIN_METADATA_VARS} 353 @echo "${v}=${${v}}" >> ${.TARGET} 354 @echo "X_${v}=${X_${v}}" >> ${.TARGET} 355.endfor 356 @echo ".export ${_TOOLCHAIN_METADATA_VARS}" >> ${.TARGET} 357 @echo ".export ${_TOOLCHAIN_METADATA_VARS:C,^,X_,}" >> ${.TARGET} 358 359 360# We must do lib/ and libexec/ before bin/ in case of a mid-install error to 361# keep the users system reasonably usable. For static->dynamic root upgrades, 362# we don't want to install a dynamic binary without rtld and the needed 363# libraries. More commonly, for dynamic root, we don't want to install a 364# binary that requires a newer library version that hasn't been installed yet. 365# This ordering is not a guarantee though. The only guarantee of a working 366# system here would require fine-grained ordering of all components based 367# on their dependencies. 368.if !empty(SUBDIR_OVERRIDE) 369SUBDIR= ${SUBDIR_OVERRIDE} 370.else 371SUBDIR= lib libexec 372# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR 373# of a LOCAL_DIRS directory. This allows LOCAL_DIRS=foo and 374# LOCAL_LIB_DIRS=foo/lib to behave as expected. 375.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|} 376_REDUNDANT_LIB_DIRS+= ${LOCAL_LIB_DIRS:M${_DIR}*} 377.endfor 378.for _DIR in ${LOCAL_LIB_DIRS} 379.if ${_DIR} == ".WAIT" || (empty(_REDUNDANT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 380SUBDIR+= ${_DIR} 381.endif 382.endfor 383.if !defined(NO_ROOT) && (make(installworld) || make(install)) 384# Ensure libraries are installed before progressing. 385SUBDIR+=.WAIT 386.endif 387SUBDIR+=bin 388.if ${MK_CDDL} != "no" 389SUBDIR+=cddl 390.endif 391SUBDIR+=gnu include 392.if ${MK_KERBEROS} != "no" 393SUBDIR+=kerberos5 394.endif 395.if ${MK_RESCUE} != "no" 396SUBDIR+=rescue 397.endif 398SUBDIR+=sbin 399.if ${MK_CRYPT} != "no" 400SUBDIR+=secure 401.endif 402.if !defined(NO_SHARE) 403SUBDIR+=share 404.endif 405.if ${MK_BOOT} != "no" 406SUBDIR+=stand 407.endif 408SUBDIR+=sys usr.bin usr.sbin 409.if ${MK_TESTS} != "no" 410SUBDIR+= tests 411.endif 412 413# Local directories are built in parallel with the base system directories. 414# Users may insert a .WAIT directive at the beginning or elsewhere within 415# the LOCAL_DIRS and LOCAL_LIB_DIRS lists as needed. 416.for _DIR in ${LOCAL_DIRS} 417.if ${_DIR} == ".WAIT" || exists(${.CURDIR}/${_DIR}/Makefile) 418SUBDIR+= ${_DIR} 419.endif 420.endfor 421 422# We must do etc/ last as it hooks into building the man whatis file 423# by calling 'makedb' in share/man. This is only relevant for 424# install/distribute so they build the whatis file after every manpage is 425# installed. 426.if make(installworld) || make(install) 427SUBDIR+=.WAIT 428.endif 429SUBDIR+=etc 430 431.endif # !empty(SUBDIR_OVERRIDE) 432 433.if defined(NOCLEAN) 434.warning NOCLEAN option is deprecated. Use NO_CLEAN instead. 435NO_CLEAN= ${NOCLEAN} 436.endif 437.if defined(NO_CLEANDIR) 438CLEANDIR= clean cleandepend 439.else 440CLEANDIR= cleandir 441.endif 442 443.if defined(WORLDFAST) 444NO_CLEAN= t 445NO_OBJWALK= t 446.endif 447 448.if ${MK_META_MODE} == "yes" 449# If filemon is used then we can rely on the build being incremental-safe. 450# The .meta files will also track the build command and rebuild should 451# it change. 452.if empty(.MAKE.MODE:Mnofilemon) 453NO_CLEAN= t 454.endif 455.endif 456.if defined(NO_OBJWALK) || ${MK_AUTO_OBJ} == "yes" 457NO_OBJWALK= t 458NO_KERNELOBJ= t 459.endif 460.if !defined(NO_OBJWALK) 461_obj= obj 462.endif 463 464LOCAL_TOOL_DIRS?= 465PACKAGEDIR?= ${DESTDIR}/${DISTDIR} 466 467.if empty(SHELL:M*csh*) 468BUILDENV_SHELL?=${SHELL} 469.else 470BUILDENV_SHELL?=/bin/sh 471.endif 472 473.if !defined(_MKSHOWCONFIG) 474.if !defined(SVN_CMD) || empty(SVN_CMD) 475. for _P in /usr/bin /usr/local/bin 476. for _S in svn svnlite 477. if exists(${_P}/${_S}) 478SVN_CMD= ${_P}/${_S} 479. endif 480. endfor 481. endfor 482.export SVN_CMD 483.endif 484SVNFLAGS?= -r HEAD 485.if !defined(VCS_REVISION) || empty(VCS_REVISION) 486.if !defined(SVNVERSION_CMD) || empty(SVNVERSION_CMD) 487. for _D in ${PATH:S,:, ,g} 488. if exists(${_D}/svnversion) 489SVNVERSION_CMD?=${_D}/svnversion 490. endif 491. if exists(${_D}/svnliteversion) 492SVNVERSION_CMD?=${_D}/svnliteversion 493. endif 494. endfor 495.endif 496_VCS_REVISION?= $$(eval ${SVNVERSION_CMD} ${SRCDIR}) 497. if !empty(_VCS_REVISION) 498VCS_REVISION= $$(echo r${_VCS_REVISION}) 499. endif 500.export VCS_REVISION 501.endif 502 503.if !defined(OSRELDATE) 504.if exists(/usr/include/osreldate.h) 505OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 506 /usr/include/osreldate.h 507.else 508OSRELDATE= 0 509.endif 510.export OSRELDATE 511.endif 512 513# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. 514.if !defined(_REVISION) 515_REVISION!= ${MAKE} -C ${SRCDIR}/release MK_AUTO_OBJ=no -V REVISION 516.export _REVISION 517.endif 518.if !defined(_BRANCH) 519_BRANCH!= ${MAKE} -C ${SRCDIR}/release MK_AUTO_OBJ=no -V BRANCH 520.export _BRANCH 521.endif 522.if !defined(SRCRELDATE) 523SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 524 ${SRCDIR}/sys/sys/param.h 525.export SRCRELDATE 526.endif 527.if !defined(VERSION) 528VERSION= FreeBSD ${_REVISION}-${_BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} 529.export VERSION 530.endif 531 532.if !defined(PKG_VERSION) 533.if ${_BRANCH:MSTABLE*} || ${_BRANCH:MCURRENT*} 534TIMENOW= %Y%m%d%H%M%S 535EXTRA_REVISION= .s${TIMENOW:gmtime} 536.elif ${_BRANCH:MALPHA*} 537EXTRA_REVISION= _${_BRANCH:C/-ALPHA/.a/} 538.elif ${_BRANCH:MBETA*} 539EXTRA_REVISION= _${_BRANCH:C/-BETA/.b/} 540.elif ${_BRANCH:MRC*} 541EXTRA_REVISION= _${_BRANCH:C/-RC/.r/} 542.elif ${_BRANCH:MPRERELEASE*} 543EXTRA_REVISION= _${_BRANCH:C/-PRERELEASE/.p/} 544.elif ${_BRANCH:M*-p*} 545EXTRA_REVISION= _${_BRANCH:C/.*-p([0-9]+$)/\1/} 546.endif 547PKG_VERSION= ${_REVISION}${EXTRA_REVISION} 548.endif 549.endif # !defined(PKG_VERSION) 550 551.if !defined(_MKSHOWCONFIG) 552_CPUTYPE!= MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} -f /dev/null \ 553 -m ${.CURDIR}/share/mk MK_AUTO_OBJ=no -V CPUTYPE 554.if ${_CPUTYPE} != ${_TARGET_CPUTYPE} 555.error CPUTYPE global should be set with ?=. 556.endif 557.endif 558.if make(buildworld) 559BUILD_ARCH!= uname -p 560.if ${MACHINE_ARCH} != ${BUILD_ARCH} 561.error To cross-build, set TARGET_ARCH. 562.endif 563.endif 564WORLDTMP?= ${OBJTOP}/tmp 565BPATH= ${CCACHE_WRAPPER_PATH_PFX}${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin:${WORLDTMP}/legacy/usr/libexec 566XPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin 567 568# When building we want to find the cross tools before the host tools in ${BPATH}. 569# We also need to add UNIVERSE_TOOLCHAIN_PATH so that we can find the shared 570# toolchain files (clang, lld, etc.) during make universe/tinderbox 571STRICTTMPPATH= ${XPATH}:${BPATH}:${UNIVERSE_TOOLCHAIN_PATH} 572# We should not be using tools from /usr/bin accidentally since this could cause 573# the build to break on other systems that don't have that tool. For now we 574# still allow using the old behaviour (inheriting $PATH) if 575# BUILD_WITH_STRICT_TMPPATH is set to 0 but this will eventually be removed. 576 577# Currently strict $PATH can cause build failures and does not work yet with 578# USING_SYSTEM_LINKER/USING_SYSTEM_COMPILER. Once these issues have been 579# resolved it will be turned on by default. 580BUILD_WITH_STRICT_TMPPATH?=0 581.if ${BUILD_WITH_STRICT_TMPPATH} != 0 582TMPPATH= ${STRICTTMPPATH} 583.else 584TMPPATH= ${STRICTTMPPATH}:${PATH} 585.endif 586 587# 588# Avoid running mktemp(1) unless actually needed. 589# It may not be functional, e.g., due to new ABI 590# when in the middle of installing over this system. 591# 592.if make(distributeworld) || make(installworld) || make(stageworld) 593.if ${BUILD_WITH_STRICT_TMPPATH} != 0 594MKTEMP=${WORLDTMP}/legacy/usr/bin/mktemp 595.if !exists(${MKTEMP}) 596.error "mktemp binary doesn't exist in expected location: ${MKTEMP}" 597.endif 598.else 599MKTEMP=mktemp 600.endif 601INSTALLTMP!= ${MKTEMP} -d -u -t install 602.endif 603 604.if make(stagekernel) || make(distributekernel) 605TAGS+= kernel 606PACKAGE= kernel 607.endif 608 609# 610# Building a world goes through the following stages 611# 612# 1. legacy stage [BMAKE] 613# This stage is responsible for creating compatibility 614# shims that are needed by the bootstrap-tools, 615# build-tools and cross-tools stages. These are generally 616# APIs that tools from one of those three stages need to 617# build that aren't present on the host. 618# 1. bootstrap-tools stage [BMAKE] 619# This stage is responsible for creating programs that 620# are needed for backward compatibility reasons. They 621# are not built as cross-tools. 622# 2. build-tools stage [TMAKE] 623# This stage is responsible for creating the object 624# tree and building any tools that are needed during 625# the build process. Some programs are listed during 626# this phase because they build binaries to generate 627# files needed to build these programs. This stage also 628# builds the 'build-tools' target rather than 'all'. 629# 3. cross-tools stage [XMAKE] 630# This stage is responsible for creating any tools that 631# are needed for building the system. A cross-compiler is one 632# of them. This differs from build tools in two ways: 633# 1. the 'all' target is built rather than 'build-tools' 634# 2. these tools are installed into TMPPATH for stage 4. 635# 4. world stage [WMAKE] 636# This stage actually builds the world. 637# 5. install stage (optional) [IMAKE] 638# This stage installs a previously built world. 639# 640 641BOOTSTRAPPING?= 0 642# Keep these in sync 643MINIMUM_SUPPORTED_OSREL?= 1002501 644MINIMUM_SUPPORTED_REL?= 10.3 645 646# Common environment for world related stages 647CROSSENV+= \ 648 MACHINE_ARCH=${TARGET_ARCH} \ 649 MACHINE=${TARGET} \ 650 CPUTYPE=${TARGET_CPUTYPE} 651.if ${MK_META_MODE} != "no" 652# Don't rebuild build-tools targets during normal build. 653CROSSENV+= BUILD_TOOLS_META=.NOMETA 654.endif 655.if defined(TARGET_CFLAGS) 656CROSSENV+= ${TARGET_CFLAGS} 657.endif 658.if (${TARGET} != ${MACHINE} && !defined(WITH_LOCAL_MODULES)) || \ 659 defined(WITHOUT_LOCAL_MODULES) 660CROSSENV+= LOCAL_MODULES= 661.endif 662 663BOOTSTRAPPING_OSRELDATE?=${OSRELDATE} 664 665# bootstrap-tools stage 666BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 667 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \ 668 PATH=${BPATH}:${PATH} \ 669 WORLDTMP=${WORLDTMP} \ 670 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 671# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile 672BSARGS= DESTDIR= \ 673 OBJTOP='${WORLDTMP}/obj-tools' \ 674 OBJROOT='$${OBJTOP}/' \ 675 MAKEOBJDIRPREFIX= \ 676 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 677 BWPHASE=${.TARGET:C,^_,,} \ 678 SSP_CFLAGS= \ 679 MK_HTML=no NO_LINT=yes MK_MAN=no \ 680 -DNO_PIC MK_PROFILE=no -DNO_SHARED \ 681 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 682 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ 683 MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no \ 684 MK_INCLUDES=yes 685 686BMAKE= \ 687 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 688 ${BSARGS} 689.if empty(.MAKEOVERRIDES:MMK_LLVM_TARGET_ALL) 690BMAKE+= MK_LLVM_TARGET_ALL=no 691.endif 692 693# build-tools stage 694TMAKE= \ 695 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 696 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 697 DESTDIR= \ 698 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 699 BWPHASE=${.TARGET:C,^_,,} \ 700 SSP_CFLAGS= \ 701 -DNO_LINT \ 702 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 703 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ 704 MK_LLDB=no MK_RETPOLINE=no MK_TESTS=no 705 706# cross-tools stage 707# TOOLS_PREFIX set in BMAKE 708XMAKE= ${BMAKE} \ 709 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 710 MK_CLANG_IS_CC=${MK_CLANG_BOOTSTRAP} \ 711 MK_GDB=no MK_TESTS=no 712 713# kernel-tools stage 714KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 715 PATH=${BPATH}:${PATH} \ 716 WORLDTMP=${WORLDTMP} 717KTMAKE= \ 718 TOOLS_PREFIX=${TOOLS_PREFIX_UNDEF:U${WORLDTMP}} \ 719 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 720 DESTDIR= \ 721 OBJTOP='${WORLDTMP}/obj-kernel-tools' \ 722 OBJROOT='$${OBJTOP}/' \ 723 MAKEOBJDIRPREFIX= \ 724 BOOTSTRAPPING=${BOOTSTRAPPING_OSRELDATE} \ 725 SSP_CFLAGS= \ 726 MK_HTML=no -DNO_LINT MK_MAN=no \ 727 -DNO_PIC MK_PROFILE=no -DNO_SHARED \ 728 -DNO_CPU_CFLAGS MK_RETPOLINE=no MK_WARNS=no MK_CTF=no 729 730# world stage 731WMAKEENV= ${CROSSENV} \ 732 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 733 PATH=${TMPPATH} \ 734 SYSROOT=${WORLDTMP} 735 736# make hierarchy 737HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} 738.if defined(NO_ROOT) 739HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT 740.endif 741 742CROSSENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCXXFLAGS} ${XCFLAGS}" \ 743 CPP="${XCPP} ${XCFLAGS}" \ 744 AS="${XAS}" AR="${XAR}" LD="${XLD}" LLVM_LINK="${XLLVM_LINK}" \ 745 NM=${XNM} OBJCOPY="${XOBJCOPY}" \ 746 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ 747 SIZE="${XSIZE}" 748 749.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) 750# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a 751# directory, but the compiler will look in the right place for its 752# tools so we don't need to tell it where to look. 753BFLAGS+= -B${CROSS_BINUTILS_PREFIX} 754.endif 755 756 757# The internal bootstrap compiler has a default sysroot set by TOOLS_PREFIX 758# and target set by TARGET/TARGET_ARCH. However, there are several needs to 759# always pass an explicit --sysroot and -target. 760# - External compiler needs sysroot and target flags. 761# - External ld needs sysroot. 762# - To be clear about the use of a sysroot when using the internal compiler. 763# - Easier debugging. 764# - Allowing WITH_SYSTEM_COMPILER+WITH_META_MODE to work together due to 765# the flip-flopping build command when sometimes using external and 766# sometimes using internal. 767# - Allow using lld which has no support for default paths. 768.if !defined(CROSS_BINUTILS_PREFIX) || !exists(${CROSS_BINUTILS_PREFIX}) 769BFLAGS+= -B${WORLDTMP}/usr/bin 770.endif 771.if ${WANT_COMPILER_TYPE} == gcc || \ 772 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 773.elif ${WANT_COMPILER_TYPE} == clang || \ 774 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == clang) 775XCFLAGS+= -target ${TARGET_TRIPLE} 776.endif 777XCFLAGS+= --sysroot=${WORLDTMP} 778 779.if !empty(BFLAGS) 780XCFLAGS+= ${BFLAGS} 781.endif 782 783.if ${MK_LIB32} == "yes" 784_LIBCOMPAT= 32 785.include "Makefile.libcompat" 786.elif ${MK_LIBSOFT} == "yes" 787_LIBCOMPAT= SOFT 788.include "Makefile.libcompat" 789.endif 790 791# META_MODE normally ignores host file changes since every build updates 792# timestamps (see NO_META_IGNORE_HOST in sys.mk). There are known times 793# when the ABI breaks though that we want to force rebuilding WORLDTMP 794# to get updated host tools. 795.if ${MK_META_MODE} == "yes" && defined(NO_CLEAN) && \ 796 !defined(NO_META_IGNORE_HOST) && !defined(NO_META_IGNORE_HOST_HEADERS) && \ 797 !defined(_MKSHOWCONFIG) 798# r318736 - ino64 major ABI breakage 799META_MODE_BAD_ABI_VERS+= 1200031 800 801.if !defined(OBJDIR_HOST_OSRELDATE) 802.if exists(${OBJTOP}/host-osreldate.h) 803OBJDIR_HOST_OSRELDATE!= \ 804 awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 805 ${OBJTOP}/host-osreldate.h 806.elif exists(${WORLDTMP}/usr/include/osreldate.h) 807OBJDIR_HOST_OSRELDATE= 0 808.endif 809.export OBJDIR_HOST_OSRELDATE 810.endif 811 812# Note that this logic is the opposite of normal BOOTSTRAP handling. We want 813# to compare the WORLDTMP's OSRELDATE to the host's OSRELDATE. If the WORLDTMP 814# is older than the ABI-breakage OSRELDATE of the HOST then we rebuild. 815.if defined(OBJDIR_HOST_OSRELDATE) 816.for _ver in ${META_MODE_BAD_ABI_VERS} 817.if ${OSRELDATE} >= ${_ver} && ${OBJDIR_HOST_OSRELDATE} < ${_ver} 818_meta_mode_need_rebuild= ${_ver} 819.endif 820.endfor 821.if defined(_meta_mode_need_rebuild) 822.info META_MODE: Rebuilding host tools due to ABI breakage in __FreeBSD_version ${_meta_mode_need_rebuild}. 823NO_META_IGNORE_HOST_HEADERS= 1 824.export NO_META_IGNORE_HOST_HEADERS 825.endif # defined(_meta_mode_need_rebuild) 826.endif # defined(OBJDIR_HOST_OSRELDATE) 827.endif # ${MK_META_MODE} == "yes" && defined(NO_CLEAN) ... 828# This is only used for META_MODE+filemon to track what the oldest 829# __FreeBSD_version is in WORLDTMP. This purposely does NOT have 830# a make dependency on /usr/include/osreldate.h as the file should 831# only be copied when it is missing or meta mode determines it has changed. 832# Since host files are normally ignored without NO_META_IGNORE_HOST 833# the file will never be updated unless that flag is specified. This 834# allows tracking the oldest osreldate to force rebuilds via 835# META_MODE_BADABI_REVS above. 836host-osreldate.h: # DO NOT ADD /usr/include/osreldate.h here 837 @cp -f /usr/include/osreldate.h ${.TARGET} 838 839WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 840 BWPHASE=${.TARGET:C,^_,,} \ 841 DESTDIR=${WORLDTMP} 842 843IMAKEENV= ${CROSSENV} 844IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 \ 845 ${IMAKE_INSTALL} ${IMAKE_MTREE} 846.if empty(.MAKEFLAGS:M-n) 847IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ 848 LD_LIBRARY_PATH=${INSTALLTMP} \ 849 PATH_LOCALE=${INSTALLTMP}/locale 850IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh 851.else 852IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} 853.endif 854 855# When generating install media, do not allow user and group information from 856# the build host to affect the contents of the distribution. 857.if make(distributeworld) || make(distrib-dirs) || make(distribution) || \ 858 make(stageworld) 859DB_FROM_SRC= yes 860.endif 861 862.if defined(DB_FROM_SRC) 863INSTALLFLAGS+= -N ${.CURDIR}/etc 864MTREEFLAGS+= -N ${.CURDIR}/etc 865.endif 866_INSTALL_DDIR= ${DESTDIR}/${DISTDIR} 867INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::} 868.if defined(NO_ROOT) 869METALOG?= ${DESTDIR}/${DISTDIR}/METALOG 870METALOG:= ${METALOG:C,//+,/,g} 871IMAKE+= -DNO_ROOT METALOG=${METALOG} 872INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR} 873MTREEFLAGS+= -W 874.endif 875.if defined(BUILD_PKGS) 876INSTALLFLAGS+= -h sha256 877.endif 878.if defined(DB_FROM_SRC) || defined(NO_ROOT) 879IMAKE_INSTALL= INSTALL="${INSTALL_CMD} ${INSTALLFLAGS}" 880IMAKE_MTREE= MTREE_CMD="${MTREE_CMD} ${MTREEFLAGS}" 881.endif 882 883DESTDIR_MTREEFLAGS= -deU 884# When creating worldtmp we don't need to set the directories as owned by root 885# so we also pass -W 886WORLDTMP_MTREEFLAGS= -deUW 887.if defined(NO_ROOT) 888# When building with -DNO_ROOT we shouldn't be changing the directories 889# that are created by mtree to be owned by root/wheel. 890DESTDIR_MTREEFLAGS+= -W 891.endif 892DISTR_MTREE= ${MTREE_CMD} 893.if ${BUILD_WITH_STRICT_TMPPATH} != 0 894DISTR_MTREE= ${WORLDTMP}/legacy/usr/sbin/mtree 895.endif 896WORLDTMP_MTREE= ${DISTR_MTREE} ${WORLDTMP_MTREEFLAGS} 897DESTDIR_MTREE= ${DISTR_MTREE} ${DESTDIR_MTREEFLAGS} 898 899# kernel stage 900KMAKEENV= ${WMAKEENV:NSYSROOT=*} 901KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} 902 903# 904# buildworld 905# 906# Attempt to rebuild the entire system, with reasonable chance of 907# success, regardless of how old your existing system is. 908# 909_sanity_check: .PHONY .MAKE 910.if ${.CURDIR:C/[^,]//g} != "" 911# The m4 build of sendmail files doesn't like it if ',' is used 912# anywhere in the path of it's files. 913 @echo 914 @echo "*** Error: path to source tree contains a comma ','" 915 @echo 916 @false 917.elif ${.CURDIR:M*\:*} != "" 918# Using ':' leaks into PATH and breaks finding cross-tools. 919 @echo 920 @echo "*** Error: path to source tree contains a colon ':'" 921 @echo 922 @false 923.endif 924 925# Our current approach to dependency tracking cannot cope with certain source 926# tree changes, particularly with respect to removing source files and 927# replacing generated files. Handle these cases here in an ad-hoc fashion. 928_cleanobj_fast_depend_hack: .PHONY 929 @echo ">>> Deleting stale dependencies..."; 930 sh ${.CURDIR}/tools/build/depend-cleanup.sh ${OBJTOP} 931# Date SVN Rev Syscalls/Changes 932# Syscall stubs rewritten in C and obsolete MD assembly implementations 933# 20191009 r353340 removal of opensolaris_atomic.S (also r353381) 934.if ${MACHINE} != i386 935.for f in opensolaris_atomic 936 @if [ -e "${OBJTOP}/cddl/lib/libzpool/.depend.${f}.o" ] && \ 937 egrep -qw 'opensolaris_atomic\.S' ${OBJTOP}/cddl/lib/libzpool/.depend.${f}.o; then \ 938 echo "Removing stale dependencies for opensolaris_atomic"; \ 939 rm -f ${OBJTOP}/cddl/lib/libzpool/.depend.${f}.* \ 940 ${LIBCOMPAT:D${LIBCOMPAT_OBJTOP}/cddl/lib/libzpool/.depend.${f}.*}; \ 941 fi 942.endfor 943.endif 944# 20190925 r352689 removal of obsolete i386 memchr.S 945.for f in memchr 946 @if [ -e "${OBJTOP}/lib/libc/.depend.${f}.o" ] && \ 947 egrep -qw 'i386/string/memchr\.S' ${OBJTOP}/lib/libc/.depend.${f}.o; then \ 948 echo "Removing stale dependencies for memchr"; \ 949 rm -f ${OBJTOP}/lib/libc/.depend.${f}.*; \ 950 fi 951.if defined(_LIBCOMPAT) 952 @if [ -e "${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.o" ] && \ 953 egrep -qw 'i386/string/memchr\.S' ${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.o; then \ 954 echo "Removing stale dependencies for memchr"; \ 955 rm -f ${LIBCOMPAT_OBJTOP}/lib/libc/.depend.${f}.*; \ 956 fi 957.endif 958.endfor 959 960_worldtmp: .PHONY 961 @echo 962 @echo "--------------------------------------------------------------" 963 @echo ">>> Rebuilding the temporary build tree" 964 @echo "--------------------------------------------------------------" 965.if !defined(NO_CLEAN) 966 rm -rf ${WORLDTMP} 967.else 968# Note: for delete-old we need to set $PATH to also include the host $PATH 969# since otherwise a partial build with missing symlinks in ${WORLDTMP}/legacy/ 970# will fail to run due to missing binaries. $WMAKE sets PATH to only ${TMPPATH} 971# so we remove that assingnment from $WMAKE and prepend the new $PATH 972 ${_+_}@if [ -e "${WORLDTMP}" ]; then \ 973 echo ">>> Deleting stale files in build tree..."; \ 974 cd ${.CURDIR}; env PATH=${TMPPATH}:${PATH} ${WMAKE:NPATH=*} \ 975 _NO_INCLUDE_COMPILERMK=t -DBATCH_DELETE_OLD_FILES delete-old \ 976 delete-old-libs >/dev/null; \ 977 fi 978 rm -rf ${WORLDTMP}/legacy/usr/include 979.if ${USING_SYSTEM_COMPILER} == "yes" 980.for cc in cc c++ 981 if [ -x ${WORLDTMP}/usr/bin/${cc} ]; then \ 982 inum=$$(stat -f %i ${WORLDTMP}/usr/bin/${cc}); \ 983 find ${WORLDTMP}/usr/bin -inum $${inum} -delete; \ 984 fi 985.endfor 986.endif # ${USING_SYSTEM_COMPILER} == "yes" 987.if ${USING_SYSTEM_LINKER} == "yes" 988 @rm -f ${WORLDTMP}/usr/bin/ld ${WORLDTMP}/usr/bin/ld.lld 989.endif # ${USING_SYSTEM_LINKER} == "yes" 990.endif # !defined(NO_CLEAN) 991 @mkdir -p ${WORLDTMP} 992 @touch ${WORLDTMP}/${.TARGET} 993# We can't use mtree to create the worldtmp directories since it may not be 994# available on the target system (this happens e.g. when building on non-FreeBSD) 995 cd ${.CURDIR}/tools/build; \ 996 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy installdirs 997# In order to build without inheriting $PATH we need to add symlinks to the host 998# tools in $WORLDTMP for the tools that we don't build during bootstrap-tools 999 cd ${.CURDIR}/tools/build; \ 1000 ${MAKE} DIRPRFX=tools/build/ DESTDIR=${WORLDTMP}/legacy host-symlinks 1001 1002_legacy: 1003 @echo 1004 @echo "--------------------------------------------------------------" 1005 @echo ">>> stage 1.1: legacy release compatibility shims" 1006 @echo "--------------------------------------------------------------" 1007 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy 1008_bootstrap-tools: 1009 @echo 1010 @echo "--------------------------------------------------------------" 1011 @echo ">>> stage 1.2: bootstrap tools" 1012 @echo "--------------------------------------------------------------" 1013 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools 1014 mkdir -p ${WORLDTMP}/usr ${WORLDTMP}/lib/casper ${WORLDTMP}/lib/geom 1015 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1016 -p ${WORLDTMP}/usr >/dev/null 1017 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1018 -p ${WORLDTMP}/usr/include >/dev/null 1019 ln -sf ${.CURDIR}/sys ${WORLDTMP} 1020.if ${MK_DEBUG_FILES} != "no" 1021 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1022 -p ${WORLDTMP}/usr/lib >/dev/null 1023.endif 1024.for _mtree in ${LOCAL_MTREE} 1025 ${WORLDTMP_MTREE} -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null 1026.endfor 1027_cleanobj: 1028.if !defined(NO_CLEAN) 1029 @echo 1030 @echo "--------------------------------------------------------------" 1031 @echo ">>> stage 2.1: cleaning up the object tree" 1032 @echo "--------------------------------------------------------------" 1033 # Avoid including bsd.compiler.mk in clean and obj with _NO_INCLUDE_COMPILERMK 1034 # since the restricted $PATH might not contain a valid cc binary 1035 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t ${CLEANDIR} 1036.if defined(_LIBCOMPAT) 1037 ${_+_}cd ${.CURDIR}; ${LIBCOMPATWMAKE} _NO_INCLUDE_COMPILERMK=t -f Makefile.inc1 ${CLEANDIR} 1038.endif 1039.else 1040 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t _cleanobj_fast_depend_hack 1041.endif # !defined(NO_CLEAN) 1042_obj: 1043 @echo 1044 @echo "--------------------------------------------------------------" 1045 @echo ">>> stage 2.2: rebuilding the object tree" 1046 @echo "--------------------------------------------------------------" 1047 ${_+_}cd ${.CURDIR}; ${WMAKE} _NO_INCLUDE_COMPILERMK=t obj 1048_build-tools: 1049 @echo 1050 @echo "--------------------------------------------------------------" 1051 @echo ">>> stage 2.3: build tools" 1052 @echo "--------------------------------------------------------------" 1053 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools 1054_cross-tools: 1055 @echo 1056 @echo "--------------------------------------------------------------" 1057 @echo ">>> stage 3: cross tools" 1058 @echo "--------------------------------------------------------------" 1059 @rm -f ${OBJTOP}/toolchain-metadata.mk 1060 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools 1061 ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools 1062_build-metadata: 1063 @echo 1064 @echo "--------------------------------------------------------------" 1065 @echo ">>> stage 3.1: recording build metadata" 1066 @echo "--------------------------------------------------------------" 1067 ${_+_}cd ${.CURDIR}; ${WMAKE} toolchain-metadata.mk 1068 ${_+_}cd ${.CURDIR}; ${WMAKE} host-osreldate.h 1069_includes: 1070 @echo 1071 @echo "--------------------------------------------------------------" 1072 @echo ">>> stage 4.1: building includes" 1073 @echo "--------------------------------------------------------------" 1074# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need 1075# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. 1076 ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ 1077 MK_INCLUDES=yes includes 1078.if !empty(SUBDIR_OVERRIDE) && make(buildworld) 1079 ${_+_}cd ${.CURDIR}; ${WMAKE} MK_INCLUDES=yes SHARED=symlinks includes 1080.endif 1081_libraries: 1082 @echo 1083 @echo "--------------------------------------------------------------" 1084 @echo ">>> stage 4.2: building libraries" 1085 @echo "--------------------------------------------------------------" 1086 ${_+_}cd ${.CURDIR}; \ 1087 ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \ 1088 MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} \ 1089 libraries 1090everything: .PHONY 1091 @echo 1092 @echo "--------------------------------------------------------------" 1093 @echo ">>> stage 4.4: building everything" 1094 @echo "--------------------------------------------------------------" 1095 ${_+_}cd ${.CURDIR}; _PARALLEL_SUBDIR_OK=1 ${WMAKE} all 1096 1097WMAKE_TGTS= 1098.if !defined(WORLDFAST) 1099WMAKE_TGTS+= _sanity_check _worldtmp _legacy 1100.if empty(SUBDIR_OVERRIDE) 1101WMAKE_TGTS+= _bootstrap-tools 1102.endif 1103WMAKE_TGTS+= _cleanobj 1104.if !defined(NO_OBJWALK) 1105WMAKE_TGTS+= _obj 1106.endif 1107WMAKE_TGTS+= _build-tools _cross-tools 1108WMAKE_TGTS+= _build-metadata 1109WMAKE_TGTS+= _includes 1110.endif 1111.if !defined(NO_LIBS) 1112WMAKE_TGTS+= _libraries 1113.endif 1114.if defined(_LIBCOMPAT) && empty(SUBDIR_OVERRIDE) 1115WMAKE_TGTS+= build${libcompat} 1116.endif 1117WMAKE_TGTS+= everything 1118 1119# record buildworld time in seconds 1120.if make(buildworld) 1121_BUILDWORLD_START!= date '+%s' 1122.export _BUILDWORLD_START 1123.endif 1124 1125buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue .PHONY 1126.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 1127 1128buildworld_prologue: .PHONY 1129 @echo "--------------------------------------------------------------" 1130 @echo ">>> World build started on `LC_ALL=C date`" 1131 @echo "--------------------------------------------------------------" 1132 1133buildworld_epilogue: .PHONY 1134 @echo 1135 @echo "--------------------------------------------------------------" 1136 @echo ">>> World build completed on `LC_ALL=C date`" 1137 @seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \ 1138 echo -n ">>> World built in $$seconds seconds, "; \ 1139 echo "ncpu: $$(sysctl -n hw.ncpu)${.MAKE.JOBS:S/^/, make -j/}" 1140 @echo "--------------------------------------------------------------" 1141 1142# 1143# We need to have this as a target because the indirection between Makefile 1144# and Makefile.inc1 causes the correct PATH to be used, rather than a 1145# modification of the current environment's PATH. In addition, we need 1146# to quote multiword values. 1147# 1148buildenvvars: .PHONY 1149 @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} 1150 1151.if ${.TARGETS:Mbuildenv} 1152.if ${.MAKEFLAGS:M-j} 1153.error The buildenv target is incompatible with -j 1154.endif 1155.endif 1156BUILDENV_DIR?= ${.CURDIR} 1157# 1158# Note: make will report any errors the shell reports. This can 1159# be odd if the last command in an interactive shell generates an 1160# error or is terminated by SIGINT. These reported errors look bad, 1161# but are harmless. Allowing them also allows BUIDLENV_SHELL to 1162# be a complex command whose status will be returned to the caller. 1163# Some scripts in tools rely on this behavior to report build errors. 1164# 1165buildenv: .PHONY 1166 @echo Entering world for ${TARGET_ARCH}:${TARGET} 1167.if ${BUILDENV_SHELL:M*zsh*} 1168 @echo For ZSH you must run: export CPUTYPE=${TARGET_CPUTYPE} 1169.endif 1170 @cd ${BUILDENV_DIR} && env ${WMAKEENV} BUILDENV=1 ${BUILDENV_SHELL} 1171 1172TOOLCHAIN_TGTS= ${WMAKE_TGTS:Neverything:Nbuild${libcompat}} 1173toolchain: ${TOOLCHAIN_TGTS} .PHONY 1174KERNEL_TOOLCHAIN_TGTS= ${TOOLCHAIN_TGTS:N_obj:N_cleanobj:N_includes:N_libraries} 1175.if make(kernel-toolchain) 1176.ORDER: ${KERNEL_TOOLCHAIN_TGTS} 1177.endif 1178kernel-toolchain: ${KERNEL_TOOLCHAIN_TGTS} .PHONY 1179 1180# 1181# installcheck 1182# 1183# Checks to be sure system is ready for installworld/installkernel. 1184# 1185installcheck: _installcheck_world _installcheck_kernel .PHONY 1186_installcheck_world: .PHONY 1187 @echo "--------------------------------------------------------------" 1188 @echo ">>> Install check world" 1189 @echo "--------------------------------------------------------------" 1190_installcheck_kernel: .PHONY 1191 @echo "--------------------------------------------------------------" 1192 @echo ">>> Install check kernel" 1193 @echo "--------------------------------------------------------------" 1194 1195# 1196# Require DESTDIR to be set if installing for a different architecture or 1197# using the user/group database in the source tree. 1198# 1199.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ 1200 defined(DB_FROM_SRC) 1201.if !make(distributeworld) 1202_installcheck_world: __installcheck_DESTDIR 1203_installcheck_kernel: __installcheck_DESTDIR 1204__installcheck_DESTDIR: .PHONY 1205.if !defined(DESTDIR) || empty(DESTDIR) 1206 @echo "ERROR: Please set DESTDIR!"; \ 1207 false 1208.endif 1209.endif 1210.endif 1211 1212.if !defined(DB_FROM_SRC) 1213# 1214# Check for missing UIDs/GIDs. 1215# 1216CHECK_UIDS= auditdistd 1217CHECK_GIDS= audit 1218CHECK_UIDS+= ntpd 1219CHECK_GIDS+= ntpd 1220CHECK_UIDS+= proxy 1221CHECK_GIDS+= proxy authpf 1222CHECK_UIDS+= smmsp 1223CHECK_GIDS+= smmsp 1224CHECK_UIDS+= unbound 1225CHECK_GIDS+= unbound 1226_installcheck_world: __installcheck_UGID 1227__installcheck_UGID: .PHONY 1228.for uid in ${CHECK_UIDS} 1229 @if ! `id -u ${uid} >/dev/null 2>&1`; then \ 1230 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ 1231 false; \ 1232 fi 1233.endfor 1234.for gid in ${CHECK_GIDS} 1235 @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ 1236 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ 1237 false; \ 1238 fi 1239.endfor 1240.endif 1241# 1242# If installing over the running system (DESTDIR is / or unset) and the install 1243# includes rescue, try running rescue from the objdir as a sanity check. If 1244# rescue is not functional (e.g., because it depends on a system call not 1245# supported by the currently running kernel), abort the installation. 1246# 1247.if !make(distributeworld) && ${MK_RESCUE} != "no" && \ 1248 (empty(DESTDIR) || ${DESTDIR} == "/") && empty(BYPASS_INSTALLCHECK_SH) 1249_installcheck_world: __installcheck_sh_check 1250__installcheck_sh_check: .PHONY 1251 @if [ "`${OBJTOP}/rescue/rescue/rescue sh -c 'echo OK'`" != \ 1252 OK ]; then \ 1253 echo "rescue/sh check failed, installation aborted" >&2; \ 1254 false; \ 1255 fi 1256.endif 1257 1258# 1259# Required install tools to be saved in a scratch dir for safety. 1260# 1261.if ${MK_ZONEINFO} != "no" 1262_zoneinfo= zic tzsetup 1263.endif 1264 1265ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ 1266 date echo egrep find grep id install ${_install-info} \ 1267 ln make mkdir mtree mv pwd_mkdb \ 1268 rm sed services_mkdb sh sort strip sysctl test true uname wc ${_zoneinfo} \ 1269 ${LOCAL_ITOOLS} 1270 1271# Needed for share/man 1272.if ${MK_MAN_UTILS} != "no" 1273ITOOLS+=makewhatis 1274.endif 1275 1276# 1277# distributeworld 1278# 1279# Distributes everything compiled by a `buildworld'. 1280# 1281# installworld 1282# 1283# Installs everything compiled by a 'buildworld'. 1284# 1285 1286# Non-base distributions produced by the base system 1287EXTRA_DISTRIBUTIONS= 1288.if defined(_LIBCOMPAT) 1289EXTRA_DISTRIBUTIONS+= lib${libcompat} 1290.endif 1291.if ${MK_TESTS} != "no" 1292EXTRA_DISTRIBUTIONS+= tests 1293.endif 1294 1295DEBUG_DISTRIBUTIONS= 1296.if ${MK_DEBUG_FILES} != "no" 1297DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,tests,,} 1298.endif 1299 1300MTREE_MAGIC?= mtree 2.0 1301 1302distributeworld installworld stageworld: _installcheck_world .PHONY 1303 mkdir -p ${INSTALLTMP} 1304 progs=$$(for prog in ${ITOOLS}; do \ 1305 if progpath=`which $$prog`; then \ 1306 echo $$progpath; \ 1307 else \ 1308 echo "Required tool $$prog not found in PATH." >&2; \ 1309 exit 1; \ 1310 fi; \ 1311 done); \ 1312 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ 1313 while read line; do \ 1314 set -- $$line; \ 1315 if [ "$$2 $$3" != "not found" ]; then \ 1316 echo $$2; \ 1317 else \ 1318 echo "Required library $$1 not found." >&2; \ 1319 exit 1; \ 1320 fi; \ 1321 done); \ 1322 cp $$libs $$progs ${INSTALLTMP} 1323 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale 1324.if defined(NO_ROOT) 1325 -mkdir -p ${METALOG:H} 1326 echo "#${MTREE_MAGIC}" > ${METALOG} 1327.endif 1328.if make(distributeworld) 1329.for dist in ${EXTRA_DISTRIBUTIONS} 1330 -mkdir ${DESTDIR}/${DISTDIR}/${dist} 1331 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 1332 -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null 1333 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1334 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1335 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1336 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null 1337.if ${MK_DEBUG_FILES} != "no" 1338 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1339 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null 1340.endif 1341.if defined(_LIBCOMPAT) 1342 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1343 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 1344.if ${MK_DEBUG_FILES} != "no" 1345 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 1346 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null 1347.endif 1348.endif 1349.if ${MK_TESTS} != "no" && ${dist} == "tests" 1350 -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} 1351 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1352 -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null 1353.if ${MK_DEBUG_FILES} != "no" 1354 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 1355 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null 1356.endif 1357.endif 1358.if defined(NO_ROOT) 1359 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ 1360 sed -e 's#^\./#./${dist}/#' >> ${METALOG} 1361 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \ 1362 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1363 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ 1364 sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} 1365.if defined(_LIBCOMPAT) 1366 ${IMAKEENV} ${DISTR_MTREE} -C -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist | \ 1367 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 1368.endif 1369.endif 1370.endfor 1371 -mkdir ${DESTDIR}/${DISTDIR}/base 1372 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1373 METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ 1374 DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ 1375 LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs 1376 ${INSTALL_SYMLINK} ${INSTALLFLAGS} usr/src/sys ${INSTALL_DDIR}/base/sys 1377.endif 1378 ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ 1379 ${IMAKEENV} rm -rf ${INSTALLTMP} 1380.if make(distributeworld) 1381.for dist in ${EXTRA_DISTRIBUTIONS} 1382 find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete 1383.endfor 1384.if defined(NO_ROOT) 1385.for dist in base ${EXTRA_DISTRIBUTIONS} 1386 @# For each file that exists in this dist, print the corresponding 1387 @# line from the METALOG. This relies on the fact that 1388 @# a line containing only the filename will sort immediately before 1389 @# the relevant mtree line. 1390 cd ${DESTDIR}/${DISTDIR}; \ 1391 find ./${dist} | sort -u ${METALOG} - | \ 1392 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1393 ${DESTDIR}/${DISTDIR}/${dist}.meta 1394.endfor 1395.for dist in ${DEBUG_DISTRIBUTIONS} 1396 @# For each file that exists in this dist, print the corresponding 1397 @# line from the METALOG. This relies on the fact that 1398 @# a line containing only the filename will sort immediately before 1399 @# the relevant mtree line. 1400 cd ${DESTDIR}/${DISTDIR}; \ 1401 find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ 1402 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 1403 ${DESTDIR}/${DISTDIR}/${dist}.debug.meta 1404.endfor 1405.endif 1406.endif 1407 1408packageworld: .PHONY 1409.for dist in base ${EXTRA_DISTRIBUTIONS} 1410.if defined(NO_ROOT) 1411 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1412 tar cvf - --exclude usr/lib/debug \ 1413 @${DESTDIR}/${DISTDIR}/${dist}.meta | \ 1414 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1415.else 1416 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1417 tar cvf - --exclude usr/lib/debug . | \ 1418 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1419.endif 1420.endfor 1421 1422.for dist in ${DEBUG_DISTRIBUTIONS} 1423. if defined(NO_ROOT) 1424 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1425 tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ 1426 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1427. else 1428 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1429 tar cvLf - usr/lib/debug | \ 1430 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1431. endif 1432.endfor 1433 1434makeman: .PHONY 1435 ${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \ 1436 ${.CURDIR}/share/man/man5/src.conf.5 1437 1438# We can't assume here that ${TMPPATH} will include ${PATH} or /usr/libexec 1439# because we may be building with a STRICTTMPPATH, so we explicitly include 1440# /usr/libexec here for flua. ${TMPPATH} still usefully includes anything else 1441# we may need to function. 1442_sysent_PATH= ${TMPPATH}:/usr/libexec 1443_sysent_dirs= sys/kern 1444_sysent_dirs+= sys/compat/freebsd32 1445_sysent_dirs+= sys/compat/cloudabi32 \ 1446 sys/compat/cloudabi64 1447_sysent_dirs+= sys/amd64/linux \ 1448 sys/amd64/linux32 \ 1449 sys/arm/linux \ 1450 sys/arm64/linux \ 1451 sys/i386/linux 1452sysent: .PHONY 1453.for _dir in ${_sysent_dirs} 1454 @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent" 1455 ${_+_}@env PATH=${_sysent_PATH} ${MAKE} -C ${.CURDIR}/${_dir} sysent 1456.endfor 1457 1458# 1459# reinstall 1460# 1461# If you have a build server, you can NFS mount the source and obj directories 1462# and do a 'make reinstall' on the *client* to install new binaries from the 1463# most recent server build. 1464# 1465restage reinstall: .MAKE .PHONY 1466 @echo "--------------------------------------------------------------" 1467 @echo ">>> Making hierarchy" 1468 @echo "--------------------------------------------------------------" 1469 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1470 LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy 1471.if make(restage) 1472 @echo "--------------------------------------------------------------" 1473 @echo ">>> Making distribution" 1474 @echo "--------------------------------------------------------------" 1475 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1476 LOCAL_MTREE=${LOCAL_MTREE:Q} distribution 1477.endif 1478 @echo 1479 @echo "--------------------------------------------------------------" 1480 @echo ">>> Installing everything started on `LC_ALL=C date`" 1481 @echo "--------------------------------------------------------------" 1482 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 1483.if defined(_LIBCOMPAT) 1484 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat} 1485.endif 1486 @echo "--------------------------------------------------------------" 1487 @echo ">>> Installing everything completed on `LC_ALL=C date`" 1488 @echo "--------------------------------------------------------------" 1489 1490redistribute: .MAKE .PHONY 1491 @echo "--------------------------------------------------------------" 1492 @echo ">>> Distributing everything" 1493 @echo "--------------------------------------------------------------" 1494 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 1495.if defined(_LIBCOMPAT) 1496 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \ 1497 DISTRIBUTION=lib${libcompat} 1498.endif 1499 1500distrib-dirs distribution: .MAKE .PHONY 1501 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1502 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1503.if make(distribution) 1504 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ 1505 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ 1506 METALOG=${METALOG} MK_TESTS=no \ 1507 MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} installconfig 1508.endif 1509 1510# 1511# buildkernel and installkernel 1512# 1513# Which kernels to build and/or install is specified by setting 1514# KERNCONF. If not defined a GENERIC kernel is built/installed. 1515# Only the existing (depending TARGET) config files are used 1516# for building kernels and only the first of these is designated 1517# as the one being installed. 1518# 1519# Note that we have to use TARGET instead of TARGET_ARCH when 1520# we're in kernel-land. Since only TARGET_ARCH is (expected) to 1521# be set to cross-build, we have to make sure TARGET is set 1522# properly. 1523 1524.if defined(KERNFAST) 1525NO_KERNELCLEAN= t 1526NO_KERNELCONFIG= t 1527NO_KERNELOBJ= t 1528# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 1529.if !defined(KERNCONF) && ${KERNFAST} != "1" 1530KERNCONF=${KERNFAST} 1531.endif 1532.endif 1533.if ${TARGET_ARCH} == "powerpc64" 1534KERNCONF?= GENERIC64 1535.else 1536KERNCONF?= GENERIC 1537.endif 1538INSTKERNNAME?= kernel 1539 1540KERNSRCDIR?= ${.CURDIR}/sys 1541KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 1542KRNLOBJDIR= ${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,} 1543KERNCONFDIR?= ${KRNLCONFDIR} 1544 1545BUILDKERNELS= 1546INSTALLKERNEL= 1547.if defined(NO_INSTALLKERNEL) 1548# All of the BUILDKERNELS loops start at index 1. 1549BUILDKERNELS+= dummy 1550.endif 1551.for _kernel in ${KERNCONF} 1552.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel}) 1553BUILDKERNELS+= ${_kernel} 1554.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL) 1555INSTALLKERNEL= ${_kernel} 1556.endif 1557.else 1558.if make(buildkernel) 1559.error Missing KERNCONF ${KERNCONFDIR}/${_kernel} 1560.endif 1561.endif 1562.endfor 1563 1564_cleankernobj_fast_depend_hack: .PHONY 1565# 20180320 remove stale generated assym.s after renaming to .inc in r331254 1566 @if [ -e "${OBJTOP}/sys/${KERNCONF}/assym.s" ]; then \ 1567 echo "Removing stale generated assym files"; \ 1568 rm -f ${OBJTOP}/sys/${KERNCONF}/assym.* \ 1569 ${OBJTOP}/sys/${KERNCONF}/.depend.assym.*; \ 1570 fi 1571# 20191009 r353340 removal of opensolaris_atomic.S (also r353381) 1572.if ${MACHINE} != i386 1573.for f in opensolaris_atomic 1574.for m in opensolaris zfs 1575 @if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \ 1576 grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \ 1577 echo "Removing stale dependencies for opensolaris_atomic"; \ 1578 rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \ 1579 fi 1580.endfor 1581.endfor 1582.endif 1583 1584${WMAKE_TGTS:N_worldtmp:Nbuild${libcompat}} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY 1585 1586# record kernel(s) build time in seconds 1587.if make(buildkernel) 1588_BUILDKERNEL_START!= date '+%s' 1589.endif 1590 1591# 1592# buildkernel 1593# 1594# Builds all kernels defined by BUILDKERNELS. 1595# 1596buildkernel: .MAKE .PHONY 1597.if empty(BUILDKERNELS:Ndummy) 1598 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 1599 false 1600.endif 1601 @echo 1602.for _kernel in ${BUILDKERNELS:Ndummy} 1603 @echo "--------------------------------------------------------------" 1604 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 1605 @echo "--------------------------------------------------------------" 1606 @echo "===> ${_kernel}" 1607 mkdir -p ${KRNLOBJDIR} 1608.if !defined(NO_KERNELCONFIG) 1609 @echo 1610 @echo "--------------------------------------------------------------" 1611 @echo ">>> stage 1: configuring the kernel" 1612 @echo "--------------------------------------------------------------" 1613 cd ${KRNLCONFDIR}; \ 1614 PATH=${TMPPATH} \ 1615 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 1616 -I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \ 1617 '${KERNCONFDIR}/${_kernel}' 1618.endif 1619.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN) 1620 @echo 1621 @echo "--------------------------------------------------------------" 1622 @echo ">>> stage 2.1: cleaning up the object tree" 1623 @echo "--------------------------------------------------------------" 1624 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 1625.else 1626 ${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack 1627.endif 1628.if !defined(NO_KERNELOBJ) 1629 @echo 1630 @echo "--------------------------------------------------------------" 1631 @echo ">>> stage 2.2: rebuilding the object tree" 1632 @echo "--------------------------------------------------------------" 1633 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 1634.endif 1635 @echo 1636 @echo "--------------------------------------------------------------" 1637 @echo ">>> stage 2.3: build tools" 1638 @echo "--------------------------------------------------------------" 1639 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools 1640 @echo 1641 @echo "--------------------------------------------------------------" 1642 @echo ">>> stage 3.1: building everything" 1643 @echo "--------------------------------------------------------------" 1644 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 1645 @echo "--------------------------------------------------------------" 1646 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 1647 @echo "--------------------------------------------------------------" 1648 1649.endfor 1650 @seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \ 1651 echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \ 1652 echo "ncpu: $$(sysctl -n hw.ncpu)${.MAKE.JOBS:S/^/, make -j/}" 1653 @echo "--------------------------------------------------------------" 1654 1655NO_INSTALLEXTRAKERNELS?= yes 1656 1657# 1658# installkernel, etc. 1659# 1660# Install the kernel defined by INSTALLKERNEL 1661# 1662installkernel installkernel.debug \ 1663reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY 1664.if !defined(NO_INSTALLKERNEL) 1665.if empty(INSTALLKERNEL) 1666 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1667 false 1668.endif 1669 @echo "--------------------------------------------------------------" 1670 @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)" 1671 @echo "--------------------------------------------------------------" 1672 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1673 ${CROSSENV} PATH=${TMPPATH} \ 1674 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 1675 @echo "--------------------------------------------------------------" 1676 @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)" 1677 @echo "--------------------------------------------------------------" 1678.endif 1679.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1680.for _kernel in ${BUILDKERNELS:[2..-1]} 1681 @echo "--------------------------------------------------------------" 1682 @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)" 1683 @echo "--------------------------------------------------------------" 1684 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1685 ${CROSSENV} PATH=${TMPPATH} \ 1686 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} 1687 @echo "--------------------------------------------------------------" 1688 @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)" 1689 @echo "--------------------------------------------------------------" 1690.endfor 1691.endif 1692 1693distributekernel distributekernel.debug: .PHONY 1694.if !defined(NO_INSTALLKERNEL) 1695.if empty(INSTALLKERNEL) 1696 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1697 false 1698.endif 1699 mkdir -p ${DESTDIR}/${DISTDIR} 1700.if defined(NO_ROOT) 1701 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta 1702.endif 1703 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1704 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ 1705 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ 1706 DESTDIR=${INSTALL_DDIR}/kernel \ 1707 ${.TARGET:S/distributekernel/install/} 1708.if defined(NO_ROOT) 1709 @sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ 1710 ${DESTDIR}/${DISTDIR}/kernel.meta 1711.endif 1712.endif 1713.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1714.for _kernel in ${BUILDKERNELS:[2..-1]} 1715.if defined(NO_ROOT) 1716 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta 1717.endif 1718 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1719 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ 1720 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \ 1721 KERNEL=${INSTKERNNAME}.${_kernel} \ 1722 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ 1723 ${.TARGET:S/distributekernel/install/} 1724.if defined(NO_ROOT) 1725 @sed -e "s|^./kernel.${_kernel}|.|" \ 1726 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ 1727 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta 1728.endif 1729.endfor 1730.endif 1731 1732packagekernel: .PHONY 1733.if defined(NO_ROOT) 1734.if !defined(NO_INSTALLKERNEL) 1735 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1736 tar cvf - --exclude '*.debug' \ 1737 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1738 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1739.endif 1740.if ${MK_DEBUG_FILES} != "no" 1741 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1742 tar cvf - --include '*/*/*.debug' \ 1743 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1744 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1745.endif 1746.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1747.for _kernel in ${BUILDKERNELS:[2..-1]} 1748 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1749 tar cvf - --exclude '*.debug' \ 1750 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1751 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1752.if ${MK_DEBUG_FILES} != "no" 1753 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1754 tar cvf - --include '*/*/*.debug' \ 1755 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1756 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1757.endif 1758.endfor 1759.endif 1760.else 1761.if !defined(NO_INSTALLKERNEL) 1762 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1763 tar cvf - --exclude '*.debug' . | \ 1764 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1765.endif 1766.if ${MK_DEBUG_FILES} != "no" 1767 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1768 tar cvf - --include '*/*/*.debug' $$(eval find .) | \ 1769 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1770.endif 1771.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1772.for _kernel in ${BUILDKERNELS:[2..-1]} 1773 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1774 tar cvf - --exclude '*.debug' . | \ 1775 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1776.if ${MK_DEBUG_FILES} != "no" 1777 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1778 tar cvf - --include '*/*/*.debug' $$(eval find .) | \ 1779 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1780.endif 1781.endfor 1782.endif 1783.endif 1784 1785stagekernel: .PHONY 1786 ${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel 1787 1788PORTSDIR?= /usr/ports 1789WSTAGEDIR?= ${OBJTOP}/worldstage 1790KSTAGEDIR?= ${OBJTOP}/kernelstage 1791REPODIR?= ${OBJROOT}repo 1792PKG_FORMAT?= txz 1793PKGSIGNKEY?= # empty 1794 1795.ORDER: stage-packages create-packages 1796.ORDER: create-packages create-world-packages 1797.ORDER: create-packages create-kernel-packages 1798.ORDER: create-packages sign-packages 1799 1800_pkgbootstrap: .PHONY 1801.if make(*package*) && !exists(${LOCALBASE}/sbin/pkg) 1802 @env ASSUME_ALWAYS_YES=YES pkg bootstrap 1803.endif 1804 1805packages: .PHONY 1806 ${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} real-packages 1807 1808package-pkg: .PHONY 1809 rm -rf /tmp/ports.${TARGET} || : 1810 env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \ 1811 PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \ 1812 WSTAGEDIR=${WSTAGEDIR} \ 1813 sh ${.CURDIR}/release/scripts/make-pkg-package.sh 1814 1815real-packages: stage-packages create-packages sign-packages .PHONY 1816 1817stage-packages-world: .PHONY 1818 @mkdir -p ${WSTAGEDIR} 1819 ${_+_}@cd ${.CURDIR}; \ 1820 ${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld 1821 1822stage-packages-kernel: .PHONY 1823 @mkdir -p ${KSTAGEDIR} 1824 ${_+_}@cd ${.CURDIR}; \ 1825 ${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel 1826 1827stage-packages: .PHONY stage-packages-world stage-packages-kernel 1828 1829_repodir: .PHONY 1830 @mkdir -p ${REPODIR} 1831 1832create-packages-world: _pkgbootstrap _repodir .PHONY 1833 ${_+_}@cd ${.CURDIR}; \ 1834 ${MAKE} -f Makefile.inc1 \ 1835 DESTDIR=${WSTAGEDIR} \ 1836 PKG_VERSION=${PKG_VERSION} create-world-packages 1837 1838create-packages-kernel: _pkgbootstrap _repodir .PHONY 1839 ${_+_}@cd ${.CURDIR}; \ 1840 ${MAKE} -f Makefile.inc1 \ 1841 DESTDIR=${KSTAGEDIR} \ 1842 PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \ 1843 create-kernel-packages 1844 1845create-packages: .PHONY create-packages-world create-packages-kernel 1846 1847create-world-packages: _pkgbootstrap .PHONY 1848 @rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || : 1849 @cd ${WSTAGEDIR} ; \ 1850 env -i LC_COLLATE=C sort ${WSTAGEDIR}/${DISTDIR}/METALOG | \ 1851 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk 1852 @for plist in ${WSTAGEDIR}/*.plist; do \ 1853 plist=$${plist##*/} ; \ 1854 pkgname=$${plist%.plist} ; \ 1855 echo "_PKGS+= $${pkgname}" ; \ 1856 done > ${WSTAGEDIR}/packages.mk 1857 ${_+_}@cd ${.CURDIR}; \ 1858 ${MAKE} -f Makefile.inc1 create-world-packages-jobs \ 1859 .MAKE.JOB.PREFIX= 1860 1861.if make(create-world-packages-jobs) 1862.include "${WSTAGEDIR}/packages.mk" 1863.endif 1864 1865.if make(create-world-packages-jobs) || make(create-kernel-packages*) 1866PKG_ABI!=${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI 1867.endif 1868 1869create-world-packages-jobs: .PHONY 1870.for pkgname in ${_PKGS} 1871create-world-packages-jobs: create-world-package-${pkgname} 1872create-world-package-${pkgname}: .PHONY 1873 @sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \ 1874 -s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl 1875 @awk -F\" ' \ 1876 /^name/ { printf("===> Creating %s-", $$2); next } \ 1877 /^version/ { print $$2; next } \ 1878 ' ${WSTAGEDIR}/${pkgname}.ucl 1879 @if [ "${pkgname}" == "runtime" ]; then \ 1880 sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \ 1881 fi 1882 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 1883 create -f ${PKG_FORMAT} -M ${WSTAGEDIR}/${pkgname}.ucl \ 1884 -p ${WSTAGEDIR}/${pkgname}.plist \ 1885 -r ${WSTAGEDIR} \ 1886 -o ${REPODIR}/${PKG_ABI}/${PKG_VERSION} 1887.endfor 1888 1889_default_flavor= -default 1890.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta) 1891. if ${MK_DEBUG_FILES} != "no" 1892_debug=-debug 1893. endif 1894create-kernel-packages: .PHONY 1895. for flavor in "" ${_debug} 1896create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},} 1897create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY 1898 @cd ${KSTAGEDIR}/${DISTDIR} ; \ 1899 env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.meta | \ 1900 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 1901 -v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \ 1902 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 1903 -e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \ 1904 -e "s/%KERNELDIR%/kernel/" \ 1905 -e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 1906 -e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 1907 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 1908 ${SRCDIR}/release/packages/kernel.ucl \ 1909 > ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 1910 awk -F\" ' \ 1911 /name/ { printf("===> Creating %s-", $$2); next } \ 1912 /version/ {print $$2; next } ' \ 1913 ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 1914 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 1915 create -f ${PKG_FORMAT} \ 1916 -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \ 1917 -p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \ 1918 -r ${KSTAGEDIR}/${DISTDIR} \ 1919 -o ${REPODIR}/${PKG_ABI}/${PKG_VERSION} 1920. endfor 1921.endif 1922.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1923. for _kernel in ${BUILDKERNELS:[2..-1]} 1924. if exists(${KSTAGEDIR}/kernel.${_kernel}.meta) 1925. if ${MK_DEBUG_FILES} != "no" 1926_debug=-debug 1927. endif 1928. for flavor in "" ${_debug} 1929create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel} 1930create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY 1931 @cd ${KSTAGEDIR}/kernel.${_kernel} ; \ 1932 env -i LC_COLLATE=C sort ${KSTAGEDIR}/kernel.${_kernel}.meta | \ 1933 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 1934 -v kernel=yes -v _kernconf=${_kernel} ; \ 1935 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 1936 -e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \ 1937 -e "s/%KERNELDIR%/kernel.${_kernel}/" \ 1938 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \ 1939 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \ 1940 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 1941 ${SRCDIR}/release/packages/kernel.ucl \ 1942 > ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 1943 awk -F\" ' \ 1944 /name/ { printf("===> Creating %s-", $$2); next } \ 1945 /version/ {print $$2; next } ' \ 1946 ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 1947 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 1948 create -f ${PKG_FORMAT} \ 1949 -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \ 1950 -p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \ 1951 -r ${KSTAGEDIR}/kernel.${_kernel} \ 1952 -o ${REPODIR}/${PKG_ABI}/${PKG_VERSION} 1953. endfor 1954. endif 1955. endfor 1956.endif 1957 1958sign-packages: _pkgbootstrap .PHONY 1959 printf "version = 2;\npacking_format = \"${PKG_FORMAT}\";\n" > ${WSTAGEDIR}/meta 1960 @[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \ 1961 unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \ 1962 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \ 1963 -m ${WSTAGEDIR}/meta \ 1964 -o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 1965 ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 1966 ${PKGSIGNKEY} ; \ 1967 cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \ 1968 ln -s ${PKG_VERSION} latest 1969 1970# 1971# 1972# checkworld 1973# 1974# Run test suite on installed world. 1975# 1976checkworld: .PHONY 1977 @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \ 1978 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \ 1979 exit 1; \ 1980 fi 1981 ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile 1982 1983# 1984# 1985# doxygen 1986# 1987# Build the API documentation with doxygen 1988# 1989doxygen: .PHONY 1990 @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \ 1991 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 1992 exit 1; \ 1993 fi 1994 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all 1995 1996# 1997# update 1998# 1999# Update the source tree(s), by running svn/svnup to update to the 2000# latest copy. 2001# 2002update: .PHONY 2003.if defined(SVN_UPDATE) 2004 @echo "--------------------------------------------------------------" 2005 @echo ">>> Updating ${.CURDIR} using Subversion" 2006 @echo "--------------------------------------------------------------" 2007 @(cd ${.CURDIR}; ${SVN_CMD} update ${SVNFLAGS}) 2008.endif 2009 2010# 2011# ------------------------------------------------------------------------ 2012# 2013# From here onwards are utility targets used by the 'make world' and 2014# related targets. If your 'world' breaks, you may like to try to fix 2015# the problem and manually run the following targets to attempt to 2016# complete the build. Beware, this is *not* guaranteed to work, you 2017# need to have a pretty good grip on the current state of the system 2018# to attempt to manually finish it. If in doubt, 'make world' again. 2019# 2020 2021# 2022# legacy: Build compatibility shims for the next three targets. This is a 2023# minimal set of tools and shims necessary to compensate for older systems 2024# which don't have the APIs required by the targets built in bootstrap-tools, 2025# build-tools or cross-tools. 2026# 2027 2028 2029# libnv is a requirement for config(8), which is an unconditional 2030# bootstrap-tool. 2031_config_deps= lib/libnv 2032 2033legacy: .PHONY 2034.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0 2035 @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \ 2036 false 2037.endif 2038 2039.for _tool in tools/build ${_config_deps} 2040 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \ 2041 cd ${.CURDIR}/${_tool}; \ 2042 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2043 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \ 2044 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \ 2045 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \ 2046 DESTDIR=${WORLDTMP}/legacy install 2047.endfor 2048 2049# 2050# bootstrap-tools: Build tools needed for compatibility. These are binaries that 2051# are built to build other binaries in the system. However, the focus of these 2052# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 2053# libraries, augmented by -legacy, in addition to the libraries built during 2054# bootstrap-tools. 2055# 2056_bt= _bootstrap-tools 2057 2058# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't 2059# accidentally run tools that are incompatible but happen to be in $PATH. 2060# This is especially important when building on Linux/MacOS where many of the 2061# programs used during the build accept different flags or generate different 2062# output. On those platforms we only symlink the tools known to be compatible 2063# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others 2064# from the FreeBSD sources during the bootstrap-tools stage. 2065# We want to build without the user's $PATH starting in the bootstrap-tools 2066# phase so the tools used in that phase (ln, cp, etc) must have already been 2067# linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink 2068# variable in tools/build/Makefile and are linked during the legacy phase. 2069# Since they could be Linux or MacOS binaries, too we must only use flags that 2070# are portable across operating systems. 2071 2072# If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the 2073# current source tree. Otherwise we create a symlink to the version found in 2074# $PATH during the bootstrap-tools stage. 2075.if defined(BOOTSTRAP_ALL_TOOLS) 2076# BOOTSTRAPPING will be set on the command line so we can't override it here. 2077# Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS} 2078BOOTSTRAPPING_OSRELDATE:= 0 2079.endif 2080 2081.if ${MK_GAMES} != "no" 2082_strfile= usr.bin/fortune/strfile 2083.endif 2084 2085.if ${MK_VT} != "no" 2086_vtfontcvt= usr.bin/vtfontcvt 2087.endif 2088 2089# If we are not building the bootstrap because BOOTSTRAPPING is sufficient 2090# we symlink the host version to $WORLDTMP instead. By doing this we can also 2091# detect when a bootstrap tool is being used without the required MK_FOO. 2092# If you add a new bootstrap tool where we could also use the host version, 2093# please ensure that you also add a .else case where you add the tool to the 2094# _bootstrap_tools_links variable. 2095.if ${BOOTSTRAPPING} < 1000033 2096_m4= usr.bin/m4 2097_lex= usr.bin/lex 2098# Note: lex needs m4 to build but m4 also depends on lex. However, lex can be 2099# bootstrapped so we build lex first. 2100${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-${_lex} 2101_bt_m4_depend=${_bt}-${_m4} 2102_bt_lex_depend=${_bt}-${_lex} ${_bt_m4_depend} 2103.else 2104_bootstrap_tools_links+=m4 lex 2105.endif 2106 2107# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. 2108# r296685 fix cross-endian objcopy 2109# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2. 2110# r334881 added libdwarf constants used by ctfconvert. 2111# r338478 fixed a crash in objcopy for mips64el objects 2112# r339083 libelf: correct mips64el test to use ELF header 2113# r348347 Add missing powerpc64 relocation support to libdwarf 2114.if ${BOOTSTRAPPING} < 1300030 2115_elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd 2116${_bt}-lib/libelf: ${_bt_m4_depend} 2117${_bt}-lib/libdwarf: ${_bt_m4_depend} 2118.endif 2119 2120# flua is required to regenerate syscall files. It first appeared during the 2121# 13.0-CURRENT cycle, thus needs to be built on -older releases and stable 2122# branches. 2123.if ${BOOTSTRAPPING} < 1300059 2124${_bt}-libexec/flua: ${_bt}-lib/liblua 2125_flua= lib/liblua libexec/flua 2126.endif 2127 2128# r245440 mtree -N support added 2129# r313404 requires sha384.h for libnetbsd, added to libmd in r292782 2130.if ${BOOTSTRAPPING} < 1100093 2131_nmtree= lib/libmd \ 2132 lib/libnetbsd \ 2133 usr.sbin/nmtree 2134 2135${_bt}-lib/libnetbsd: ${_bt}-lib/libmd 2136${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 2137.else 2138_bootstrap_tools_links+=mtree 2139.endif 2140 2141# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l 2142.if ${BOOTSTRAPPING} < 1000027 2143_cat= bin/cat 2144.else 2145_bootstrap_tools_links+=cat 2146.endif 2147 2148# r277259 crunchide: Correct 64-bit section header offset 2149# r281674 crunchide: always include both 32- and 64-bit ELF support 2150.if ${BOOTSTRAPPING} < 1100078 2151_crunchide= usr.sbin/crunch/crunchide 2152.else 2153_bootstrap_tools_links+=crunchide 2154.endif 2155 2156# r285986 crunchen: use STRIPBIN rather than STRIP 2157# 1100113: Support MK_AUTO_OBJ 2158# 1200006: META_MODE fixes 2159.if ${BOOTSTRAPPING} < 1100078 || \ 2160 (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \ 2161 (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006) 2162_crunchgen= usr.sbin/crunch/crunchgen 2163.else 2164_bootstrap_tools_links+=crunchgen 2165.endif 2166 2167# r296926 -P keymap search path, MFC to stable/10 in r298297 2168.if ${BOOTSTRAPPING} < 1003501 || \ 2169 (${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103) 2170_kbdcontrol= usr.sbin/kbdcontrol 2171.else 2172_bootstrap_tools_links+=kbdcontrol 2173.endif 2174 2175_yacc= usr.bin/yacc 2176 2177.if ${MK_BSNMP} != "no" 2178_gensnmptree= usr.sbin/bsnmpd/gensnmptree 2179.endif 2180 2181.if ${MK_LOCALES} != "no" 2182_localedef= usr.bin/localedef 2183.endif 2184 2185# We need to build tblgen when we're building clang or lld, either as 2186# bootstrap tools, or as the part of the normal build. 2187.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2188 ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" 2189_clang_tblgen= \ 2190 lib/clang/libllvmminimal \ 2191 usr.bin/clang/llvm-tblgen \ 2192 usr.bin/clang/clang-tblgen \ 2193 usr.bin/clang/lldb-tblgen 2194# XXX: lldb-tblgen is not needed, if top-level MK_LLDB=no 2195 2196${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal 2197${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal 2198${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal 2199.endif 2200 2201.if ${MK_LOCALES} != "no" 2202_localedef= usr.bin/localedef 2203.endif 2204 2205.if ${MK_KERBEROS} != "no" 2206_kerberos5_bootstrap_tools= \ 2207 kerberos5/tools/make-roken \ 2208 kerberos5/lib/libroken \ 2209 kerberos5/lib/libvers \ 2210 kerberos5/tools/asn1_compile \ 2211 kerberos5/tools/slc \ 2212 usr.bin/compile_et 2213 2214.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 2215.for _tool in ${_kerberos5_bootstrap_tools} 2216${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2217.endfor 2218.endif 2219 2220${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd 2221 2222# The tools listed in _basic_bootstrap_tools will generally not be 2223# bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a 2224# Linux or MacOS host the host versions are incompatible so we need to build 2225# them from the source tree. Usually the link name will be the same as the subdir, 2226# but some directories such as grep or test install multiple binaries. In that 2227# case we use the _basic_bootstrap_tools_multilink variable which is a list of 2228# subdirectory and comma-separated list of files. 2229_basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep 2230_basic_bootstrap_tools_multilink+=bin/test test,[ 2231# bootstrap tools needed by buildworld: 2232_basic_bootstrap_tools=usr.bin/awk usr.bin/cut bin/expr usr.bin/gencat \ 2233 usr.bin/join usr.bin/mktemp bin/rmdir usr.bin/sed usr.bin/sort \ 2234 usr.bin/truncate usr.bin/tsort 2235# file2c is required for building usr.sbin/config: 2236_basic_bootstrap_tools+=usr.bin/file2c 2237# uuencode/uudecode required for share/tabset 2238_basic_bootstrap_tools+=usr.bin/uuencode usr.bin/uudecode 2239# xargs is required by mkioctls 2240_basic_bootstrap_tools+=usr.bin/xargs 2241# cap_mkdb is required for share/termcap: 2242_basic_bootstrap_tools+=usr.bin/cap_mkdb 2243# ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?) 2244_basic_bootstrap_tools+=usr.bin/ldd 2245# services_mkdb/pwd_mkdb are required for installworld: 2246_basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb 2247# sysctl/chflags are required for installkernel: 2248_basic_bootstrap_tools+=sbin/sysctl bin/chflags 2249# mkfifo is used by sys/conf/newvers.sh 2250_basic_bootstrap_tools+=usr.bin/mkfifo 2251 2252.if ${MK_BOOT} != "no" 2253_basic_bootstrap_tools+=bin/dd 2254# xz/unxz is used by EFI 2255_basic_bootstrap_tools_multilink+=usr.bin/xz xz,unxz 2256# md5 is used by boot/beri (and possibly others) 2257_basic_bootstrap_tools+=sbin/md5 2258.if defined(BOOTSTRAP_ALL_TOOLS) 2259${_bt}-sbin/md5: ${_bt}-lib/libmd 2260.endif 2261.endif 2262 2263.if ${MK_ZONEINFO} != "no" 2264_basic_bootstrap_tools+=usr.sbin/zic usr.sbin/tzsetup 2265.endif 2266 2267.if defined(BOOTSTRAP_ALL_TOOLS) 2268_other_bootstrap_tools+=${_basic_bootstrap_tools} 2269.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2270_other_bootstrap_tools+=${_subdir} 2271.endfor 2272${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2273${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2274# If we are bootstrapping file2c, we have to build it before config: 2275${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend} 2276# Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since 2277# the links to make/bmake make links will have already have been created in the 2278# `make legacy` step. Not adding a link to make is important on non-FreeBSD 2279# since "make" will usually point to GNU make there. 2280_other_bootstrap_tools+=usr.bin/bmake 2281.else 2282# All tools in _basic_bootstrap_tools have the same name as the subdirectory 2283# so we can use :T to get the name of the symlinks that we need to create. 2284_bootstrap_tools_links+=${_basic_bootstrap_tools:T} 2285.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2286_bootstrap_tools_links+=${_links:S/,/ /g} 2287.endfor 2288.endif # defined(BOOTSTRAP_ALL_TOOLS) 2289 2290# Link the tools that we need for building but don't need to bootstrap because 2291# the host version is known to be compatible into ${WORLDTMP}/legacy 2292# We do this before building any of the bootstrap tools in case they depend on 2293# the presence of any of the links (e.g. as m4/lex/awk) 2294${_bt}-links: .PHONY 2295 2296.for _tool in ${_bootstrap_tools_links} 2297${_bt}-link-${_tool}: .PHONY .MAKE 2298 @if [ ! -e "${WORLDTMP}/legacy/bin/${_tool}" ]; then \ 2299 source_path=`which ${_tool}`; \ 2300 if [ ! -e "$${source_path}" ] ; then \ 2301 echo "Cannot find host tool '${_tool}'"; false; \ 2302 fi; \ 2303 ln -sfnv "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}"; \ 2304 fi 2305${_bt}-links: ${_bt}-link-${_tool} 2306.endfor 2307 2308bootstrap-tools: ${_bt}-links .PHONY 2309 2310# Please document (add comment) why something is in 'bootstrap-tools'. 2311# Try to bound the building of the bootstrap-tool to just the 2312# FreeBSD versions that need the tool built at this stage of the build. 2313.for _tool in \ 2314 ${_clang_tblgen} \ 2315 ${_kerberos5_bootstrap_tools} \ 2316 ${_strfile} \ 2317 usr.bin/dtc \ 2318 ${_cat} \ 2319 ${_kbdcontrol} \ 2320 ${_elftoolchain_libs} \ 2321 usr.bin/lorder \ 2322 lib/libopenbsd \ 2323 usr.bin/mandoc \ 2324 usr.bin/rpcgen \ 2325 ${_yacc} \ 2326 ${_m4} \ 2327 ${_lex} \ 2328 ${_other_bootstrap_tools} \ 2329 usr.bin/xinstall \ 2330 ${_gensnmptree} \ 2331 usr.sbin/config \ 2332 ${_flua} \ 2333 ${_crunchide} \ 2334 ${_crunchgen} \ 2335 ${_nmtree} \ 2336 ${_vtfontcvt} \ 2337 ${_localedef} 2338${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE 2339 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2340 cd ${.CURDIR}/${_tool}; \ 2341 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2342 if [ "${_tool}" = "usr.bin/lex" ]; then \ 2343 ${MAKE} DIRPRFX=${_tool}/ bootstrap; \ 2344 fi; \ 2345 ${MAKE} DIRPRFX=${_tool}/ all; \ 2346 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install 2347 2348bootstrap-tools: ${_bt}-${_tool} 2349.endfor 2350 2351# 2352# build-tools: Build special purpose build tools 2353# 2354.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no" 2355_share= share/syscons/scrnmaps 2356.endif 2357 2358.if ${MK_RESCUE} != "no" 2359# rescue includes programs that have build-tools targets 2360_rescue=rescue/rescue 2361.endif 2362 2363.if ${MK_TCSH} != "no" 2364_tcsh=bin/csh 2365.endif 2366.if ${MK_FILE} != "no" 2367_libmagic=lib/libmagic 2368.endif 2369 2370.if ${MK_PMC} != "no" && \ 2371 (${TARGET_ARCH} == "aarch64" || ${TARGET_ARCH} == "amd64" || \ 2372 ${TARGET_ARCH} == "i386") 2373_jevents=lib/libpmc/pmu-events 2374.endif 2375 2376# kernel-toolchain skips _cleanobj, so handle cleaning up previous 2377# build-tools directories if needed. 2378.if !defined(NO_CLEAN) && make(kernel-toolchain) 2379_bt_clean= ${CLEANDIR} 2380.endif 2381 2382.for _tool in \ 2383 ${_tcsh} \ 2384 bin/sh \ 2385 ${LOCAL_TOOL_DIRS} \ 2386 ${_jevents} \ 2387 lib/ncurses/ncurses \ 2388 lib/ncurses/ncursesw \ 2389 ${_rescue} \ 2390 ${_share} \ 2391 usr.bin/awk \ 2392 ${_libmagic} \ 2393 usr.bin/mkesdb_static \ 2394 usr.bin/mkcsmapper_static \ 2395 usr.bin/vi/catalog 2396build-tools_${_tool}: .PHONY 2397 ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \ 2398 cd ${.CURDIR}/${_tool}; \ 2399 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \ 2400 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2401 ${MAKE} DIRPRFX=${_tool}/ build-tools 2402build-tools: build-tools_${_tool} 2403.endfor 2404 2405# 2406# kernel-tools: Build kernel-building tools 2407# 2408kernel-tools: .PHONY 2409 mkdir -p ${WORLDTMP}/usr 2410 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2411 -p ${WORLDTMP}/usr >/dev/null 2412 2413# 2414# cross-tools: All the tools needed to build the rest of the system after 2415# we get done with the earlier stages. It is the last set of tools needed 2416# to begin building the target binaries. 2417# 2418.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0 2419.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 2420_btxld= usr.sbin/btxld 2421.endif 2422.endif 2423 2424# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 2425# resulting from missing bug fixes or ELF Toolchain updates. 2426.if ${MK_CDDL} != "no" 2427_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \ 2428 cddl/usr.bin/ctfmerge 2429.endif 2430 2431# If we're given an XAS, don't build binutils. 2432.if ${XAS:M/*} == "" 2433.if ${MK_BINUTILS_BOOTSTRAP} != "no" 2434_binutils= gnu/usr.bin/binutils 2435.endif 2436.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2437_elftctools= lib/libelftc \ 2438 lib/libpe \ 2439 usr.bin/objcopy \ 2440 usr.bin/nm \ 2441 usr.bin/size \ 2442 usr.bin/strings 2443# These are not required by the build, but can be useful for developers who 2444# cross-build on a FreeBSD 10 host: 2445_elftctools+= usr.bin/addr2line 2446.endif 2447.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2448# If cross-building with an external binutils we still need to build strip for 2449# the target (for at least crunchide). 2450_elftctools= lib/libelftc \ 2451 lib/libpe \ 2452 usr.bin/objcopy 2453.endif 2454 2455.if ${MK_CLANG_BOOTSTRAP} != "no" 2456_clang= usr.bin/clang 2457.endif 2458.if ${MK_LLD_BOOTSTRAP} != "no" 2459_lld= usr.bin/clang/lld 2460.endif 2461.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no" 2462_clang_libs= lib/clang 2463.endif 2464.if ${MK_USB} != "no" 2465_usb_tools= stand/usb/tools 2466.endif 2467 2468.if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS) 2469_ar=usr.bin/ar 2470.endif 2471 2472cross-tools: .MAKE .PHONY 2473.for _tool in \ 2474 ${LOCAL_XTOOL_DIRS} \ 2475 ${_ar} \ 2476 ${_clang_libs} \ 2477 ${_clang} \ 2478 ${_lld} \ 2479 ${_binutils} \ 2480 ${_elftctools} \ 2481 ${_dtrace_tools} \ 2482 ${_btxld} \ 2483 ${_usb_tools} 2484 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2485 cd ${.CURDIR}/${_tool}; \ 2486 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2487 ${MAKE} DIRPRFX=${_tool}/ all; \ 2488 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install 2489.endfor 2490 2491# 2492# native-xtools is the current target for qemu-user cross builds of ports 2493# via poudriere and the imgact_binmisc kernel module. 2494# This target merely builds a toolchan/sysroot, then builds the tools it wants 2495# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain 2496# already built. It then installs the static tools to NXBDESTDIR for Poudriere 2497# to pickup. 2498# 2499NXBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/ 2500NXBOBJTOP= ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH} 2501NXTP?= /nxb-bin 2502.if ${NXTP:N/*} 2503.error NXTP variable should be an absolute path 2504.endif 2505NXBDESTDIR?= ${DESTDIR}${NXTP} 2506 2507# This is the list of tools to be built/installed as static and where 2508# appropriate to build for the given TARGET.TARGET_ARCH. 2509NXBDIRS+= \ 2510 bin/cat \ 2511 bin/chmod \ 2512 bin/cp \ 2513 ${_tcsh} \ 2514 bin/echo \ 2515 bin/expr \ 2516 bin/hostname \ 2517 bin/ln \ 2518 bin/ls \ 2519 bin/mkdir \ 2520 bin/mv \ 2521 bin/ps \ 2522 bin/realpath \ 2523 bin/rm \ 2524 bin/rmdir \ 2525 bin/sh \ 2526 bin/sleep \ 2527 sbin/md5 \ 2528 sbin/sysctl \ 2529 usr.bin/addr2line \ 2530 usr.bin/ar \ 2531 usr.bin/awk \ 2532 usr.bin/basename \ 2533 usr.bin/bmake \ 2534 usr.bin/bzip2 \ 2535 usr.bin/cmp \ 2536 usr.bin/diff \ 2537 usr.bin/dirname \ 2538 usr.bin/objcopy \ 2539 usr.bin/env \ 2540 usr.bin/fetch \ 2541 usr.bin/find \ 2542 usr.bin/grep \ 2543 usr.bin/gzip \ 2544 usr.bin/head \ 2545 usr.bin/id \ 2546 usr.bin/lex \ 2547 usr.bin/limits \ 2548 usr.bin/lorder \ 2549 usr.bin/mandoc \ 2550 usr.bin/mktemp \ 2551 usr.bin/mt \ 2552 usr.bin/nm \ 2553 usr.bin/patch \ 2554 usr.bin/readelf \ 2555 usr.bin/sed \ 2556 usr.bin/size \ 2557 usr.bin/sort \ 2558 usr.bin/strings \ 2559 usr.bin/tar \ 2560 usr.bin/touch \ 2561 usr.bin/tr \ 2562 usr.bin/true \ 2563 usr.bin/uniq \ 2564 usr.bin/unzip \ 2565 usr.bin/wc \ 2566 usr.bin/xargs \ 2567 usr.bin/xinstall \ 2568 usr.bin/xz \ 2569 usr.bin/yacc \ 2570 usr.sbin/chown 2571 2572SUBDIR_DEPEND_usr.bin/clang= lib/clang 2573.if ${MK_CLANG} != "no" 2574NXBDIRS+= lib/clang 2575NXBDIRS+= usr.bin/clang 2576.endif 2577.if ${MK_BINUTILS} != "no" 2578NXBDIRS+= gnu/usr.bin/binutils 2579.endif 2580# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs 2581# to be evaluated after NXBDIRS is set. 2582.if make(install) && !empty(SUBDIR_OVERRIDE) 2583SUBDIR= ${SUBDIR_OVERRIDE} 2584.endif 2585 2586NXBMAKEARGS+= \ 2587 OBJTOP=${NXBOBJTOP:Q} \ 2588 OBJROOT=${NXBOBJROOT:Q} \ 2589 MAKEOBJDIRPREFIX= \ 2590 -DNO_SHARED \ 2591 -DNO_CPU_CFLAGS \ 2592 -DNO_PIC \ 2593 SSP_CFLAGS= \ 2594 MK_CASPER=no \ 2595 MK_CLANG_EXTRAS=no \ 2596 MK_CLANG_FULL=no \ 2597 MK_CTF=no \ 2598 MK_DEBUG_FILES=no \ 2599 MK_GDB=no \ 2600 MK_HTML=no \ 2601 MK_LLDB=no \ 2602 MK_MAN=no \ 2603 MK_MAN_UTILS=yes \ 2604 MK_OFED=no \ 2605 MK_OPENSSH=no \ 2606 MK_PROFILE=no \ 2607 MK_RETPOLINE=no \ 2608 MK_SENDMAIL=no \ 2609 MK_SVNLITE=no \ 2610 MK_TESTS=no \ 2611 MK_WARNS=no \ 2612 MK_ZFS=no 2613 2614.if make(native-xtools*) && \ 2615 (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH)) 2616.error Missing NXB_TARGET / NXB_TARGET_ARCH 2617.endif 2618# For 'toolchain' we want to produce native binaries that themselves generate 2619# native binaries. 2620NXBTMAKE= ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \ 2621 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH} 2622# For 'everything' we want to produce native binaries (hence -target to 2623# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries. 2624# TARGET/TARGET_ARCH are still passed along from user. 2625# 2626# Use the toolchain we create as an external toolchain. 2627.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*} 2628NXBMAKE+= XCC="${XCC}" \ 2629 XCXX="${XCXX}" \ 2630 XCPP="${XCPP}" 2631.else 2632NXBMAKE+= XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \ 2633 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \ 2634 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp" 2635.endif 2636NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \ 2637 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \ 2638 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \ 2639 TARGET_TRIPLE=${MACHINE_TRIPLE:Q} 2640# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to 2641# invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS. 2642NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}' 2643# Need to avoid the -isystem logic when using clang as an external toolchain 2644# even if the TARGET being built for wants GCC. 2645NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}' 2646native-xtools: .PHONY 2647 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj 2648 # Build the bootstrap/host/cross tools that produce native binaries 2649 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain 2650 # Populate includes/libraries sysroot that produce native binaries. 2651 # This is split out from 'toolchain' above mostly so that target LLVM 2652 # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without 2653 # polluting the cross-compiler build. The LLVM/GCC libs are skipped 2654 # here to avoid the problem but are kept in 'toolchain' so that 2655 # needed build tools are built. 2656 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes MK_CLANG=no 2657 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries MK_CLANG=no 2658.if !defined(NO_OBJWALK) 2659 ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj 2660.endif 2661 ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything 2662 @echo ">> native-xtools done. Use 'make native-xtools-install' to install to a given DESTDIR" 2663 2664native-xtools-install: .PHONY 2665 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 2666 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2667 -p ${NXBDESTDIR}/usr >/dev/null 2668 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2669 -p ${NXBDESTDIR}/usr/include >/dev/null 2670 ${_+_}cd ${.CURDIR}; ${NXBMAKE} \ 2671 DESTDIR=${NXBDESTDIR} \ 2672 -DNO_ROOT \ 2673 install 2674 2675# 2676# hierarchy - ensure that all the needed directories are present 2677# 2678hierarchy hier: .MAKE .PHONY 2679 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs 2680 2681# 2682# libraries - build all libraries, and install them under ${DESTDIR}. 2683# 2684# The list of libraries with dependents (${_prebuild_libs}) and their 2685# interdependencies (__L) are built automatically by the 2686# ${.CURDIR}/tools/make_libdeps.sh script. 2687# 2688libraries: .MAKE .PHONY 2689 ${_+_}cd ${.CURDIR}; \ 2690 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 2691 ${MAKE} -f Makefile.inc1 _startup_libs; \ 2692 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 2693 ${MAKE} -f Makefile.inc1 _generic_libs 2694 2695# 2696# static libgcc.a prerequisite for shared libc 2697# 2698_prereq_libs= lib/libcompiler_rt 2699.if ${MK_SSP} != "no" 2700_prereq_libs+= lib/libssp_nonshared 2701.endif 2702 2703# These dependencies are not automatically generated: 2704# 2705# lib/csu and lib/libc must be built before 2706# all shared libraries for ELF. 2707# 2708_startup_libs= lib/csu 2709_startup_libs+= lib/libc 2710_startup_libs+= lib/libc_nonshared 2711.if ${MK_LIBCPLUSPLUS} != "no" 2712_startup_libs+= lib/libcxxrt 2713.endif 2714 2715_prereq_libs+= lib/libgcc_eh lib/libgcc_s 2716_startup_libs+= lib/libgcc_eh lib/libgcc_s 2717 2718lib/libgcc_s__L: lib/libc__L 2719lib/libgcc_s__L: lib/libc_nonshared__L 2720.if ${MK_LIBCPLUSPLUS} != "no" 2721lib/libcxxrt__L: lib/libgcc_s__L 2722.endif 2723 2724_prebuild_libs= ${_kerberos5_lib_libasn1} \ 2725 ${_kerberos5_lib_libhdb} \ 2726 ${_kerberos5_lib_libheimbase} \ 2727 ${_kerberos5_lib_libheimntlm} \ 2728 ${_libsqlite3} \ 2729 ${_kerberos5_lib_libheimipcc} \ 2730 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 2731 ${_kerberos5_lib_libroken} \ 2732 ${_kerberos5_lib_libwind} \ 2733 lib/libbz2 ${_libcom_err} lib/libcrypt \ 2734 lib/libelf lib/libexpat \ 2735 lib/libfigpar \ 2736 ${_lib_libgssapi} \ 2737 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 2738 lib/libzstd \ 2739 ${_lib_casper} \ 2740 lib/ncurses/ncurses lib/ncurses/ncursesw \ 2741 lib/libopie lib/libpam/libpam ${_lib_libthr} \ 2742 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 2743 lib/libgeom \ 2744 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 2745 ${_cddl_lib_libuutil} \ 2746 ${_cddl_lib_libavl} \ 2747 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \ 2748 ${_cddl_lib_libctf} \ 2749 lib/libufs \ 2750 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 2751 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \ 2752 ${_lib_libldns} ${_secure_lib_libssh} 2753 2754.if ${MK_DIALOG} != "no" 2755_prebuild_libs+= gnu/lib/libdialog 2756gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L 2757.endif 2758 2759.if ${MK_LIBCPLUSPLUS} != "no" 2760_prebuild_libs+= lib/libc++ 2761.endif 2762 2763lib/libgeom__L: lib/libexpat__L 2764lib/libkvm__L: lib/libelf__L 2765 2766.if ${MK_LIBTHR} != "no" 2767_lib_libthr= lib/libthr 2768.endif 2769 2770.if ${MK_RADIUS_SUPPORT} != "no" 2771_lib_libradius= lib/libradius 2772.endif 2773 2774.if ${MK_OFED} != "no" 2775_prebuild_libs+= \ 2776 lib/ofed/libibverbs \ 2777 lib/ofed/libibmad \ 2778 lib/ofed/libibumad \ 2779 lib/ofed/complib \ 2780 lib/ofed/libmlx5 2781 2782lib/ofed/libibmad__L: lib/ofed/libibumad__L 2783lib/ofed/complib__L: lib/libthr__L 2784lib/ofed/libmlx5__L: lib/ofed/libibverbs__L lib/libthr__L 2785.endif 2786 2787.if ${MK_CASPER} != "no" 2788_lib_casper= lib/libcasper 2789.endif 2790 2791lib/libpjdlog__L: lib/libutil__L 2792lib/libcasper__L: lib/libnv__L 2793lib/liblzma__L: lib/libthr__L 2794lib/libzstd__L: lib/libthr__L 2795 2796_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} 2797.if ${MK_IPFILTER} != "no" 2798_generic_libs+= sbin/ipf/libipf 2799.endif 2800.for _DIR in ${LOCAL_LIB_DIRS} 2801.if ${_DIR} == ".WAIT" || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 2802_generic_libs+= ${_DIR} 2803.endif 2804.endfor 2805 2806lib/libopie__L lib/libtacplus__L: lib/libmd__L 2807 2808.if ${MK_CDDL} != "no" 2809_cddl_lib_libumem= cddl/lib/libumem 2810_cddl_lib_libnvpair= cddl/lib/libnvpair 2811_cddl_lib_libavl= cddl/lib/libavl 2812_cddl_lib_libuutil= cddl/lib/libuutil 2813.if ${MK_ZFS} != "no" 2814_cddl_lib_libzfs_core= cddl/lib/libzfs_core 2815_cddl_lib_libzfs= cddl/lib/libzfs 2816 2817cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L 2818 2819cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L 2820cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L 2821cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L 2822 2823lib/libbe__L: cddl/lib/libzfs__L 2824.endif 2825_cddl_lib_libctf= cddl/lib/libctf 2826_cddl_lib= cddl/lib 2827cddl/lib/libctf__L: lib/libz__L 2828.endif 2829# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db 2830_prebuild_libs+= lib/libprocstat lib/libproc lib/librtld_db 2831lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L 2832lib/libproc__L: lib/libprocstat__L 2833lib/librtld_db__L: lib/libprocstat__L 2834 2835.if ${MK_CRYPT} != "no" 2836.if ${MK_OPENSSL} != "no" 2837_secure_lib_libcrypto= secure/lib/libcrypto 2838_secure_lib_libssl= secure/lib/libssl 2839lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 2840secure/lib/libcrypto__L: lib/libthr__L 2841.if ${MK_LDNS} != "no" 2842_lib_libldns= lib/libldns 2843lib/libldns__L: secure/lib/libssl__L 2844.endif 2845.if ${MK_OPENSSH} != "no" 2846_secure_lib_libssh= secure/lib/libssh 2847secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 2848.if ${MK_LDNS} != "no" 2849secure/lib/libssh__L: lib/libldns__L 2850.endif 2851.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 2852secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ 2853 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 2854 lib/libmd__L kerberos5/lib/libroken__L 2855.endif 2856.endif 2857.endif 2858_secure_lib= secure/lib 2859.endif 2860 2861.if ${MK_KERBEROS} != "no" 2862kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L 2863kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2864 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ 2865 kerberos5/lib/libwind__L lib/libsqlite3__L 2866kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ 2867 kerberos5/lib/libroken__L lib/libcom_err__L 2868kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2869 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L 2870kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2871 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ 2872 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ 2873 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L 2874kerberos5/lib/libroken__L: lib/libcrypt__L 2875kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L 2876kerberos5/lib/libheimbase__L: lib/libthr__L 2877kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L 2878.endif 2879 2880lib/libsqlite3__L: lib/libthr__L 2881 2882.if ${MK_GSSAPI} != "no" 2883_lib_libgssapi= lib/libgssapi 2884.endif 2885 2886.if ${MK_KERBEROS} != "no" 2887_kerberos5_lib= kerberos5/lib 2888_kerberos5_lib_libasn1= kerberos5/lib/libasn1 2889_kerberos5_lib_libhdb= kerberos5/lib/libhdb 2890_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase 2891_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 2892_kerberos5_lib_libhx509= kerberos5/lib/libhx509 2893_kerberos5_lib_libroken= kerberos5/lib/libroken 2894_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 2895_libsqlite3= lib/libsqlite3 2896_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc 2897_kerberos5_lib_libwind= kerberos5/lib/libwind 2898_libcom_err= lib/libcom_err 2899.endif 2900 2901.if ${MK_NIS} != "no" 2902_lib_libypclnt= lib/libypclnt 2903.endif 2904 2905.if ${MK_OPENSSL} == "no" 2906lib/libradius__L: lib/libmd__L 2907.endif 2908 2909lib/libproc__L: \ 2910 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L 2911.if ${MK_CXX} != "no" && ${MK_LIBCPLUSPLUS} != "no" 2912lib/libproc__L: lib/libcxxrt__L 2913.endif 2914 2915.for _lib in ${_prereq_libs} 2916${_lib}__PL: .PHONY .MAKE 2917.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 2918 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 2919 cd ${.CURDIR}/${_lib}; \ 2920 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 2921 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 2922 DIRPRFX=${_lib}/ all; \ 2923 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 2924 DIRPRFX=${_lib}/ install 2925.endif 2926.endfor 2927 2928.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs} 2929${_lib}__L: .PHONY .MAKE 2930.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 2931 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 2932 cd ${.CURDIR}/${_lib}; \ 2933 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 2934 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \ 2935 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 2936.endif 2937.endfor 2938 2939_prereq_libs: ${_prereq_libs:S/$/__PL/} 2940_startup_libs: ${_startup_libs:S/$/__L/} 2941_prebuild_libs: ${_prebuild_libs:S/$/__L/} 2942_generic_libs: ${_generic_libs:S/$/__L/} 2943 2944# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from 2945# 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely 2946# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE 2947# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in 2948# parallel. This is safe for the world stage of buildworld though since it has 2949# already built libraries in a proper order and installed includes into 2950# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to 2951# avoid trashing a system if it crashes mid-install. 2952.if !make(all) || defined(_PARALLEL_SUBDIR_OK) 2953SUBDIR_PARALLEL= 2954.endif 2955 2956.include <bsd.subdir.mk> 2957 2958.if make(check-old) || make(check-old-dirs) || \ 2959 make(check-old-files) || make(check-old-libs) || \ 2960 make(delete-old) || make(delete-old-dirs) || \ 2961 make(delete-old-files) || make(delete-old-libs) 2962 2963# 2964# check for / delete old files section 2965# 2966 2967.include "ObsoleteFiles.inc" 2968 2969OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 2970else you can not start such an application. Consult UPDATING for more \ 2971information regarding how to cope with the removal/revision bump of a \ 2972specific library." 2973 2974.if !defined(BATCH_DELETE_OLD_FILES) 2975RM_I=-i 2976.else 2977RM_I=-v 2978.endif 2979 2980delete-old-files: .PHONY 2981 @echo ">>> Removing old files (only deletes safe to delete libs)" 2982# Ask for every old file if the user really wants to remove it. 2983# It's annoying, but better safe than sorry. 2984# NB: We cannot pass the list of OLD_FILES as a parameter because the 2985# argument list will get too long. Using .for/.endfor make "loops" will make 2986# the Makefile parser segfault. 2987 @exec 3<&0; \ 2988 cd ${.CURDIR}; \ 2989 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2990 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | sort | \ 2991 while read file; do \ 2992 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2993 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 2994 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 2995 fi; \ 2996 for ext in debug symbols; do \ 2997 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 2998 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2999 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3000 <&3; \ 3001 fi; \ 3002 done; \ 3003 done 3004# Remove catpages without corresponding manpages. 3005 @exec 3<&0; \ 3006 find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \ 3007 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3008 while read catpage; do \ 3009 read manpage; \ 3010 if [ ! -e "$${manpage}" ]; then \ 3011 rm ${RM_I} $${catpage} <&3; \ 3012 fi; \ 3013 done 3014 @echo ">>> Old files removed" 3015 3016check-old-files: .PHONY 3017 @echo ">>> Checking for old files" 3018 @cd ${.CURDIR}; \ 3019 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3020 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ 3021 while read file; do \ 3022 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3023 echo "${DESTDIR}/$${file}"; \ 3024 fi; \ 3025 for ext in debug symbols; do \ 3026 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3027 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3028 fi; \ 3029 done; \ 3030 done | sort 3031# Check for catpages without corresponding manpages. 3032 @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 3033 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3034 while read catpage; do \ 3035 read manpage; \ 3036 if [ ! -e "$${manpage}" ]; then \ 3037 echo $${catpage}; \ 3038 fi; \ 3039 done | sort 3040 3041delete-old-libs: .PHONY 3042 @echo ">>> Removing old libraries" 3043 @echo "${OLD_LIBS_MESSAGE}" | fmt 3044 @exec 3<&0; \ 3045 cd ${.CURDIR}; \ 3046 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3047 -V OLD_LIBS | xargs -n1 | sort | \ 3048 while read file; do \ 3049 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3050 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3051 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3052 fi; \ 3053 for ext in debug symbols; do \ 3054 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3055 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3056 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3057 <&3; \ 3058 fi; \ 3059 done; \ 3060 done 3061 @echo ">>> Old libraries removed" 3062 3063check-old-libs: .PHONY 3064 @echo ">>> Checking for old libraries" 3065 @cd ${.CURDIR}; \ 3066 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3067 -V OLD_LIBS | xargs -n1 | \ 3068 while read file; do \ 3069 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3070 echo "${DESTDIR}/$${file}"; \ 3071 fi; \ 3072 for ext in debug symbols; do \ 3073 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3074 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3075 fi; \ 3076 done; \ 3077 done | sort 3078 3079delete-old-dirs: .PHONY 3080 @echo ">>> Removing old directories" 3081 @cd ${.CURDIR}; \ 3082 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3083 -V OLD_DIRS | xargs -n1 | sort -r | \ 3084 while read dir; do \ 3085 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3086 rmdir -v "${DESTDIR}/$${dir}" || true; \ 3087 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3088 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3089 fi; \ 3090 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3091 rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \ 3092 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3093 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3094 fi; \ 3095 done 3096 @echo ">>> Old directories removed" 3097 3098check-old-dirs: .PHONY 3099 @echo ">>> Checking for old directories" 3100 @cd ${.CURDIR}; \ 3101 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3102 -V OLD_DIRS | xargs -n1 | sort -r | \ 3103 while read dir; do \ 3104 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3105 echo "${DESTDIR}/$${dir}"; \ 3106 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3107 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3108 fi; \ 3109 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3110 echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \ 3111 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3112 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3113 fi; \ 3114 done 3115 3116delete-old: delete-old-files delete-old-dirs .PHONY 3117 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3118 3119check-old: check-old-files check-old-libs check-old-dirs .PHONY 3120 @echo "To remove old files and directories run '${MAKE_CMD} delete-old'." 3121 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3122 3123.endif 3124 3125# 3126# showconfig - show build configuration. 3127# 3128showconfig: .PHONY 3129 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \ 3130 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u 3131 3132.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 3133DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 3134 3135.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 3136.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF}) 3137FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 3138 '${KERNCONFDIR}/${KERNCONF}' ; echo 3139.endif 3140.endif 3141 3142.endif 3143 3144.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 3145DTBOUTPUTPATH= ${.CURDIR} 3146.endif 3147 3148# 3149# Build 'standalone' Device Tree Blob 3150# 3151builddtb: .PHONY 3152 @PATH=${TMPPATH} MACHINE=${TARGET} \ 3153 ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 3154 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 3155 3156############### 3157 3158# cleanworld 3159# In the following, the first 'rm' in a series will usually remove all 3160# files and directories. If it does not, then there are probably some 3161# files with file flags set, so this unsets them and tries the 'rm' a 3162# second time. There are situations where this target will be cleaning 3163# some directories via more than one method, but that duplication is 3164# needed to correctly handle all the possible situations. Removing all 3165# files without file flags set in the first 'rm' instance saves time, 3166# because 'chflags' will need to operate on fewer files afterwards. 3167# 3168# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be 3169# created by bsd.obj.mk, except that we don't want to .include that file 3170# in this makefile. We don't do a cleandir walk if MK_AUTO_OBJ is yes 3171# since it is not possible for files to land in the wrong place. 3172# 3173.if make(cleanworld) 3174BW_CANONICALOBJDIR:=${OBJTOP}/ 3175.elif make(cleanuniverse) 3176BW_CANONICALOBJDIR:=${OBJROOT} 3177.if ${MK_UNIFIED_OBJDIR} == "no" 3178.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled. 3179.endif 3180.endif 3181cleanworld cleanuniverse: .PHONY 3182.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \ 3183 ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA} 3184 -rm -rf ${BW_CANONICALOBJDIR}* 3185 -chflags -R 0 ${BW_CANONICALOBJDIR} 3186 rm -rf ${BW_CANONICALOBJDIR}* 3187.endif 3188.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \ 3189 (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA}) 3190.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} 3191 # To be safe in this case, fall back to a 'make cleandir' 3192 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir 3193.endif 3194.endif 3195 3196.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 3197XDEV_CPUTYPE?=${CPUTYPE} 3198.else 3199XDEV_CPUTYPE?=${TARGET_CPUTYPE} 3200.endif 3201 3202NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 3203 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 3204 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \ 3205 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 3206 CPUTYPE=${XDEV_CPUTYPE} 3207 3208XDDIR=${TARGET_ARCH}-freebsd 3209XDTP?=/usr/${XDDIR} 3210.if ${XDTP:N/*} 3211.error XDTP variable should be an absolute path 3212.endif 3213 3214CDBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/ 3215CDBOBJTOP= ${CDBOBJROOT}${XDDIR} 3216CDBENV= \ 3217 INSTALL="sh ${.CURDIR}/tools/install.sh" 3218CDENV= ${CDBENV} \ 3219 TOOLS_PREFIX=${XDTP} 3220CDMAKEARGS= \ 3221 OBJTOP=${CDBOBJTOP:Q} \ 3222 OBJROOT=${CDBOBJROOT:Q} 3223CD2MAKEARGS= ${CDMAKEARGS} 3224 3225.if ${WANT_COMPILER_TYPE} == gcc || \ 3226 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 3227# GCC requires -isystem and -L when using a cross-compiler. --sysroot 3228# won't set header path and -L is used to ensure the base library path 3229# is added before the port PREFIX library path. 3230CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib 3231# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler 3232# combined with --sysroot. 3233CD2CFLAGS+= -B${XDDESTDIR}/usr/lib 3234# Force using libc++ for external GCC. 3235.if defined(X_COMPILER_TYPE) && \ 3236 ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800 3237CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \ 3238 -nostdinc++ 3239.endif 3240.endif 3241CD2CFLAGS+= --sysroot=${XDDESTDIR}/ 3242CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \ 3243 CPP="${CPP} ${CD2CFLAGS}" \ 3244 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 3245 3246CDTMP= ${OBJTOP}/${XDDIR}/tmp 3247CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN} 3248CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \ 3249 ${MAKE} ${CD2MAKEARGS} ${NOFUN} 3250.if ${MK_META_MODE} != "no" 3251# Don't rebuild build-tools targets during normal build. 3252CD2MAKE+= BUILD_TOOLS_META=.NOMETA 3253.endif 3254XDDESTDIR=${DESTDIR}${XDTP} 3255 3256.ORDER: xdev-build xdev-install xdev-links 3257xdev: xdev-build xdev-install .PHONY 3258 3259.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 3260xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY 3261 3262_xb-worldtmp: .PHONY 3263 mkdir -p ${CDTMP}/usr 3264 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3265 -p ${CDTMP}/usr >/dev/null 3266 3267_xb-bootstrap-tools: .PHONY 3268.for _tool in \ 3269 ${_clang_tblgen} \ 3270 ${_yacc} 3271 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 3272 cd ${.CURDIR}/${_tool}; \ 3273 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3274 ${CDMAKE} DIRPRFX=${_tool}/ all; \ 3275 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 3276.endfor 3277 3278_xb-build-tools: .PHONY 3279 ${_+_}@cd ${.CURDIR}; \ 3280 ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools 3281 3282XDEVDIRS= \ 3283 ${_clang_libs} \ 3284 ${_lld} \ 3285 ${_binutils} \ 3286 ${_elftctools} \ 3287 usr.bin/ar \ 3288 ${_clang} 3289 3290_xb-cross-tools: .PHONY 3291.for _tool in ${XDEVDIRS} 3292 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \ 3293 cd ${.CURDIR}/${_tool}; \ 3294 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3295 ${CDMAKE} DIRPRFX=${_tool}/ all 3296.endfor 3297 3298_xi-mtree: .PHONY 3299 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 3300 mkdir -p ${XDDESTDIR} 3301 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 3302 -p ${XDDESTDIR} >/dev/null 3303 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3304 -p ${XDDESTDIR}/usr >/dev/null 3305 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 3306 -p ${XDDESTDIR}/usr/include >/dev/null 3307.if defined(_LIBCOMPAT) 3308 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 3309 -p ${XDDESTDIR}/usr >/dev/null 3310.endif 3311.if ${MK_TESTS} != "no" 3312 mkdir -p ${XDDESTDIR}${TESTSBASE} 3313 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 3314 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 3315.endif 3316 3317.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 3318xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY 3319 3320_xi-cross-tools: .PHONY 3321 @echo "_xi-cross-tools" 3322.for _tool in ${XDEVDIRS} 3323 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 3324 cd ${.CURDIR}/${_tool}; \ 3325 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 3326.endfor 3327 3328_xi-includes: .PHONY 3329.if !defined(NO_OBJWALK) 3330 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \ 3331 DESTDIR=${XDDESTDIR} 3332.endif 3333 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \ 3334 DESTDIR=${XDDESTDIR} 3335 3336_xi-libraries: .PHONY 3337 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 3338 DESTDIR=${XDDESTDIR} 3339 3340xdev-links: .PHONY 3341 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 3342 mkdir -p ../../../../usr/bin; \ 3343 for i in *; do \ 3344 ln -sf ../../${XDTP}/usr/bin/$$i \ 3345 ../../../../usr/bin/${XDDIR}-$$i; \ 3346 ln -sf ../../${XDTP}/usr/bin/$$i \ 3347 ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \ 3348 done 3349