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 sh ${SRCTOP}/usr.sbin/certctl/certctl.sh ${CERTCTLFLAGS} rehash; \ 1493 else \ 1494 echo "No openssl on the host, not rehashing certificates target -- /etc/ssl may not be populated."; \ 1495 fi 1496.endif 1497.if make(distributeworld) 1498.for dist in ${EXTRA_DISTRIBUTIONS} 1499 find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -type d -empty -delete 1500.endfor 1501.if defined(NO_ROOT) 1502.for dist in base ${EXTRA_DISTRIBUTIONS} 1503 @# For each file that exists in this dist, print the corresponding 1504 @# line from the METALOG. This relies on the fact that 1505 @# a line containing only the filename will sort immediately before 1506 @# the relevant mtree line. 1507 cd ${DESTDIR}/${DISTDIR}; \ 1508 find ./${dist} | ${METALOG_SORT_CMD} -u ${METALOG} - | \ 1509 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}/, "."); print } }' > \ 1510 ${DESTDIR}/${DISTDIR}/${dist}.meta 1511.endfor 1512.for dist in ${DEBUG_DISTRIBUTIONS} 1513 @# For each file that exists in this dist, print the corresponding 1514 @# line from the METALOG. This relies on the fact that 1515 @# a line containing only the filename will sort immediately before 1516 @# the relevant mtree line. 1517 cd ${DESTDIR}/${DISTDIR}; \ 1518 find ./${dist}/usr/lib/debug | ${METALOG_SORT_CMD} -u ${METALOG} - | \ 1519 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}/, "."); print } }' > \ 1520 ${DESTDIR}/${DISTDIR}/${dist}.debug.meta 1521.endfor 1522.endif 1523.endif # make(distributeworld) 1524 1525packageworld: .PHONY 1526.for dist in base ${EXTRA_DISTRIBUTIONS} 1527.if defined(NO_ROOT) 1528 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1529 ${TAR_CMD} cvf - --exclude usr/lib/debug \ 1530 @${DESTDIR}/${DISTDIR}/${dist}.meta | \ 1531 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1532.else 1533 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1534 ${TAR_CMD} cvf - --exclude usr/lib/debug . | \ 1535 ${XZ_CMD} > ${PACKAGEDIR}/${dist}.txz 1536.endif 1537.endfor 1538 1539.for dist in ${DEBUG_DISTRIBUTIONS} 1540. if defined(NO_ROOT) 1541 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1542 ${TAR_CMD} cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ 1543 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1544. else 1545 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1546 ${TAR_CMD} cvLf - usr/lib/debug | \ 1547 ${XZ_CMD} > ${PACKAGEDIR}/${dist}-dbg.txz 1548. endif 1549.endfor 1550 1551makeman: .PHONY 1552 ${_+_}cd ${.CURDIR}/tools/build/options; sh makeman > \ 1553 ${.CURDIR}/share/man/man5/src.conf.5 1554 1555# Ensure no regressions in self-includeability of sys/*.h and net*/*.h 1556test-includes: .PHONY 1557 ${_+_}cd ${.CURDIR}/tools/build/test-includes; \ 1558 ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} DESTDIR=${WORLDTMP} test-includes 1559 1560# We can't assume here that ${TMPPATH} will include ${PATH} or /usr/libexec 1561# because we may be building with a STRICTTMPPATH, so we explicitly include 1562# /usr/libexec here for flua. ${TMPPATH} still usefully includes anything else 1563# we may need to function. 1564_sysent_PATH= ${TMPPATH}:/usr/libexec 1565_sysent_dirs= sys/kern 1566_sysent_dirs+= sys/compat/freebsd32 1567_sysent_dirs+= sys/amd64/linux \ 1568 sys/amd64/linux32 \ 1569 sys/arm64/linux \ 1570 sys/i386/linux 1571 1572sysent: .PHONY 1573.for _dir in ${_sysent_dirs} 1574sysent-${_dir}: .PHONY 1575 @echo "${MAKE} -C ${.CURDIR}/${_dir} sysent" 1576 ${_+_}@env PATH=${_sysent_PATH:Q} ${MAKE} -C ${.CURDIR}/${_dir} sysent 1577 1578sysent: sysent-${_dir} 1579.endfor 1580 1581# 1582# reinstall 1583# 1584# If you have a build server, you can NFS mount the source and obj directories 1585# and do a 'make reinstall' on the *client* to install new binaries from the 1586# most recent server build. 1587# 1588restage reinstall: .MAKE .PHONY 1589 @echo "--------------------------------------------------------------" 1590 @echo ">>> Making hierarchy" 1591 @echo "--------------------------------------------------------------" 1592 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1593 LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy 1594.if make(restage) 1595 @echo "--------------------------------------------------------------" 1596 @echo ">>> Making distribution" 1597 @echo "--------------------------------------------------------------" 1598 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1599 LOCAL_MTREE=${LOCAL_MTREE:Q} distribution 1600.endif 1601 @echo 1602 @echo "--------------------------------------------------------------" 1603 @echo ">>> Installing everything started on `LC_ALL=C date`" 1604 @echo "--------------------------------------------------------------" 1605 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 1606.for libcompat in ${libcompats} 1607 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install${libcompat} 1608.endfor 1609 @echo "--------------------------------------------------------------" 1610 @echo ">>> Installing everything completed on `LC_ALL=C date`" 1611 @echo "--------------------------------------------------------------" 1612 1613redistribute: .MAKE .PHONY 1614 @echo "--------------------------------------------------------------" 1615 @echo ">>> Distributing everything" 1616 @echo "--------------------------------------------------------------" 1617 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 1618.for libcompat in ${libcompats} 1619 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute${libcompat} \ 1620 DISTRIBUTION=lib${libcompat} 1621.endfor 1622 1623distrib-dirs distribution: .MAKE .PHONY 1624 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH:Q} ${MAKE} \ 1625 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1626.if make(distribution) 1627 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH:Q} \ 1628 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ 1629 METALOG=${METALOG} MK_TESTS=no \ 1630 MK_TESTS_SUPPORT=${MK_TESTS_SUPPORT} installconfig 1631.endif 1632 1633# 1634# buildetc and installetc 1635# 1636buildetc: .MAKE .PHONY 1637 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 _worldtmp 1638 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 _legacy 1639 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 _bootstrap-tools \ 1640 MK_CROSS_COMPILER=no MK_TOOLCHAIN=no 1641 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 _obj \ 1642 SUBDIR_OVERRIDE=etc 1643 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 everything \ 1644 SUBDIR_OVERRIDE=etc 1645 1646installetc: .MAKE .PHONY 1647 @echo "--------------------------------------------------------------" 1648 @echo ">>> Making hierarchy" 1649 @echo "--------------------------------------------------------------" 1650 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distrib-dirs 1651 @echo "--------------------------------------------------------------" 1652 @echo ">>> Making distribution" 1653 @echo "--------------------------------------------------------------" 1654 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribution 1655 1656# 1657# buildkernel and installkernel 1658# 1659# Which kernels to build and/or install is specified by setting 1660# KERNCONF. If not defined a GENERIC kernel is built/installed. 1661# Only the existing (depending TARGET) config files are used 1662# for building kernels and only the first of these is designated 1663# as the one being installed. 1664# 1665# Note that we have to use TARGET instead of TARGET_ARCH when 1666# we're in kernel-land. Since only TARGET_ARCH is (expected) to 1667# be set to cross-build, we have to make sure TARGET is set 1668# properly. 1669 1670.if defined(KERNFAST) 1671NO_KERNELCLEAN= t 1672NO_KERNELCONFIG= t 1673NO_KERNELOBJ= t 1674# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 1675.if !defined(KERNCONF) && ${KERNFAST} != "1" 1676KERNCONF=${KERNFAST} 1677.endif 1678.endif 1679.if ${TARGET_ARCH} == "powerpc64" 1680KERNCONF?= GENERIC64 1681.elif ${TARGET_ARCH} == "powerpc64le" 1682KERNCONF?= GENERIC64LE 1683.elif ${TARGET_ARCH} == "powerpcspe" 1684KERNCONF?= MPC85XXSPE 1685.else 1686KERNCONF?= GENERIC 1687.endif 1688INSTKERNNAME?= kernel 1689 1690KERNSRCDIR?= ${.CURDIR}/sys 1691KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 1692KRNLOBJDIR= ${OBJTOP}${KERNSRCDIR:C,^${.CURDIR},,} 1693KERNCONFDIR?= ${KRNLCONFDIR} 1694 1695BUILDKERNELS= 1696INSTALLKERNEL= 1697.if defined(NO_INSTALLKERNEL) 1698# All of the BUILDKERNELS loops start at index 1. 1699BUILDKERNELS+= dummy 1700.endif 1701.for _kernel in ${KERNCONF} 1702.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${_kernel}) 1703BUILDKERNELS+= ${_kernel} 1704.if empty(INSTALLKERNEL) && !defined(NO_INSTALLKERNEL) 1705INSTALLKERNEL= ${_kernel} 1706.endif 1707.else 1708.if make(buildkernel) 1709.error Missing KERNCONF ${KERNCONFDIR}/${_kernel} 1710.endif 1711.endif 1712.endfor 1713 1714_cleankernobj_fast_depend_hack: .PHONY 1715# 20191009 r353340 removal of opensolaris_atomic.S (also r353381) 1716.if ${MACHINE} != i386 1717.for f in opensolaris_atomic 1718.for m in opensolaris zfs 1719 @if [ -e "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o" ] && \ 1720 grep -q ${f}.S "${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.o"; then \ 1721 echo "Removing stale dependencies for opensolaris_atomic"; \ 1722 rm -f ${KRNLOBJDIR}/${KERNCONF}/modules${SRCTOP}/sys/modules/${m}/.depend.${f}.*; \ 1723 fi 1724.endfor 1725.endfor 1726.endif 1727 1728${WMAKE_TGTS:N_cleanworldtmp:N_worldtmp:${libcompats:@v@Nbuild${v}@:ts:}}: .MAKE .PHONY 1729${.ALLTARGETS:M_*:N_cleanworldtmp:N_worldtmp}: .MAKE .PHONY 1730 1731# record kernel(s) build time in seconds 1732.if make(buildkernel) 1733_BUILDKERNEL_START!= date '+%s' 1734.endif 1735 1736# 1737# buildkernel 1738# 1739# Builds all kernels defined by BUILDKERNELS. 1740# 1741buildkernel: .MAKE .PHONY 1742.if empty(BUILDKERNELS:Ndummy) 1743 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 1744 false 1745.endif 1746 @echo 1747.for _kernel in ${BUILDKERNELS:Ndummy} 1748 @echo "--------------------------------------------------------------" 1749 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 1750 @echo "--------------------------------------------------------------" 1751 @echo "===> ${_kernel}" 1752 mkdir -p ${KRNLOBJDIR} 1753.if !defined(NO_KERNELCONFIG) 1754 @echo 1755 @echo "--------------------------------------------------------------" 1756 @echo ">>> stage 1: configuring the kernel" 1757 @echo "--------------------------------------------------------------" 1758 cd ${KRNLCONFDIR}; \ 1759 PATH=${TMPPATH:Q} \ 1760 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 1761 -I '${KERNCONFDIR}' -I '${KRNLCONFDIR}' \ 1762 '${KERNCONFDIR}/${_kernel}' 1763.endif 1764.if ${MK_CLEAN} == "yes" && !defined(NO_KERNELCLEAN) 1765 @echo 1766 @echo "--------------------------------------------------------------" 1767 @echo ">>> stage 2.1: cleaning up the object tree" 1768 @echo "--------------------------------------------------------------" 1769 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 1770.else 1771 ${_+_}cd ${.CURDIR}; ${WMAKE} _cleankernobj_fast_depend_hack 1772.endif 1773.if !defined(NO_KERNELOBJ) 1774 @echo 1775 @echo "--------------------------------------------------------------" 1776 @echo ">>> stage 2.2: rebuilding the object tree" 1777 @echo "--------------------------------------------------------------" 1778 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 1779.endif 1780 @echo 1781 @echo "--------------------------------------------------------------" 1782 @echo ">>> stage 2.3: build tools" 1783 @echo "--------------------------------------------------------------" 1784 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools 1785 @echo 1786 @echo "--------------------------------------------------------------" 1787 @echo ">>> stage 3.1: building everything" 1788 @echo "--------------------------------------------------------------" 1789 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 1790 @echo "--------------------------------------------------------------" 1791 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 1792 @echo "--------------------------------------------------------------" 1793 1794.endfor 1795 @seconds=$$(($$(date '+%s') - ${_BUILDKERNEL_START})); \ 1796 echo -n ">>> Kernel(s) ${BUILDKERNELS} built in $$seconds seconds, "; \ 1797 echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" 1798 @echo "--------------------------------------------------------------" 1799 1800.if !make(packages) && !make(update-packages) 1801NO_INSTALLEXTRAKERNELS?= yes 1802.else 1803# packages/update-packages installs kernels to a staging directory then builds 1804# packages from the result to be installed, typically to other systems. It is 1805# less surprising for these targets to honor KERNCONF if multiple kernels are 1806# specified. 1807NO_INSTALLEXTRAKERNELS?= no 1808.endif 1809 1810# 1811# installkernel, etc. 1812# 1813# Install the kernel defined by INSTALLKERNEL 1814# 1815installkernel installkernel.debug \ 1816reinstallkernel reinstallkernel.debug: _installcheck_kernel .PHONY 1817.if !defined(NO_INSTALLKERNEL) 1818.if empty(INSTALLKERNEL) 1819 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1820 false 1821.endif 1822 @echo "--------------------------------------------------------------" 1823 @echo ">>> Installing kernel ${INSTALLKERNEL} on $$(LC_ALL=C date)" 1824 @echo "--------------------------------------------------------------" 1825 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1826 ${CROSSENV} PATH=${TMPPATH:Q} \ 1827 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 1828 @echo "--------------------------------------------------------------" 1829 @echo ">>> Installing kernel ${INSTALLKERNEL} completed on $$(LC_ALL=C date)" 1830 @echo "--------------------------------------------------------------" 1831.endif 1832.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1833.for _kernel in ${BUILDKERNELS:[2..-1]} 1834 @echo "--------------------------------------------------------------" 1835 @echo ">>> Installing kernel ${_kernel} $$(LC_ALL=C date)" 1836 @echo "--------------------------------------------------------------" 1837 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1838 ${CROSSENV} PATH=${TMPPATH:Q} \ 1839 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} 1840 @echo "--------------------------------------------------------------" 1841 @echo ">>> Installing kernel ${_kernel} completed on $$(LC_ALL=C date)" 1842 @echo "--------------------------------------------------------------" 1843.endfor 1844.endif 1845 1846distributekernel distributekernel.debug: .PHONY 1847.if !defined(NO_INSTALLKERNEL) 1848.if empty(INSTALLKERNEL) 1849 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1850 false 1851.endif 1852 mkdir -p ${DESTDIR}/${DISTDIR} 1853.if defined(NO_ROOT) 1854 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta 1855.endif 1856 ${_+_}cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1857 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ 1858 ${IMAKE_MTREE} PATH=${TMPPATH:Q} ${MAKE} KERNEL=${INSTKERNNAME} \ 1859 DESTDIR=${INSTALL_DDIR}/kernel \ 1860 ${.TARGET:S/distributekernel/install/} 1861.if defined(NO_ROOT) 1862 @sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ 1863 ${DESTDIR}/${DISTDIR}/kernel.meta 1864.endif 1865.endif 1866.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1867.for _kernel in ${BUILDKERNELS:[2..-1]} 1868.if defined(NO_ROOT) 1869 @echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta 1870.endif 1871 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; \ 1872 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ 1873 ${IMAKE_MTREE} PATH=${TMPPATH:Q} ${MAKE} \ 1874 KERNEL=${INSTKERNNAME}.${_kernel} \ 1875 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ 1876 ${.TARGET:S/distributekernel/install/} 1877.if defined(NO_ROOT) 1878 @sed -e "s|^./kernel.${_kernel}|.|" \ 1879 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ 1880 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta 1881.endif 1882.endfor 1883.endif 1884 1885packagekernel: .PHONY 1886.if defined(NO_ROOT) 1887.if !defined(NO_INSTALLKERNEL) 1888 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1889 ${TAR_CMD} cvf - --exclude '*.debug' \ 1890 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1891 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1892.endif 1893.if ${MK_DEBUG_FILES} != "no" 1894 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1895 ${TAR_CMD} cvf - --include '*/*/*.debug' \ 1896 @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1897 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1898.endif 1899.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1900.for _kernel in ${BUILDKERNELS:[2..-1]} 1901 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1902 ${TAR_CMD} cvf - --exclude '*.debug' \ 1903 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1904 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1905.if ${MK_DEBUG_FILES} != "no" 1906 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1907 ${TAR_CMD} cvf - --include '*/*/*.debug' \ 1908 @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1909 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1910.endif 1911.endfor 1912.endif 1913.else 1914.if !defined(NO_INSTALLKERNEL) 1915 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1916 ${TAR_CMD} cvf - --exclude '*.debug' . | \ 1917 ${XZ_CMD} > ${PACKAGEDIR}/kernel.txz 1918.endif 1919.if ${MK_DEBUG_FILES} != "no" 1920 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1921 ${TAR_CMD} cvf - --include '*/*/*.debug' $$(eval find .) | \ 1922 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel-dbg.txz 1923.endif 1924.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 1925.for _kernel in ${BUILDKERNELS:[2..-1]} 1926 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1927 ${TAR_CMD} cvf - --exclude '*.debug' . | \ 1928 ${XZ_CMD} > ${PACKAGEDIR}/kernel.${_kernel}.txz 1929.if ${MK_DEBUG_FILES} != "no" 1930 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1931 ${TAR_CMD} cvf - --include '*/*/*.debug' $$(eval find .) | \ 1932 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}-dbg.txz 1933.endif 1934.endfor 1935.endif 1936.endif 1937 1938stagekernel: .PHONY 1939 ${_+_}${MAKE} -C ${.CURDIR} ${.MAKEFLAGS} distributekernel 1940 1941PORTSDIR?= /usr/ports 1942WSTAGEDIR?= ${OBJTOP}/worldstage 1943KSTAGEDIR?= ${OBJTOP}/kernelstage 1944REPODIR?= ${OBJROOT}repo 1945PKG_FORMAT?= txz 1946PKG_REPO_SIGNING_KEY?= # empty 1947PKG_OUTPUT_DIR?= ${PKG_VERSION} 1948 1949.ORDER: stage-packages create-packages 1950.ORDER: create-packages create-world-packages 1951.ORDER: create-packages create-kernel-packages 1952.ORDER: create-packages sign-packages 1953 1954_pkgbootstrap: .PHONY 1955.if make(*package*) && !exists(${LOCALBASE}/sbin/pkg) 1956 @env ASSUME_ALWAYS_YES=YES pkg bootstrap 1957.endif 1958 1959# 1960# Determine PKG_ABI from newvers.sh if not already set. 1961# 1962.if !defined(PKG_ABI) && (make(create-world-packages-jobs) || make(create-kernel-packages*) || make(real-update-packages) || make(sign-packages)) 1963PKG_ABI=${_TYPE}:${MAJOR_REVISION}:${TARGET_ARCH} 1964.endif 1965PKG_BIN_VERSION!=${PKG_CMD} --version </dev/null 2>/dev/null |\ 1966 awk -F. '/^[0-9.]+$$/ {print $$1 * 10000 + $$2 * 100 + $$3}' 1967.if ${PKG_BIN_VERSION} < 11700 1968PKG_EXT= ${PKG_FORMAT} 1969.else 1970PKG_EXT= pkg 1971.endif 1972 1973.if !defined(PKG_VERSION_FROM) && make(real-update-packages) 1974.if defined(PKG_ABI) 1975.if exists(${REPODIR}/${PKG_ABI}) 1976PKG_VERSION_FROM!=/usr/bin/readlink ${REPODIR}/${PKG_ABI}/latest 1977PKG_VERSION_FROM_DIR= ${REPODIR}/${PKG_ABI}/${PKG_VERSION_FROM} 1978.else 1979PKG_VERSION_FROM= 1980PKG_VERSION_FROM_DIR= 1981.endif 1982.endif 1983.endif 1984 1985PKGMAKEARGS+= PKG_VERSION=${PKG_VERSION} \ 1986 NO_INSTALLEXTRAKERNELS=${NO_INSTALLEXTRAKERNELS} 1987 1988packages: .PHONY 1989 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-packages 1990 1991update-packages: .PHONY 1992 ${_+_}${MAKE} -C ${.CURDIR} ${PKGMAKEARGS} real-update-packages 1993 1994package-pkg: .PHONY 1995 rm -rf /tmp/ports.${TARGET} || : 1996 env ${WMAKEENV:Q} SRCDIR=${.CURDIR} PORTSDIR=${PORTSDIR} REVISION=${_REVISION} \ 1997 PKG_CMD=${PKG_CMD} PKG_VERSION=${PKG_VERSION} REPODIR=${REPODIR} \ 1998 WSTAGEDIR=${WSTAGEDIR} \ 1999 sh ${.CURDIR}/release/scripts/make-pkg-package.sh 2000 2001real-packages: stage-packages create-packages sign-packages .PHONY 2002 2003real-update-packages: stage-packages .PHONY 2004 ${_+_}${MAKE} -C ${.CURDIR} PKG_VERSION=${PKG_VERSION} create-packages 2005.if empty(PKG_VERSION_FROM_DIR) 2006 @echo "==> Bootstrapping repository, not checking for new packages" 2007.else 2008 @echo "==> Checking for new packages (comparing ${PKG_VERSION} to ${PKG_VERSION_FROM})" 2009 @for pkg in ${PKG_VERSION_FROM_DIR}/${PKG_NAME_PREFIX}-*; do \ 2010 pkgname=$$(pkg query -F $${pkg} '%n' | sed 's/${PKG_NAME_PREFIX}-\(.*\)/\1/') ; \ 2011 newpkgname=${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION}.${PKG_EXT} ; \ 2012 oldsum=$$(pkg query -F $${pkg} '%X') ; \ 2013 if [ ! -f ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ]; then \ 2014 continue; \ 2015 fi ; \ 2016 newsum=$$(pkg query -F ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} '%X') ; \ 2017 if [ "$${oldsum}" == "$${newsum}" ]; then \ 2018 echo "==> Keeping old ${PKG_NAME_PREFIX}-$${pkgname}-${PKG_VERSION_FROM}.${PKG_EXT}" ; \ 2019 rm ${REPODIR}/${PKG_ABI}/${PKG_VERSION}/$${newpkgname} ; \ 2020 cp $${pkg} ${REPODIR}/${PKG_ABI}/${PKG_VERSION} ; \ 2021 else \ 2022 echo "==> New package $${newpkgname}" ; \ 2023 fi ; \ 2024 done 2025.endif 2026 ${_+_}@cd ${.CURDIR}; \ 2027 ${MAKE} -f Makefile.inc1 PKG_VERSION=${PKG_VERSION} sign-packages 2028 2029stage-packages-world: .PHONY 2030 @mkdir -p ${WSTAGEDIR} 2031 ${_+_}@cd ${.CURDIR}; \ 2032 ${MAKE} DESTDIR=${WSTAGEDIR} -DNO_ROOT stageworld 2033 2034stage-packages-kernel: .PHONY 2035 @mkdir -p ${KSTAGEDIR} 2036 ${_+_}@cd ${.CURDIR}; \ 2037 ${MAKE} DESTDIR=${KSTAGEDIR} -DNO_ROOT stagekernel 2038 2039stage-packages: .PHONY stage-packages-world stage-packages-kernel 2040 2041_repodir: .PHONY 2042 @mkdir -p ${REPODIR} 2043 2044create-packages-world: _pkgbootstrap _repodir .PHONY 2045 ${_+_}@cd ${.CURDIR}; \ 2046 ${MAKE} -f Makefile.inc1 \ 2047 DESTDIR=${WSTAGEDIR} \ 2048 PKG_VERSION=${PKG_VERSION} create-world-packages 2049 2050create-packages-kernel: _pkgbootstrap _repodir .PHONY 2051 ${_+_}@cd ${.CURDIR}; \ 2052 ${MAKE} -f Makefile.inc1 \ 2053 DESTDIR=${KSTAGEDIR} \ 2054 PKG_VERSION=${PKG_VERSION} DISTDIR=kernel \ 2055 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 2056 create-kernel-packages 2057 2058create-packages: .PHONY create-packages-world create-packages-kernel 2059 2060create-world-packages: _pkgbootstrap .PHONY 2061 @rm -f ${WSTAGEDIR}/*.plist 2>/dev/null || : 2062 @cd ${WSTAGEDIR} ; \ 2063 ${METALOG_SORT_CMD} ${WSTAGEDIR}/${DISTDIR}/METALOG | \ 2064 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk 2065 @for plist in ${WSTAGEDIR}/*.plist; do \ 2066 plist=$${plist##*/} ; \ 2067 pkgname=$${plist%.plist} ; \ 2068 echo "_PKGS+= $${pkgname}" ; \ 2069 done > ${WSTAGEDIR}/packages.mk 2070 ${_+_}@cd ${.CURDIR}; \ 2071 ${MAKE} -f Makefile.inc1 create-world-packages-jobs \ 2072 SOURCE_DATE_EPOCH=${SOURCE_DATE_EPOCH} \ 2073 .MAKE.JOB.PREFIX= 2074 2075.if make(create-world-packages-jobs) 2076.include "${WSTAGEDIR}/packages.mk" 2077.endif 2078 2079create-world-packages-jobs: .PHONY 2080.for pkgname in ${_PKGS} 2081create-world-packages-jobs: create-world-package-${pkgname} 2082create-world-package-${pkgname}: .PHONY 2083 @sh ${SRCDIR}/release/packages/generate-ucl.sh -o ${pkgname} \ 2084 -s ${SRCDIR} -u ${WSTAGEDIR}/${pkgname}.ucl 2085 @awk -F\" ' \ 2086 /^name/ { printf("===> Creating %s-", $$2); next } \ 2087 /^version/ { print $$2; next } \ 2088 ' ${WSTAGEDIR}/${pkgname}.ucl 2089 @if [ "${pkgname}" == "runtime" ]; then \ 2090 sed -i '' -e "s/%VCS_REVISION%/${VCS_REVISION}/" ${WSTAGEDIR}/${pkgname}.ucl ; \ 2091 fi 2092 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2093 create -f ${PKG_FORMAT} -M ${WSTAGEDIR}/${pkgname}.ucl \ 2094 -p ${WSTAGEDIR}/${pkgname}.plist \ 2095 -r ${WSTAGEDIR} \ 2096 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2097.endfor 2098 2099_default_flavor= -default 2100.if make(*package*) && exists(${KSTAGEDIR}/kernel.meta) 2101. if ${MK_DEBUG_FILES} != "no" 2102_debug=-dbg 2103. endif 2104create-kernel-packages: .PHONY 2105. for flavor in "" ${_debug} 2106create-kernel-packages: create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},} 2107create-kernel-packages-flavor${flavor:C,^""$,${_default_flavor},}: _pkgbootstrap .PHONY 2108 @cd ${KSTAGEDIR}/${DISTDIR} ; \ 2109 ${METALOG_SORT_CMD} ${KSTAGEDIR}/kernel.meta | \ 2110 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2111 -v kernel=yes -v _kernconf=${INSTALLKERNEL} ; \ 2112 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2113 -e "s/%PKGNAME%/kernel-${INSTALLKERNEL:tl}${flavor}/" \ 2114 -e "s/%KERNELDIR%/kernel/" \ 2115 -e "s/%COMMENT%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2116 -e "s/%DESC%/FreeBSD ${INSTALLKERNEL} kernel ${flavor}/" \ 2117 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2118 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2119 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2120 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2121 ${SRCDIR}/release/packages/kernel.ucl \ 2122 > ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2123 awk -F\" ' \ 2124 /name/ { printf("===> Creating %s-", $$2); next } \ 2125 /version/ {print $$2; next } ' \ 2126 ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl ; \ 2127 ${PKG_CMD} -o ABI=${PKG_ABI} -o ALLOW_BASE_SHLIBS=yes \ 2128 create -f ${PKG_FORMAT} \ 2129 -M ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.ucl \ 2130 -p ${KSTAGEDIR}/${DISTDIR}/kernel.${INSTALLKERNEL}${flavor}.plist \ 2131 -r ${KSTAGEDIR}/${DISTDIR} \ 2132 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2133. endfor 2134.endif 2135.if ${BUILDKERNELS:[#]} > 1 && ${NO_INSTALLEXTRAKERNELS} != "yes" 2136. for _kernel in ${BUILDKERNELS:[2..-1]} 2137. if exists(${KSTAGEDIR}/kernel.${_kernel}.meta) 2138. if ${MK_DEBUG_FILES} != "no" 2139_debug=-dbg 2140. endif 2141. for flavor in "" ${_debug} 2142create-kernel-packages: create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel} 2143create-kernel-packages-extra-flavor${flavor:C,^""$,${_default_flavor},}-${_kernel}: _pkgbootstrap .PHONY 2144 @cd ${KSTAGEDIR}/kernel.${_kernel} ; \ 2145 ${METALOG_SORT_CMD} ${KSTAGEDIR}/kernel.${_kernel}.meta | \ 2146 awk -f ${SRCDIR}/release/scripts/mtree-to-plist.awk \ 2147 -v kernel=yes -v _kernconf=${_kernel} ; \ 2148 sed -e "s/%VERSION%/${PKG_VERSION}/" \ 2149 -e "s/%PKGNAME%/kernel-${_kernel:tl}${flavor}/" \ 2150 -e "s/%KERNELDIR%/kernel.${_kernel}/" \ 2151 -e "s/%COMMENT%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2152 -e "s/%DESC%/FreeBSD ${_kernel} kernel ${flavor}/" \ 2153 -e "s/ %VCS_REVISION%/${VCS_REVISION}/" \ 2154 -e "s/%PKG_NAME_PREFIX%/${PKG_NAME_PREFIX}/" \ 2155 -e "s/%PKG_MAINTAINER%/${PKG_MAINTAINER}/" \ 2156 -e "s|%PKG_WWW%|${PKG_WWW}|" \ 2157 ${SRCDIR}/release/packages/kernel.ucl \ 2158 > ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2159 awk -F\" ' \ 2160 /name/ { printf("===> Creating %s-", $$2); next } \ 2161 /version/ {print $$2; next } ' \ 2162 ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl ; \ 2163 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname -o ALLOW_BASE_SHLIBS=yes \ 2164 create -f ${PKG_FORMAT} \ 2165 -M ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.ucl \ 2166 -p ${KSTAGEDIR}/kernel.${_kernel}/kernel.${_kernel}${flavor}.plist \ 2167 -r ${KSTAGEDIR}/kernel.${_kernel} \ 2168 -o ${REPODIR}/${PKG_ABI}/${PKG_OUTPUT_DIR} 2169. endfor 2170. endif 2171. endfor 2172.endif 2173 2174sign-packages: _pkgbootstrap .PHONY 2175 printf "version = 2;\n" > ${WSTAGEDIR}/meta 2176.if ${PKG_BIN_VERSION} < 11700 2177 printf "packing_format = \"${PKG_FORMAT}\";\n" >> ${WSTAGEDIR}/meta 2178.endif 2179 @[ -L "${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest" ] && \ 2180 unlink ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/latest ; \ 2181 ${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname repo \ 2182 -m ${WSTAGEDIR}/meta \ 2183 -o ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2184 ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI)/${PKG_VERSION} \ 2185 ${PKG_REPO_SIGNING_KEY} ; \ 2186 cd ${REPODIR}/$$(${PKG_CMD} -o ABI_FILE=${WSTAGEDIR}/usr/bin/uname config ABI); \ 2187 ln -s ${PKG_OUTPUT_DIR} latest 2188 2189# 2190# 2191# checkworld 2192# 2193# Run test suite on installed world. 2194# 2195checkworld: .PHONY 2196 @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \ 2197 echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \ 2198 exit 1; \ 2199 fi 2200 ${_+_}PATH="$$PATH:${LOCALBASE}/bin" kyua test -k ${TESTSBASE}/Kyuafile 2201 2202# 2203# 2204# doxygen 2205# 2206# Build the API documentation with doxygen 2207# 2208doxygen: .PHONY 2209 @if [ ! -x "${LOCALBASE}/bin/doxygen" ]; then \ 2210 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 2211 exit 1; \ 2212 fi 2213 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys; ${MAKE} obj all 2214 2215# 2216# ------------------------------------------------------------------------ 2217# 2218# From here onwards are utility targets used by the 'make world' and 2219# related targets. If your 'world' breaks, you may like to try to fix 2220# the problem and manually run the following targets to attempt to 2221# complete the build. Beware, this is *not* guaranteed to work, you 2222# need to have a pretty good grip on the current state of the system 2223# to attempt to manually finish it. If in doubt, 'make world' again. 2224# 2225 2226# 2227# legacy: Build compatibility shims for the next three targets. This is a 2228# minimal set of tools and shims necessary to compensate for older systems 2229# which don't have the APIs required by the targets built in bootstrap-tools, 2230# build-tools or cross-tools. 2231# 2232legacy: .PHONY 2233.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0 2234 @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \ 2235 false 2236.endif 2237 2238.for _tool in \ 2239 tools/build \ 2240 ${LOCAL_LEGACY_DIRS} 2241 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \ 2242 cd ${.CURDIR}/${_tool}; \ 2243 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2244 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \ 2245 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \ 2246 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \ 2247 DESTDIR=${WORLDTMP}/legacy install 2248.endfor 2249 2250# 2251# bootstrap-tools: Build tools needed for compatibility. These are binaries that 2252# are built to build other binaries in the system. However, the focus of these 2253# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 2254# libraries, augmented by -legacy, in addition to the libraries built during 2255# bootstrap-tools. 2256# 2257_bt= _bootstrap-tools 2258 2259# We want to run the build with only ${WORLDTMP} in $PATH to ensure we don't 2260# accidentally run tools that are incompatible but happen to be in $PATH. 2261# This is especially important when building on Linux/MacOS where many of the 2262# programs used during the build accept different flags or generate different 2263# output. On those platforms we only symlink the tools known to be compatible 2264# (e.g. basic utilities such as mkdir) into ${WORLDTMP} and build all others 2265# from the FreeBSD sources during the bootstrap-tools stage. 2266# We want to build without the user's $PATH starting in the bootstrap-tools 2267# phase so the tools used in that phase (ln, cp, etc) must have already been 2268# linked to $WORLDTMP. The tools are listed in the _host_tools_to_symlink 2269# variable in tools/build/Makefile and are linked during the legacy phase. 2270# Since they could be Linux or MacOS binaries, too we must only use flags that 2271# are portable across operating systems. 2272 2273# If BOOTSTRAP_ALL_TOOLS is set we will build all the required tools from the 2274# current source tree. Otherwise we create a symlink to the version found in 2275# $PATH during the bootstrap-tools stage. 2276# When building on non-FreeBSD systems we can't assume that the host binaries 2277# accept compatible flags or produce compatible output. Therefore we force 2278# BOOTSTRAP_ALL_TOOLS and just build the FreeBSD version of the binary. 2279.if defined(CROSSBUILD_HOST) 2280BOOTSTRAP_ALL_TOOLS:= 1 2281.endif 2282.if defined(BOOTSTRAP_ALL_TOOLS) 2283# BOOTSTRAPPING will be set on the command line so we can't override it here. 2284# Instead set BOOTSTRAPPING_OSRELDATE so that the value 0 is set ${BSARGS} 2285BOOTSTRAPPING_OSRELDATE:= 0 2286.endif 2287 2288.if ${MK_GAMES} != "no" 2289_strfile= usr.bin/fortune/strfile 2290.endif 2291 2292# vtfontcvt is used to build font files for loader and to generate 2293# C source for loader built in font (8x16.c). 2294_vtfontcvt= usr.bin/vtfontcvt 2295 2296# zic is used to compile timezone data 2297.if ${MK_ZONEINFO} != "no" 2298_zic= usr.sbin/zic 2299.endif 2300 2301# If we are not building the bootstrap because BOOTSTRAPPING is sufficient 2302# we symlink the host version to $WORLDTMP instead. By doing this we can also 2303# detect when a bootstrap tool is being used without the required MK_FOO. 2304# If you add a new bootstrap tool where we could also use the host version, 2305# please ensure that you also add a .else case where you add the tool to the 2306# _bootstrap_tools_links variable. 2307.if ${BOOTSTRAPPING} < 1000033 2308# Note: lex needs m4 to build but m4 also depends on lex (which needs m4 to 2309# generate any files). To fix this cyclic dependency we can build a bootstrap 2310# version of m4 (with pre-generated files) then use that to build the real m4. 2311# We can't simply use the host m4 since e.g. the macOS version does not accept 2312# the flags that are passed by lex. 2313# For lex we also use the pre-gerated files since we would otherwise need to 2314# build awk and sed first (which need lex to build) 2315# TODO: add a _bootstrap_lex and then build the real lex afterwards 2316_lex= usr.bin/lex 2317_m4= tools/build/bootstrap-m4 usr.bin/m4 2318${_bt}-tools/build/bootstrap-m4: ${_bt}-usr.bin/lex ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc 2319${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd ${_bt}-usr.bin/yacc ${_bt}-usr.bin/lex ${_bt}-tools/build/bootstrap-m4 2320_bt_m4_depend=${_bt}-usr.bin/m4 2321_bt_lex_depend=${_bt}-usr.bin/lex ${_bt_m4_depend} 2322.else 2323_bootstrap_tools_links+=m4 lex 2324.endif 2325 2326# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. 2327# r296685 fix cross-endian objcopy 2328# r310724 fixed PR 215350, a crash in libdwarf with objects built by GCC 6.2. 2329# r334881 added libdwarf constants used by ctfconvert. 2330# r338478 fixed a crash in objcopy for mips64el objects 2331# r339083 libelf: correct mips64el test to use ELF header 2332# r348347 Add missing powerpc64 relocation support to libdwarf 2333.if ${BOOTSTRAPPING} < 1300030 2334_elftoolchain_libs= lib/libelf lib/libdwarf lib/libzstd 2335${_bt}-lib/libelf: ${_bt_m4_depend} 2336${_bt}-lib/libdwarf: ${_bt_m4_depend} 2337.endif 2338 2339# flua is required to regenerate syscall files. It first appeared during the 2340# 13.0-CURRENT cycle, thus needs to be built on -older releases and stable 2341# branches. 2342.if ${BOOTSTRAPPING} < 1300059 2343${_bt}-libexec/flua: ${_bt}-lib/liblua ${_bt}-lib/libucl 2344_flua= lib/liblua lib/libucl libexec/flua 2345.endif 2346 2347# r245440 mtree -N support added 2348# r313404 requires sha384.h for libnetbsd, added to libmd in r292782 2349.if ${BOOTSTRAPPING} < 1100093 2350_libnetbsd= lib/libnetbsd 2351_nmtree= lib/libmd \ 2352 usr.sbin/nmtree 2353 2354${_bt}-lib/libnetbsd: ${_bt}-lib/libmd 2355${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 2356.else 2357_bootstrap_tools_links+=mtree 2358.endif 2359 2360# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l 2361.if ${BOOTSTRAPPING} < 1000027 2362_cat= bin/cat 2363.else 2364_bootstrap_tools_links+=cat 2365.endif 2366 2367# r277259 crunchide: Correct 64-bit section header offset 2368# r281674 crunchide: always include both 32- and 64-bit ELF support 2369.if ${BOOTSTRAPPING} < 1100078 2370_crunchide= usr.sbin/crunch/crunchide 2371.else 2372_bootstrap_tools_links+=crunchide 2373.endif 2374 2375# 1400052, 1300526, 1203507: Removed -dc from linker invocation 2376.if ${BOOTSTRAPPING} < 1203507 || \ 2377 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300526) || \ 2378 (${BOOTSTRAPPING} > 1400000 && ${BOOTSTRAPPING} < 1400052) 2379_crunchgen= usr.sbin/crunch/crunchgen 2380.else 2381_bootstrap_tools_links+=crunchgen 2382.endif 2383 2384# The ATKBD_DFLT_KEYMAP, UKBD_DFLT_KEYMAP and KBDMUX_DFLT_KEYMAP kernel options 2385# require kbdcontrol. Note that, even on FreeBSD, the host will lack kbdcontrol 2386# if built with WITHOUT_LEGACY_CONSOLE. 2387# 2388# XXX: kbdcontrol cannot currently be bootstrapped on non-FreeBSD systems 2389.if !defined(CROSSBUILD_HOST) 2390.if defined(BOOTSTRAP_ALL_TOOLS) || !exists(/usr/sbin/kbdcontrol) 2391_kbdcontrol= usr.sbin/kbdcontrol 2392.else 2393_bootstrap_tools_links+=kbdcontrol 2394.endif 2395.endif 2396 2397.if ${MK_DISK_IMAGE_TOOLS_BOOTSTRAP} != "no" 2398_etdump= usr.bin/etdump 2399_makefs= usr.sbin/makefs 2400 2401_libnetbsd= lib/libnetbsd 2402${_bt}-usr.sbin/makefs: ${_bt}-lib/libnetbsd 2403 2404.if defined(BOOTSTRAP_ALL_TOOLS) 2405_libsbuf= lib/libsbuf 2406${_bt}-usr.sbin/makefs: ${_bt}-lib/libsbuf 2407.endif 2408.endif 2409 2410# 1300102: VHDX support 2411.if ${BOOTSTRAPPING} < 1201520 || \ 2412 (${BOOTSTRAPPING} > 1300000 && ${BOOTSTRAPPING} < 1300102) || \ 2413 ${MK_DISK_IMAGE_TOOLS_BOOTSTRAP} != "no" 2414_mkimg= usr.bin/mkimg 2415.else 2416_bootstrap_tools_links+=mkimg 2417.endif 2418 2419_yacc= usr.bin/yacc 2420 2421.if ${MK_BSNMP} != "no" 2422_gensnmptree= usr.sbin/bsnmpd/gensnmptree 2423.endif 2424 2425 2426# We need to build tblgen when we're building clang or lld, either as 2427# bootstrap tools, or as the part of the normal build. 2428# llvm-tblgen is also needed for various llvm binutils (e.g. objcopy). 2429.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2430 ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" || \ 2431 ${MK_LLDB} != "no" || ${MK_LLVM_BINUTILS} != "no" 2432_clang_tblgen= \ 2433 lib/clang/libllvmminimal \ 2434 usr.bin/clang/llvm-tblgen 2435.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2436 ${MK_LLDB} != "no" 2437_clang_tblgen+= lib/clang/libclangminimal 2438_clang_tblgen+= usr.bin/clang/clang-tblgen 2439.endif 2440.if ${MK_LLDB} != "no" 2441_clang_tblgen+= usr.bin/clang/lldb-tblgen 2442.endif 2443${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal 2444${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal 2445${_bt}-usr.bin/clang/lldb-tblgen: ${_bt}-lib/clang/libllvmminimal 2446.endif 2447 2448# C.UTF-8 is always built in share/ctypes and we need localedef for that. 2449_localedef= usr.bin/localedef 2450${_bt}-usr.bin/localedef: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2451 2452.if ${MK_ICONV} != "no" 2453_mkesdb= usr.bin/mkesdb 2454_mkcsmapper= usr.bin/mkcsmapper 2455${_bt}-usr.bin/mkesdb: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2456${_bt}-usr.bin/mkcsmapper: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2457.endif 2458 2459.if ${MK_KERBEROS} != "no" 2460_kerberos5_bootstrap_tools= \ 2461 kerberos5/tools/make-roken \ 2462 kerberos5/lib/libroken \ 2463 kerberos5/lib/libvers \ 2464 kerberos5/tools/asn1_compile \ 2465 kerberos5/tools/slc \ 2466 usr.bin/compile_et 2467 2468.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 2469.for _tool in ${_kerberos5_bootstrap_tools} 2470${_bt}-${_tool}: ${_bt}-usr.bin/yacc ${_bt_lex_depend} 2471.endfor 2472.endif 2473 2474${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd 2475 2476# The tools listed in _basic_bootstrap_tools will generally not be 2477# bootstrapped unless BOOTSTRAP_ALL_TOOL is set. However, when building on a 2478# Linux or MacOS host the host versions are incompatible so we need to build 2479# them from the source tree. Usually the link name will be the same as the subdir, 2480# but some directories such as grep or test install multiple binaries. In that 2481# case we use the _basic_bootstrap_tools_multilink variable which is a list of 2482# subdirectory and comma-separated list of files. 2483_basic_bootstrap_tools_multilink=usr.bin/grep grep,egrep,fgrep 2484_basic_bootstrap_tools_multilink+=bin/test test,[ 2485# bootstrap tools needed by buildworld: 2486_basic_bootstrap_tools+=usr.bin/cut bin/expr usr.bin/gencat usr.bin/join \ 2487 usr.bin/mktemp bin/realpath bin/rmdir usr.bin/sed usr.bin/sort \ 2488 usr.bin/truncate usr.bin/tsort 2489# Some build scripts use nawk instead of awk (this happens at least in 2490# cddl/contrib/opensolaris/lib/libdtrace/common/mknames.sh) so we need both awk 2491# and nawk in ${WORLDTMP}/legacy/bin. 2492_basic_bootstrap_tools_multilink+=usr.bin/awk awk,nawk 2493# file2c is required for building usr.sbin/config: 2494_basic_bootstrap_tools+=usr.bin/file2c 2495# uuencode/uudecode required for share/tabset 2496_basic_bootstrap_tools_multilink+=usr.bin/bintrans uuencode,uudecode 2497# xargs is required by mkioctls 2498_basic_bootstrap_tools+=usr.bin/xargs 2499# cap_mkdb is required for share/termcap: 2500_basic_bootstrap_tools+=usr.bin/cap_mkdb 2501# services_mkdb/pwd_mkdb are required for installworld: 2502_basic_bootstrap_tools+=usr.sbin/services_mkdb usr.sbin/pwd_mkdb 2503# ldd is required for installcheck (TODO: just always use /usr/bin/ldd instead?) 2504.if !defined(CROSSBUILD_HOST) 2505# ldd is only needed for updating the running system so we don't need to 2506# bootstrap ldd on non-FreeBSD systems 2507_basic_bootstrap_tools+=usr.bin/ldd 2508.endif 2509# sysctl/chflags are required for installkernel: 2510.if !defined(CROSSBUILD_HOST) 2511_basic_bootstrap_tools+=bin/chflags 2512# Note: sysctl does not bootstrap on FreeBSD < 13 anymore, but that doesn't 2513# matter since we don't need any of the new features for the build. 2514_bootstrap_tools_links+=sysctl 2515.else 2516# When building on non-FreeBSD, install a fake chflags instead since the 2517# version from the source tree cannot work. We also don't need sysctl since we 2518# are install with -DNO_ROOT. 2519_other_bootstrap_tools+=tools/build/cross-build/fake_chflags 2520.endif 2521# mkfifo is used by sys/conf/newvers.sh 2522_basic_bootstrap_tools+=usr.bin/mkfifo 2523# jot is needed for the mkimg tests 2524_basic_bootstrap_tools+=usr.bin/jot 2525 2526.if ${MK_BOOT} != "no" 2527# md5 is used by boot/beri (and possibly others) 2528_basic_bootstrap_tools+=sbin/md5 2529.endif 2530 2531# tzsetup is needed as an install tool 2532.if ${MK_ZONEINFO} != "no" 2533_basic_bootstrap_tools+=usr.sbin/tzsetup 2534.endif 2535 2536.if defined(BOOTSTRAP_ALL_TOOLS) 2537_other_bootstrap_tools+=${_basic_bootstrap_tools} 2538.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2539_other_bootstrap_tools+=${_subdir} 2540.endfor 2541${_bt}-usr.bin/awk: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2542${_bt}-bin/expr: ${_bt_lex_depend} ${_bt}-usr.bin/yacc 2543# If we are bootstrapping file2c, we have to build it before config: 2544${_bt}-usr.sbin/config: ${_bt}-usr.bin/file2c ${_bt_lex_depend} 2545# Note: no symlink to make/bmake in the !BOOTSTRAP_ALL_TOOLS case here since 2546# the links to make/bmake make links will have already have been created in the 2547# `make legacy` step. Not adding a link to make is important on non-FreeBSD 2548# since "make" will usually point to GNU make there. 2549_other_bootstrap_tools+=usr.bin/bmake 2550 2551# Avoid dependency on host bz2 headers: 2552_other_bootstrap_tools+=lib/libbz2 2553${_bt}-usr.bin/grep: ${_bt}-lib/libbz2 2554 2555# libdwarf depends on libz 2556_other_bootstrap_tools+=lib/libz 2557${_bt}-lib/libdwarf: ${_bt}-lib/libz 2558 2559# libroken depends on libcrypt 2560_other_bootstrap_tools+=lib/libcrypt 2561${_bt}-lib/libroken: ${_bt}-lib/libcrypt 2562.else 2563# All tools in _basic_bootstrap_tools have the same name as the subdirectory 2564# so we can use :T to get the name of the symlinks that we need to create. 2565_bootstrap_tools_links+=${_basic_bootstrap_tools:T} 2566.for _subdir _links in ${_basic_bootstrap_tools_multilink} 2567_bootstrap_tools_links+=${_links:S/,/ /g} 2568.endfor 2569.endif # defined(BOOTSTRAP_ALL_TOOLS) 2570 2571# Link the tools that we need for building but don't need to bootstrap because 2572# the host version is known to be compatible into ${WORLDTMP}/legacy 2573# We do this before building any of the bootstrap tools in case they depend on 2574# the presence of any of the links (e.g. as m4/lex/awk) 2575${_bt}-links: .PHONY 2576 2577.for _tool in ${_bootstrap_tools_links} 2578${_bt}-link-${_tool}: .PHONY 2579 @rm -f "${WORLDTMP}/legacy/bin/${_tool}"; \ 2580 source_path=`which ${_tool}`; \ 2581 if [ ! -e "$${source_path}" ] ; then \ 2582 echo "Cannot find host tool '${_tool}'"; false; \ 2583 fi; \ 2584 cp -pf "$${source_path}" "${WORLDTMP}/legacy/bin/${_tool}" 2585${_bt}-links: ${_bt}-link-${_tool} 2586.endfor 2587 2588bootstrap-tools: ${_bt}-links .PHONY 2589 2590# Please document (add comment) why something is in 'bootstrap-tools'. 2591# Try to bound the building of the bootstrap-tool to just the 2592# FreeBSD versions that need the tool built at this stage of the build. 2593.for _tool in \ 2594 ${_clang_tblgen} \ 2595 ${_kerberos5_bootstrap_tools} \ 2596 ${_strfile} \ 2597 usr.bin/dtc \ 2598 ${_cat} \ 2599 ${_kbdcontrol} \ 2600 ${_elftoolchain_libs} \ 2601 lib/libopenbsd \ 2602 usr.bin/mandoc \ 2603 usr.bin/rpcgen \ 2604 ${_yacc} \ 2605 ${_m4} \ 2606 ${_lex} \ 2607 ${_other_bootstrap_tools} \ 2608 usr.bin/xinstall \ 2609 ${_gensnmptree} \ 2610 usr.sbin/config \ 2611 ${_flua} \ 2612 ${_crunchide} \ 2613 ${_crunchgen} \ 2614 ${_etdump} \ 2615 ${_libnetbsd} \ 2616 ${_libsbuf} \ 2617 ${_makefs} \ 2618 ${_mkimg} \ 2619 ${_nmtree} \ 2620 ${_vtfontcvt} \ 2621 ${_localedef} \ 2622 ${_mkcsmapper} \ 2623 ${_mkesdb} \ 2624 ${_zic} \ 2625 ${LOCAL_BSTOOL_DIRS} 2626${_bt}-${_tool}: ${_bt}-links .PHONY .MAKE 2627 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2628 cd ${.CURDIR}/${_tool}; \ 2629 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2630 if [ "${_tool}" = "usr.bin/lex" ]; then \ 2631 ${MAKE} DIRPRFX=${_tool}/ bootstrap; \ 2632 fi; \ 2633 ${MAKE} DIRPRFX=${_tool}/ all; \ 2634 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install 2635 2636bootstrap-tools: ${_bt}-${_tool} 2637.endfor 2638.if target(${_bt}-lib/libmd) 2639# If we are bootstrapping libmd (e.g. when building on macOS/Linux) add the 2640# necessary dependencies: 2641${_bt}-usr.bin/sort: ${_bt}-lib/libmd 2642${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd 2643${_bt}-sbin/md5: ${_bt}-lib/libmd 2644.endif 2645 2646 2647# 2648# build-tools: Build special purpose build tools 2649# 2650.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no" 2651_share= share/syscons/scrnmaps 2652.endif 2653 2654.if ${MK_RESCUE} != "no" 2655# rescue includes programs that have build-tools targets 2656_rescue=rescue/rescue 2657.endif 2658 2659.if ${MK_TCSH} != "no" 2660_tcsh=bin/csh 2661.endif 2662.if ${MK_FILE} != "no" 2663_libmagic=lib/libmagic 2664.endif 2665 2666.if ${MK_PMC} != "no" 2667_jevents=lib/libpmc/pmu-events 2668.endif 2669 2670# kernel-toolchain skips _cleanobj, so handle cleaning up previous 2671# build-tools directories if needed. 2672.if ${MK_CLEAN} == "yes" && make(kernel-toolchain) 2673_bt_clean= ${CLEANDIR} 2674.endif 2675 2676.for _tool in \ 2677 ${_tcsh} \ 2678 bin/sh \ 2679 ${LOCAL_TOOL_DIRS} \ 2680 ${_jevents} \ 2681 lib/ncurses/tinfo \ 2682 ${_rescue} \ 2683 ${_share} \ 2684 usr.bin/awk \ 2685 ${_libmagic} \ 2686 usr.bin/vi/catalog 2687build-tools_${_tool}: .PHONY 2688 ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \ 2689 cd ${.CURDIR}/${_tool}; \ 2690 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \ 2691 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2692 ${MAKE} DIRPRFX=${_tool}/ build-tools 2693build-tools: build-tools_${_tool} 2694.endfor 2695 2696# 2697# kernel-tools: Build kernel-building tools 2698# 2699kernel-tools: .PHONY 2700 mkdir -p ${WORLDTMP}/usr 2701 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2702 -p ${WORLDTMP}/usr >/dev/null 2703 2704# 2705# cross-tools: All the tools needed to build the rest of the system after 2706# we get done with the earlier stages. It is the last set of tools needed 2707# to begin building the target binaries. 2708# 2709.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BUILD_WITH_STRICT_TMPPATH} != 0 2710.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 2711_btxld= usr.sbin/btxld 2712.endif 2713.endif 2714 2715# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 2716# resulting from missing bug fixes or ELF Toolchain updates. 2717.if ${MK_CDDL} != "no" 2718_dtrace_tools= cddl/lib/libctf cddl/lib/libspl cddl/usr.bin/ctfconvert \ 2719 cddl/usr.bin/ctfmerge 2720.endif 2721 2722# If we're given an XAS, don't build binutils. 2723.if ${XAS:M/*} == "" 2724.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2725_elftctools= lib/libelftc \ 2726 lib/libpe \ 2727 usr.bin/elfctl \ 2728 usr.bin/elfdump \ 2729 usr.bin/objcopy \ 2730 usr.bin/nm \ 2731 usr.bin/size \ 2732 usr.bin/strings 2733# These are not required by the build, but can be useful for developers who 2734# cross-build on a FreeBSD 10 host: 2735_elftctools+= usr.bin/addr2line 2736.endif 2737.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2738# If cross-building with an external binutils we still need to build strip for 2739# the target (for at least crunchide). 2740_elftctools= lib/libelftc \ 2741 lib/libpe \ 2742 usr.bin/elfctl \ 2743 usr.bin/elfdump \ 2744 usr.bin/objcopy 2745.endif 2746 2747.if ${MK_CLANG_BOOTSTRAP} != "no" 2748_clang= usr.bin/clang 2749.endif 2750.if ${MK_LLD_BOOTSTRAP} != "no" 2751_lld= usr.bin/clang/lld 2752.endif 2753.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no" 2754_clang_libs= lib/clang 2755.endif 2756.if ${MK_USB} != "no" 2757_usb_tools= stand/usb/tools 2758.endif 2759 2760.if ${BUILD_WITH_STRICT_TMPPATH} != 0 || defined(BOOTSTRAP_ALL_TOOLS) 2761_ar=usr.bin/ar 2762.endif 2763 2764cross-tools: .MAKE .PHONY 2765.for _tool in \ 2766 ${LOCAL_XTOOL_DIRS} \ 2767 ${_ar} \ 2768 ${_clang_libs} \ 2769 ${_clang} \ 2770 ${_lld} \ 2771 ${_elftctools} \ 2772 ${_dtrace_tools} \ 2773 ${_btxld} \ 2774 ${_usb_tools} 2775 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2776 cd ${.CURDIR}/${_tool}; \ 2777 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2778 ${MAKE} DIRPRFX=${_tool}/ all; \ 2779 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install 2780.endfor 2781 2782# 2783# native-xtools is the current target for qemu-user cross builds of ports 2784# via poudriere and the imgact_binmisc kernel module. 2785# This target merely builds a toolchan/sysroot, then builds the tools it wants 2786# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain 2787# already built. It then installs the static tools to NXBDESTDIR for Poudriere 2788# to pickup. 2789# 2790NXBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/ 2791NXBOBJTOP= ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH} 2792NXTP?= /nxb-bin 2793.if ${NXTP:N/*} 2794.error NXTP variable should be an absolute path 2795.endif 2796NXBDESTDIR?= ${DESTDIR}${NXTP} 2797 2798# This is the list of tools to be built/installed as static and where 2799# appropriate to build for the given TARGET.TARGET_ARCH. 2800NXBDIRS+= \ 2801 bin/cat \ 2802 bin/chmod \ 2803 bin/cp \ 2804 ${_tcsh} \ 2805 bin/echo \ 2806 bin/expr \ 2807 bin/hostname \ 2808 bin/ln \ 2809 bin/ls \ 2810 bin/mkdir \ 2811 bin/mv \ 2812 bin/ps \ 2813 bin/realpath \ 2814 bin/rm \ 2815 bin/rmdir \ 2816 bin/sh \ 2817 bin/sleep \ 2818 sbin/md5 \ 2819 sbin/sysctl \ 2820 usr.bin/addr2line \ 2821 usr.bin/ar \ 2822 usr.bin/awk \ 2823 usr.bin/basename \ 2824 usr.bin/bmake \ 2825 usr.bin/bzip2 \ 2826 usr.bin/cmp \ 2827 usr.bin/diff \ 2828 usr.bin/dirname \ 2829 usr.bin/objcopy \ 2830 usr.bin/env \ 2831 usr.bin/fetch \ 2832 usr.bin/find \ 2833 usr.bin/grep \ 2834 usr.bin/gzip \ 2835 usr.bin/head \ 2836 usr.bin/id \ 2837 usr.bin/lex \ 2838 usr.bin/limits \ 2839 usr.bin/mandoc \ 2840 usr.bin/mktemp \ 2841 usr.bin/mt \ 2842 usr.bin/nm \ 2843 usr.bin/patch \ 2844 usr.bin/readelf \ 2845 usr.bin/sed \ 2846 usr.bin/size \ 2847 usr.bin/sort \ 2848 usr.bin/strings \ 2849 usr.bin/tar \ 2850 usr.bin/touch \ 2851 usr.bin/tr \ 2852 usr.bin/true \ 2853 usr.bin/uniq \ 2854 usr.bin/unzip \ 2855 usr.bin/wc \ 2856 usr.bin/xargs \ 2857 usr.bin/xinstall \ 2858 usr.bin/xz \ 2859 usr.bin/yacc \ 2860 usr.sbin/chown 2861 2862SUBDIR_DEPEND_usr.bin/clang= lib/clang 2863.if ${MK_CLANG} != "no" 2864NXBDIRS+= lib/clang 2865NXBDIRS+= usr.bin/clang 2866.endif 2867# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs 2868# to be evaluated after NXBDIRS is set. 2869.if make(install) && !empty(SUBDIR_OVERRIDE) 2870SUBDIR= ${SUBDIR_OVERRIDE} 2871.endif 2872 2873NXBMAKEARGS+= \ 2874 OBJTOP=${NXBOBJTOP:Q} \ 2875 OBJROOT=${NXBOBJROOT:Q} \ 2876 -DNO_SHARED \ 2877 -DNO_CPU_CFLAGS \ 2878 -DNO_PIC \ 2879 MK_CASPER=no \ 2880 MK_CLANG_EXTRAS=no \ 2881 MK_CLANG_FORMAT=no \ 2882 MK_CLANG_FULL=no \ 2883 MK_CTF=no \ 2884 MK_DEBUG_FILES=no \ 2885 MK_HTML=no \ 2886 MK_LLDB=no \ 2887 MK_MAN=no \ 2888 MK_MAN_UTILS=yes \ 2889 MK_OFED=no \ 2890 MK_OPENSSH=no \ 2891 MK_PROFILE=no \ 2892 MK_RETPOLINE=no \ 2893 MK_SENDMAIL=no \ 2894 MK_SSP=no \ 2895 MK_TESTS=no \ 2896 MK_WERROR=no \ 2897 MK_ZFS=no 2898 2899NXBMAKEENV+= \ 2900 MAKEOBJDIRPREFIX= 2901 2902# This should match all of the knobs in lib/Makefile that it takes to avoid 2903# descending into lib/clang! 2904NXBTNOTOOLS= MK_CLANG=no MK_LLD=no MK_LLDB=no MK_LLVM_BINUTILS=no 2905 2906.if make(native-xtools*) && \ 2907 (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH)) 2908.error Missing NXB_TARGET / NXB_TARGET_ARCH 2909.endif 2910# For 'toolchain' we want to produce native binaries that themselves generate 2911# native binaries. 2912NXBTMAKE= ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \ 2913 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH} 2914# For 'everything' we want to produce native binaries (hence -target to 2915# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries. 2916# TARGET/TARGET_ARCH are still passed along from user. 2917# 2918# Use the toolchain we create as an external toolchain. 2919.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*} 2920NXBMAKE+= XCC="${XCC}" \ 2921 XCXX="${XCXX}" \ 2922 XCPP="${XCPP}" 2923.else 2924NXBMAKE+= XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \ 2925 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \ 2926 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp" 2927.endif 2928NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \ 2929 MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH} \ 2930 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \ 2931 TARGET_TRIPLE=${MACHINE_TRIPLE:Q} 2932# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to 2933# invoke a sub-make to reevaluate MK_CLANG, etc, for NXBDIRS. 2934NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}' 2935# Need to avoid the -isystem logic when using clang as an external toolchain 2936# even if the TARGET being built for wants GCC. 2937NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}' 2938native-xtools: .PHONY 2939 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj 2940 # Build the bootstrap/host/cross tools that produce native binaries 2941 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain 2942 # Populate includes/libraries sysroot that produce native binaries. 2943 # This is split out from 'toolchain' above mostly so that target LLVM 2944 # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without 2945 # polluting the cross-compiler build. The LLVM libs are skipped 2946 # here to avoid the problem but are kept in 'toolchain' so that 2947 # needed build tools are built. 2948 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes ${NXBTNOTOOLS} 2949 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries ${NXBTNOTOOLS} 2950.if !defined(NO_OBJWALK) 2951 ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj 2952.endif 2953 ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything 2954 @echo ">> native-xtools done. Use 'make native-xtools-install' to install to a given DESTDIR" 2955 2956native-xtools-install: .PHONY 2957 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 2958 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2959 -p ${NXBDESTDIR}/usr >/dev/null 2960 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2961 -p ${NXBDESTDIR}/usr/include >/dev/null 2962.for d in ${LIBCOMPAT_INCLUDE_DIRS} 2963 mkdir -p ${NXBDESTDIR}/usr/include/${d} 2964.endfor 2965 ${_+_}cd ${.CURDIR}; ${NXBMAKE} \ 2966 DESTDIR=${NXBDESTDIR} \ 2967 -DNO_ROOT \ 2968 install 2969 2970# 2971# hierarchy - ensure that all the needed directories are present 2972# 2973hierarchy hier: .MAKE .PHONY 2974 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs 2975 2976# 2977# libraries - build all libraries, and install them under ${DESTDIR}. 2978# 2979# The list of libraries with dependents (${_prebuild_libs}) and their 2980# interdependencies (__L) are built automatically by the 2981# ${.CURDIR}/tools/make_libdeps.sh script. 2982# 2983libraries: .MAKE .PHONY 2984 ${_+_}cd ${.CURDIR}; \ 2985 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 2986 ${MAKE} -f Makefile.inc1 _startup_libs; \ 2987 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 2988 ${MAKE} -f Makefile.inc1 _generic_libs 2989 2990# 2991# static libgcc.a prerequisite for shared libc 2992# 2993_prereq_libs= lib/libcompiler_rt 2994.if ${MK_SSP} != "no" 2995_prereq_libs+= lib/libssp_nonshared 2996.endif 2997.if ${MK_ASAN} != "no" 2998_prereq_libs+= lib/libclang_rt/asan 2999_prereq_libs+= lib/libclang_rt/asan-preinit 3000_prereq_libs+= lib/libclang_rt/asan_cxx 3001.endif 3002.if ${MK_UBSAN} != "no" 3003_prereq_libs+= lib/libclang_rt/ubsan_minimal 3004_prereq_libs+= lib/libclang_rt/ubsan_standalone 3005_prereq_libs+= lib/libclang_rt/ubsan_standalone_cxx 3006.endif 3007 3008# These dependencies are not automatically generated: 3009# 3010# lib/csu and lib/libc must be built before 3011# all shared libraries for ELF. 3012# 3013_startup_libs= lib/csu 3014_startup_libs+= lib/libc 3015_startup_libs+= lib/libc_nonshared 3016_startup_libs+= lib/libcxxrt 3017 3018_prereq_libs+= lib/libgcc_eh lib/libgcc_s 3019_startup_libs+= lib/libgcc_eh lib/libgcc_s 3020 3021lib/libgcc_s__L: lib/libc__L 3022lib/libgcc_s__L: lib/libc_nonshared__L 3023lib/libcxxrt__L: lib/libgcc_s__L 3024 3025_prebuild_libs= ${_kerberos5_lib_libasn1} \ 3026 ${_kerberos5_lib_libhdb} \ 3027 ${_kerberos5_lib_libheimbase} \ 3028 ${_kerberos5_lib_libheimntlm} \ 3029 ${_libsqlite3} \ 3030 ${_kerberos5_lib_libheimipcc} \ 3031 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 3032 ${_kerberos5_lib_libroken} \ 3033 ${_kerberos5_lib_libwind} \ 3034 lib/libbz2 ${_libcom_err} lib/libcrypt \ 3035 lib/libc++ \ 3036 lib/libelf lib/libexpat \ 3037 lib/libfigpar \ 3038 ${_lib_libgssapi} \ 3039 lib/libjail \ 3040 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 3041 lib/libzstd \ 3042 ${_lib_casper} \ 3043 lib/ncurses/tinfo \ 3044 lib/ncurses/ncurses \ 3045 lib/ncurses/form \ 3046 lib/libpam/libpam lib/libthr \ 3047 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 3048 lib/libgeom \ 3049 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 3050 ${_cddl_lib_libuutil} \ 3051 ${_cddl_lib_libavl} \ 3052 ${_cddl_lib_libicp} \ 3053 ${_cddl_lib_libicp_rescue} \ 3054 ${_cddl_lib_libspl} \ 3055 ${_cddl_lib_libtpool} \ 3056 ${_cddl_lib_libzfs_core} ${_cddl_lib_libzfs} \ 3057 ${_cddl_lib_libzutil} \ 3058 ${_cddl_lib_libctf} ${_cddl_lib_libzfsbootenv} \ 3059 lib/libufs \ 3060 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 3061 ${_secure_lib_libcrypto} ${_secure_lib_libssl} \ 3062 ${_lib_libldns} ${_secure_lib_libssh} 3063 3064.if ${MK_DIALOG} != "no" 3065_prebuild_libs+= gnu/lib/libdialog 3066gnu/lib/libdialog__L: lib/msun__L lib/ncurses/tinfo__L lib/ncurses/ncurses__L 3067.endif 3068 3069.if ${MK_GOOGLETEST} != "no" 3070_prebuild_libs+= lib/libregex 3071.endif 3072 3073lib/libgeom__L: lib/libexpat__L lib/libsbuf__L 3074lib/libkvm__L: lib/libelf__L 3075 3076.if ${MK_RADIUS_SUPPORT} != "no" 3077_lib_libradius= lib/libradius 3078.endif 3079 3080lib/ncurses/ncurses__L: lib/ncurses/tinfo__L 3081lib/ncurses/form__L: lib/ncurses/ncurses__L 3082 3083.if ${MK_OFED} != "no" 3084_prebuild_libs+= \ 3085 lib/ofed/libibverbs \ 3086 lib/ofed/libibmad \ 3087 lib/ofed/libibumad \ 3088 lib/ofed/complib \ 3089 lib/ofed/libmlx5 3090 3091lib/ofed/libibmad__L: lib/ofed/libibumad__L 3092lib/ofed/complib__L: lib/libthr__L 3093lib/ofed/libmlx5__L: lib/ofed/libibverbs__L lib/libthr__L 3094.endif 3095 3096.if ${MK_CASPER} != "no" 3097_lib_casper= lib/libcasper 3098.endif 3099 3100lib/libpjdlog__L: lib/libutil__L 3101lib/libcasper__L: lib/libnv__L 3102lib/liblzma__L: lib/libmd__L lib/libthr__L 3103lib/libzstd__L: lib/libthr__L 3104 3105_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} 3106.if ${MK_IPFILTER} != "no" 3107_generic_libs+= sbin/ipf/libipf 3108.endif 3109.for _DIR in ${LOCAL_LIB_DIRS} 3110.if ${_DIR} == ".WAIT" || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 3111_generic_libs+= ${_DIR} 3112.endif 3113.endfor 3114 3115lib/libtacplus__L: lib/libmd__L lib/libpam/libpam__L 3116 3117.if ${MK_CDDL} != "no" 3118_cddl_lib_libumem= cddl/lib/libumem 3119_cddl_lib_libnvpair= cddl/lib/libnvpair 3120_cddl_lib_libavl= cddl/lib/libavl 3121_cddl_lib_libuutil= cddl/lib/libuutil 3122_cddl_lib_libspl= cddl/lib/libspl 3123 3124cddl/lib/libavl__L: cddl/lib/libspl__L 3125cddl/lib/libnvpair__L: cddl/lib/libspl__L 3126cddl/lib/libuutil__L: cddl/lib/libavl__L cddl/lib/libspl__L 3127 3128.if ${MK_ZFS} != "no" 3129_cddl_lib_libicp= cddl/lib/libicp 3130_cddl_lib_libicp_rescue= cddl/lib/libicp_rescue 3131_cddl_lib_libtpool= cddl/lib/libtpool 3132_cddl_lib_libzutil= cddl/lib/libzutil 3133_cddl_lib_libzfs_core= cddl/lib/libzfs_core 3134_cddl_lib_libzfs= cddl/lib/libzfs 3135_cddl_lib_libzfsbootenv= cddl/lib/libzfsbootenv 3136 3137cddl/lib/libtpool__L: cddl/lib/libspl__L 3138 3139cddl/lib/libzutil__L: cddl/lib/libavl__L lib/libgeom__L lib/msun__L cddl/lib/libtpool__L 3140 3141cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L cddl/lib/libspl__L cddl/lib/libzutil__L 3142 3143cddl/lib/libzfs__L: cddl/lib/libzfs_core__L lib/msun__L lib/libutil__L 3144cddl/lib/libzfs__L: lib/libthr__L lib/libmd__L lib/libz__L cddl/lib/libumem__L 3145cddl/lib/libzfs__L: cddl/lib/libuutil__L cddl/lib/libavl__L lib/libgeom__L 3146cddl/lib/libzfs__L: cddl/lib/libnvpair__L cddl/lib/libzutil__L 3147cddl/lib/libzfs__L: secure/lib/libcrypto__L 3148 3149cddl/lib/libzfsbootenv__L: cddl/lib/libzfs__L 3150lib/libbe__L: cddl/lib/libzfs__L cddl/lib/libzfsbootenv__L 3151.endif 3152_cddl_lib_libctf= cddl/lib/libctf 3153_cddl_lib= cddl/lib 3154cddl/lib/libctf__L: lib/libz__L cddl/lib/libspl__L 3155.endif 3156# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db 3157_prebuild_libs+= lib/libprocstat lib/libproc lib/librtld_db 3158lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L 3159lib/libproc__L: lib/libprocstat__L 3160lib/librtld_db__L: lib/libprocstat__L 3161 3162.if ${MK_CRYPT} != "no" 3163.if ${MK_OPENSSL} != "no" 3164_secure_lib_libcrypto= secure/lib/libcrypto 3165_secure_lib_libssl= secure/lib/libssl 3166lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 3167secure/lib/libcrypto__L: lib/libthr__L 3168.if ${MK_LDNS} != "no" 3169_lib_libldns= lib/libldns 3170lib/libldns__L: secure/lib/libssl__L 3171.endif 3172.if ${MK_OPENSSH} != "no" 3173_secure_lib_libssh= secure/lib/libssh 3174secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 3175.if ${MK_LDNS} != "no" 3176secure/lib/libssh__L: lib/libldns__L 3177.endif 3178.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 3179secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ 3180 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 3181 lib/libmd__L kerberos5/lib/libroken__L 3182.endif 3183.endif 3184.endif 3185_secure_lib= secure/lib 3186.endif 3187 3188.if ${MK_KERBEROS} != "no" 3189kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L 3190kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3191 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ 3192 kerberos5/lib/libwind__L lib/libsqlite3__L 3193kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ 3194 kerberos5/lib/libroken__L lib/libcom_err__L 3195kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3196 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L 3197kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 3198 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ 3199 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ 3200 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L 3201kerberos5/lib/libroken__L: lib/libcrypt__L 3202kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L 3203kerberos5/lib/libheimbase__L: lib/libthr__L 3204kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L 3205.endif 3206 3207lib/libsqlite3__L: lib/libthr__L 3208 3209.if ${MK_GSSAPI} != "no" 3210_lib_libgssapi= lib/libgssapi 3211.endif 3212 3213.if ${MK_KERBEROS} != "no" 3214_kerberos5_lib= kerberos5/lib 3215_kerberos5_lib_libasn1= kerberos5/lib/libasn1 3216_kerberos5_lib_libhdb= kerberos5/lib/libhdb 3217_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase 3218_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 3219_kerberos5_lib_libhx509= kerberos5/lib/libhx509 3220_kerberos5_lib_libroken= kerberos5/lib/libroken 3221_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 3222_libsqlite3= lib/libsqlite3 3223_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc 3224_kerberos5_lib_libwind= kerberos5/lib/libwind 3225_libcom_err= lib/libcom_err 3226.endif 3227 3228.if ${MK_NIS} != "no" 3229_lib_libypclnt= lib/libypclnt 3230.endif 3231 3232.if ${MK_OPENSSL} == "no" 3233lib/libradius__L: lib/libmd__L 3234.endif 3235 3236lib/libproc__L: \ 3237 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} \ 3238 lib/libelf__L lib/librtld_db__L lib/libutil__L lib/libcxxrt__L 3239 3240.for _lib in ${_prereq_libs} 3241${_lib}__PL: .PHONY .MAKE 3242.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3243 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3244 cd ${.CURDIR}/${_lib}; \ 3245 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3246 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3247 DIRPRFX=${_lib}/ all; \ 3248 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 3249 DIRPRFX=${_lib}/ install 3250.endif 3251.endfor 3252 3253.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs} 3254${_lib}__L: .PHONY .MAKE 3255.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 3256 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 3257 cd ${.CURDIR}/${_lib}; \ 3258 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 3259 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \ 3260 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 3261.endif 3262.endfor 3263 3264_prereq_libs: ${_prereq_libs:S/$/__PL/} 3265_startup_libs: ${_startup_libs:S/$/__L/} 3266_prebuild_libs: ${_prebuild_libs:S/$/__L/} 3267_generic_libs: ${_generic_libs:S/$/__L/} 3268 3269# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from 3270# 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely 3271# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE 3272# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in 3273# parallel. This is safe for the world stage of buildworld though since it has 3274# already built libraries in a proper order and installed includes into 3275# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to 3276# avoid trashing a system if it crashes mid-install. 3277.if !make(all) || defined(_PARALLEL_SUBDIR_OK) 3278SUBDIR_PARALLEL= 3279.endif 3280 3281.include <bsd.subdir.mk> 3282 3283.if make(check-old) || make(check-old-dirs) || \ 3284 make(check-old-files) || make(check-old-libs) || \ 3285 make(delete-old) || make(delete-old-dirs) || \ 3286 make(delete-old-files) || make(delete-old-libs) || \ 3287 make(list-old-dirs) || make(list-old-files) || make(list-old-libs) 3288 3289# 3290# check for / delete old files section 3291# 3292 3293.include "ObsoleteFiles.inc" 3294 3295OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 3296else you can not start such an application. Consult UPDATING for more \ 3297information regarding how to cope with the removal/revision bump of a \ 3298specific library." 3299 3300.if !defined(BATCH_DELETE_OLD_FILES) 3301RM_I=-i 3302.else 3303RM_I=-fv 3304.endif 3305 3306list-old-files: .PHONY 3307 @cd ${.CURDIR}; \ 3308 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3309 -V "OLD_FILES:ts\n" -V "OLD_FILES:Musr/share/*.gz:R:ts\n" \ 3310 ${_ALL_libcompats:@v@-V "OLD_FILES:Mlib/*.so.*:S,^lib,usr/lib$v,:ts\n"@} \ 3311 ${_ALL_libcompats:@v@-V "OLD_FILES:Musr/lib/*:S,^usr/lib,usr/lib$v,:ts\n"@} | \ 3312 sort 3313 3314delete-old-files: .PHONY 3315 @echo ">>> Removing old files (only deletes safe to delete libs)" 3316# Ask for every old file if the user really wants to remove it. 3317# It's annoying, but better safe than sorry. 3318# NB: We cannot pass the list of OLD_FILES as a parameter because the 3319# argument list will get too long. Using .for/.endfor make "loops" will make 3320# the Makefile parser segfault. 3321 @exec 3<&0; \ 3322 cd ${.CURDIR}; \ 3323 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3324 while read file; do \ 3325 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3326 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3327 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3328 fi; \ 3329 for ext in debug symbols; do \ 3330 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3331 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3332 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3333 <&3; \ 3334 fi; \ 3335 done; \ 3336 done 3337# Remove catpages without corresponding manpages. 3338 @exec 3<&0; \ 3339 find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | sort | \ 3340 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3341 while read catpage; do \ 3342 read manpage; \ 3343 if [ ! -e "$${manpage}" ]; then \ 3344 rm ${RM_I} $${catpage} <&3; \ 3345 fi; \ 3346 done 3347 @echo ">>> Old files removed" 3348 3349check-old-files: .PHONY 3350 @echo ">>> Checking for old files" 3351 @cd ${.CURDIR}; \ 3352 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-files | \ 3353 while read file; do \ 3354 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3355 echo "${DESTDIR}/$${file}"; \ 3356 fi; \ 3357 for ext in debug symbols; do \ 3358 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3359 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3360 fi; \ 3361 done; \ 3362 done 3363# Check for catpages without corresponding manpages. 3364 @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 3365 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 3366 while read catpage; do \ 3367 read manpage; \ 3368 if [ ! -e "$${manpage}" ]; then \ 3369 echo $${catpage}; \ 3370 fi; \ 3371 done | sort 3372 3373list-old-libs: .PHONY 3374 @cd ${.CURDIR}; \ 3375 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3376 -V "OLD_LIBS:ts\n" -V "MOVED_LIBS:ts\n" \ 3377 ${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/*:S,^lib,usr/lib$v,:ts\n"@} \ 3378 ${_ALL_libcompats:@v@-V "OLD_LIBS:Musr/lib/*:S,^usr/lib,usr/lib$v,:ts\n"@} \ 3379 ${_ALL_libcompats:@v@-V "OLD_LIBS:Mlib/casper/*:S,^lib/casper,usr/lib$v,:ts\n"@} | \ 3380 sort 3381 3382delete-old-libs: .PHONY 3383 @echo ">>> Removing old libraries" 3384 @echo "${OLD_LIBS_MESSAGE}" | fmt 3385 @exec 3<&0; \ 3386 cd ${.CURDIR}; \ 3387 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3388 while read file; do \ 3389 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3390 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 3391 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 3392 fi; \ 3393 for ext in debug symbols; do \ 3394 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 3395 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3396 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 3397 <&3; \ 3398 fi; \ 3399 done; \ 3400 done 3401 @echo ">>> Old libraries removed" 3402 3403check-old-libs: .PHONY 3404 @echo ">>> Checking for old libraries" 3405 @cd ${.CURDIR}; \ 3406 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-libs | \ 3407 while read file; do \ 3408 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 3409 echo "${DESTDIR}/$${file}"; \ 3410 fi; \ 3411 for ext in debug symbols; do \ 3412 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 3413 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 3414 fi; \ 3415 done; \ 3416 done 3417 3418list-old-dirs: .PHONY 3419 @cd ${.CURDIR}; \ 3420 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 3421 -V OLD_DIRS | sed -E 's/[[:space:]]+/\n/g' | sort -r 3422 3423delete-old-dirs: .PHONY 3424 @echo ">>> Removing old directories" 3425 @cd ${.CURDIR}; \ 3426 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3427 while read dir; do \ 3428 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3429 rmdir -v "${DESTDIR}/$${dir}" || true; \ 3430 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3431 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3432 fi; \ 3433 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3434 rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \ 3435 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3436 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3437 fi; \ 3438 done 3439 @echo ">>> Old directories removed" 3440 3441check-old-dirs: .PHONY 3442 @echo ">>> Checking for old directories" 3443 @cd ${.CURDIR}; \ 3444 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} list-old-dirs | \ 3445 while read dir; do \ 3446 if [ -d "${DESTDIR}/$${dir}" ]; then \ 3447 echo "${DESTDIR}/$${dir}"; \ 3448 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 3449 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 3450 fi; \ 3451 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3452 echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \ 3453 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 3454 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 3455 fi; \ 3456 done 3457 3458delete-old: delete-old-files delete-old-dirs .PHONY 3459 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3460 3461check-old: check-old-files check-old-libs check-old-dirs .PHONY 3462 @echo "To remove old files and directories run '${MAKE_CMD} delete-old'." 3463 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 3464 3465.endif 3466 3467# 3468# showconfig - show build configuration. 3469# 3470# ignore lower case knobs (not for use with WITH*) 3471# 3472showconfig: .PHONY 3473 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH}; \ 3474 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep '^MK_[A-Z]' | sort -u 3475 3476.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 3477DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 3478 3479.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 3480.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF}) 3481FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 3482 '${KERNCONFDIR}/${KERNCONF}' ; echo 3483.endif 3484.endif 3485 3486.endif 3487 3488.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 3489DTBOUTPUTPATH= ${.CURDIR} 3490.endif 3491 3492# 3493# Build 'standalone' Device Tree Blob 3494# 3495builddtb: .PHONY 3496 @PATH=${TMPPATH:Q} MACHINE=${TARGET} \ 3497 sh ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 3498 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 3499 3500############### 3501 3502# cleanworld 3503# In the following, the first 'rm' in a series will usually remove all 3504# files and directories. If it does not, then there are probably some 3505# files with file flags set, so this unsets them and tries the 'rm' a 3506# second time. There are situations where this target will be cleaning 3507# some directories via more than one method, but that duplication is 3508# needed to correctly handle all the possible situations. Removing all 3509# files without file flags set in the first 'rm' instance saves time, 3510# because 'chflags' will need to operate on fewer files afterwards. 3511# 3512# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be 3513# created by bsd.obj.mk, except that we don't want to .include that file 3514# in this makefile. We don't do a cleandir walk if MK_AUTO_OBJ is yes 3515# since it is not possible for files to land in the wrong place. 3516# 3517.if make(cleanworld) 3518BW_CANONICALOBJDIR:=${OBJTOP}/ 3519.elif make(cleankernel) 3520BW_CANONICALOBJDIR:=${KRNLOBJDIR}/${KERNCONF}/ 3521.elif make(cleanuniverse) 3522BW_CANONICALOBJDIR:=${OBJROOT} 3523.if ${MK_UNIFIED_OBJDIR} == "no" 3524.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled. 3525.endif 3526.endif 3527cleanworld cleanuniverse cleankernel: .PHONY 3528.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \ 3529 ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA} 3530 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3531 -chflags -R 0 ${BW_CANONICALOBJDIR} 3532 -(cd ${BW_CANONICALOBJDIR} && rm -rf *) 3533.endif 3534.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \ 3535 (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA}) 3536.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} 3537 # To be safe in this case, fall back to a 'make cleandir' 3538 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir 3539.endif 3540.endif 3541 3542.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 3543XDEV_CPUTYPE?=${CPUTYPE} 3544.else 3545XDEV_CPUTYPE?=${TARGET_CPUTYPE} 3546.endif 3547 3548NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 3549 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 3550 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WERROR=no \ 3551 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 3552 CPUTYPE=${XDEV_CPUTYPE} 3553 3554XDDIR=${TARGET_ARCH}-freebsd 3555XDTP?=/usr/${XDDIR} 3556.if ${XDTP:N/*} 3557.error XDTP variable should be an absolute path 3558.endif 3559 3560CDBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/ 3561CDBOBJTOP= ${CDBOBJROOT}${XDDIR} 3562CDBENV= \ 3563 INSTALL="sh ${.CURDIR}/tools/install.sh" 3564CDENV= ${CDBENV} \ 3565 TOOLS_PREFIX=${XDTP} 3566CDMAKEARGS= \ 3567 OBJTOP=${CDBOBJTOP:Q} \ 3568 OBJROOT=${CDBOBJROOT:Q} 3569CD2MAKEARGS= ${CDMAKEARGS} 3570 3571.if ${WANT_COMPILER_TYPE} == gcc || \ 3572 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 3573# GCC requires -isystem and -L when using a cross-compiler. --sysroot 3574# won't set header path and -L is used to ensure the base library path 3575# is added before the port PREFIX library path. 3576CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib 3577# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler 3578# combined with --sysroot. 3579CD2CFLAGS+= -B${XDDESTDIR}/usr/lib 3580# Force using libc++ for external GCC. 3581.if defined(X_COMPILER_TYPE) && \ 3582 ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800 3583CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \ 3584 -nostdinc++ 3585.endif 3586.endif 3587CD2CFLAGS+= --sysroot=${XDDESTDIR}/ 3588CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \ 3589 CPP="${CPP} ${CD2CFLAGS}" \ 3590 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 3591 3592CDTMP= ${OBJTOP}/${XDDIR}/tmp 3593CDMAKE=${CDENV} PATH=${CDTMP:Q}/usr/bin:${PATH:Q} ${MAKE} ${CDMAKEARGS} ${NOFUN} 3594CD2MAKE=${CD2ENV} PATH=${CDTMP:Q}/usr/bin:${XDDESTDIR:Q}/usr/bin:${PATH:Q} \ 3595 ${MAKE} ${CD2MAKEARGS} ${NOFUN} 3596.if ${MK_META_MODE} != "no" 3597# Don't rebuild build-tools targets during normal build. 3598CD2MAKE+= BUILD_TOOLS_META=.NOMETA 3599.endif 3600XDDESTDIR=${DESTDIR}${XDTP} 3601 3602.ORDER: xdev-build xdev-install xdev-links 3603xdev: xdev-build xdev-install .PHONY 3604 3605.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 3606xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY 3607 3608_xb-worldtmp: .PHONY 3609 mkdir -p ${CDTMP}/usr 3610 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3611 -p ${CDTMP}/usr >/dev/null 3612 3613_xb-bootstrap-tools: .PHONY 3614.for _tool in \ 3615 ${_clang_tblgen} \ 3616 ${_yacc} 3617 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 3618 cd ${.CURDIR}/${_tool}; \ 3619 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3620 ${CDMAKE} DIRPRFX=${_tool}/ all; \ 3621 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 3622.endfor 3623 3624_xb-build-tools: .PHONY 3625 ${_+_}@cd ${.CURDIR}; \ 3626 ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools 3627 3628XDEVDIRS= \ 3629 ${_clang_libs} \ 3630 ${_lld} \ 3631 ${_elftctools} \ 3632 usr.bin/ar \ 3633 ${_clang} 3634 3635_xb-cross-tools: .PHONY 3636.for _tool in ${XDEVDIRS} 3637 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \ 3638 cd ${.CURDIR}/${_tool}; \ 3639 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3640 ${CDMAKE} DIRPRFX=${_tool}/ all 3641.endfor 3642 3643_xi-mtree: .PHONY 3644 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 3645 mkdir -p ${XDDESTDIR} 3646 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 3647 -p ${XDDESTDIR} >/dev/null 3648 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3649 -p ${XDDESTDIR}/usr >/dev/null 3650 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 3651 -p ${XDDESTDIR}/usr/include >/dev/null 3652.for d in ${LIBCOMPAT_INCLUDE_DIRS} 3653 mkdir -p ${XDDESTDIR}/usr/include/${d} 3654.endfor 3655.for libcompat in ${libcompats} 3656 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 3657 -p ${XDDESTDIR}/usr >/dev/null 3658.endfor 3659.if ${MK_TESTS} != "no" 3660 mkdir -p ${XDDESTDIR}${TESTSBASE} 3661 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 3662 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 3663.endif 3664 3665.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 3666xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY 3667 3668_xi-cross-tools: .PHONY 3669 @echo "_xi-cross-tools" 3670.for _tool in ${XDEVDIRS} 3671 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 3672 cd ${.CURDIR}/${_tool}; \ 3673 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 3674.endfor 3675 3676_xi-includes: .PHONY 3677.if !defined(NO_OBJWALK) 3678 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \ 3679 DESTDIR=${XDDESTDIR} 3680.endif 3681 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \ 3682 DESTDIR=${XDDESTDIR} 3683 3684_xi-libraries: .PHONY 3685 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 3686 DESTDIR=${XDDESTDIR} 3687 3688xdev-links: .PHONY 3689 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 3690 mkdir -p ../../../../usr/bin; \ 3691 for i in *; do \ 3692 ln -sf ../../${XDTP}/usr/bin/$$i \ 3693 ../../../../usr/bin/${XDDIR}-$$i; \ 3694 ln -sf ../../${XDTP}/usr/bin/$$i \ 3695 ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \ 3696 done 3697