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