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