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