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 1944legacy: .PHONY 1945.if ${BOOTSTRAPPING} < ${MINIMUM_SUPPORTED_OSREL} && ${BOOTSTRAPPING} != 0 1946 @echo "ERROR: Source upgrades from versions prior to ${MINIMUM_SUPPORTED_REL} are not supported."; \ 1947 false 1948.endif 1949 1950.for _tool in tools/build ${_elftoolchain_libs} 1951 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,all,install)"; \ 1952 cd ${.CURDIR}/${_tool}; \ 1953 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 1954 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy includes; \ 1955 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no all; \ 1956 ${MAKE} DIRPRFX=${_tool}/ MK_INCLUDES=no \ 1957 DESTDIR=${WORLDTMP}/legacy install 1958.endfor 1959 1960# 1961# bootstrap-tools: Build tools needed for compatibility. These are binaries that 1962# are built to build other binaries in the system. However, the focus of these 1963# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 1964# libraries, augmented by -legacy. 1965# 1966_bt= _bootstrap-tools 1967 1968.if ${MK_GAMES} != "no" 1969_strfile= usr.bin/fortune/strfile 1970.endif 1971 1972.if ${MK_GCC} != "no" && ${MK_CXX} != "no" 1973_gperf= gnu/usr.bin/gperf 1974.endif 1975 1976.if ${MK_VT} != "no" 1977_vtfontcvt= usr.bin/vtfontcvt 1978.endif 1979 1980.if ${BOOTSTRAPPING} < 1000033 1981_m4= usr.bin/m4 1982_lex= usr.bin/lex 1983 1984${_bt}-usr.bin/m4: ${_bt}-lib/libopenbsd 1985${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 1986.endif 1987 1988# r245440 mtree -N support added 1989# r313404 requires sha384.h for libnetbsd, added to libmd in r292782 1990.if ${BOOTSTRAPPING} < 1100093 1991_nmtree= lib/libmd \ 1992 lib/libnetbsd \ 1993 usr.sbin/nmtree 1994 1995${_bt}-lib/libnetbsd: ${_bt}-lib/libmd 1996${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 1997.endif 1998 1999# r246097: log addition login.conf.db, passwd, pwd.db, and spwd.db with cat -l 2000.if ${BOOTSTRAPPING} < 1000027 2001_cat= bin/cat 2002.endif 2003 2004# r277259 crunchide: Correct 64-bit section header offset 2005# r281674 crunchide: always include both 32- and 64-bit ELF support 2006.if ${BOOTSTRAPPING} < 1100078 2007_crunchide= usr.sbin/crunch/crunchide 2008.endif 2009 2010# r285986 crunchen: use STRIPBIN rather than STRIP 2011# 1100113: Support MK_AUTO_OBJ 2012# 1200006: META_MODE fixes 2013.if ${BOOTSTRAPPING} < 1100078 || \ 2014 (${MK_AUTO_OBJ} == "yes" && ${BOOTSTRAPPING} < 1100114) || \ 2015 (${MK_META_MODE} == "yes" && ${BOOTSTRAPPING} < 1200006) 2016_crunchgen= usr.sbin/crunch/crunchgen 2017.endif 2018 2019# r296926 -P keymap search path, MFC to stable/10 in r298297 2020.if ${BOOTSTRAPPING} < 1003501 || \ 2021 (${BOOTSTRAPPING} >= 1100000 && ${BOOTSTRAPPING} < 1100103) 2022_kbdcontrol= usr.sbin/kbdcontrol 2023.endif 2024 2025_yacc= lib/liby \ 2026 usr.bin/yacc 2027 2028${_bt}-usr.bin/yacc: ${_bt}-lib/liby 2029 2030.if ${MK_BSNMP} != "no" 2031_gensnmptree= usr.sbin/bsnmpd/gensnmptree 2032.endif 2033 2034# We need to build tblgen when we're building clang or lld, either as 2035# bootstrap tools, or as the part of the normal build. 2036.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" || \ 2037 ${MK_LLD_BOOTSTRAP} != "no" || ${MK_LLD} != "no" 2038_clang_tblgen= \ 2039 lib/clang/libllvmminimal \ 2040 usr.bin/clang/llvm-tblgen \ 2041 usr.bin/clang/clang-tblgen 2042 2043${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmminimal 2044${_bt}-usr.bin/clang/llvm-tblgen: ${_bt}-lib/clang/libllvmminimal 2045.endif 2046 2047# Default to building the GPL DTC, but build the BSDL one if users explicitly 2048# request it. 2049_dtc= usr.bin/dtc 2050.if ${MK_GPL_DTC} != "no" 2051_dtc= gnu/usr.bin/dtc 2052.endif 2053 2054.if ${MK_KERBEROS} != "no" 2055_kerberos5_bootstrap_tools= \ 2056 kerberos5/tools/make-roken \ 2057 kerberos5/lib/libroken \ 2058 kerberos5/lib/libvers \ 2059 kerberos5/tools/asn1_compile \ 2060 kerberos5/tools/slc \ 2061 usr.bin/compile_et 2062 2063.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 2064.endif 2065 2066${_bt}-usr.bin/mandoc: ${_bt}-lib/libopenbsd 2067 2068bootstrap-tools: .PHONY 2069 2070# Please document (add comment) why something is in 'bootstrap-tools'. 2071# Try to bound the building of the bootstrap-tool to just the 2072# FreeBSD versions that need the tool built at this stage of the build. 2073.for _tool in \ 2074 ${_clang_tblgen} \ 2075 ${_kerberos5_bootstrap_tools} \ 2076 ${_strfile} \ 2077 ${_gperf} \ 2078 ${_dtc} \ 2079 ${_cat} \ 2080 ${_kbdcontrol} \ 2081 usr.bin/lorder \ 2082 lib/libopenbsd \ 2083 usr.bin/mandoc \ 2084 usr.bin/rpcgen \ 2085 ${_yacc} \ 2086 ${_m4} \ 2087 ${_lex} \ 2088 usr.bin/xinstall \ 2089 ${_gensnmptree} \ 2090 usr.sbin/config \ 2091 ${_crunchide} \ 2092 ${_crunchgen} \ 2093 ${_nmtree} \ 2094 ${_vtfontcvt} \ 2095 usr.bin/localedef 2096${_bt}-${_tool}: .PHONY .MAKE 2097 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2098 cd ${.CURDIR}/${_tool}; \ 2099 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2100 ${MAKE} DIRPRFX=${_tool}/ all; \ 2101 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP}/legacy install 2102 2103bootstrap-tools: ${_bt}-${_tool} 2104.endfor 2105 2106# 2107# build-tools: Build special purpose build tools 2108# 2109.if !defined(NO_SHARE) && ${MK_SYSCONS} != "no" 2110_share= share/syscons/scrnmaps 2111.endif 2112 2113.if ${MK_GCC} != "no" 2114_gcc_tools= gnu/usr.bin/cc/cc_tools 2115.endif 2116 2117.if ${MK_RESCUE} != "no" 2118# rescue includes programs that have build-tools targets 2119_rescue=rescue/rescue 2120.endif 2121 2122.if ${MK_TCSH} != "no" 2123_tcsh=bin/csh 2124.endif 2125.if ${MK_FILE} != "no" 2126_libmagic=lib/libmagic 2127.endif 2128 2129.if ${MK_PMC} != "no" && \ 2130 (${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386") 2131_jevents=lib/libpmc/pmu-events 2132.endif 2133 2134# kernel-toolchain skips _cleanobj, so handle cleaning up previous 2135# build-tools directories if needed. 2136.if !defined(NO_CLEAN) && make(kernel-toolchain) 2137_bt_clean= ${CLEANDIR} 2138.endif 2139 2140.for _tool in \ 2141 ${_tcsh} \ 2142 bin/sh \ 2143 ${LOCAL_TOOL_DIRS} \ 2144 ${_jevents} \ 2145 lib/ncurses/ncurses \ 2146 lib/ncurses/ncursesw \ 2147 ${_rescue} \ 2148 ${_share} \ 2149 usr.bin/awk \ 2150 ${_libmagic} \ 2151 usr.bin/mkesdb_static \ 2152 usr.bin/mkcsmapper_static \ 2153 usr.bin/vi/catalog \ 2154 ${_gcc_tools} 2155build-tools_${_tool}: .PHONY 2156 ${_+_}@${ECHODIR} "===> ${_tool} (${_bt_clean:D${_bt_clean},}obj,build-tools)"; \ 2157 cd ${.CURDIR}/${_tool}; \ 2158 if [ -n "${_bt_clean}" ]; then ${MAKE} DIRPRFX=${_tool}/ ${_bt_clean}; fi; \ 2159 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2160 ${MAKE} DIRPRFX=${_tool}/ build-tools 2161build-tools: build-tools_${_tool} 2162.endfor 2163 2164# 2165# kernel-tools: Build kernel-building tools 2166# 2167kernel-tools: .PHONY 2168 mkdir -p ${WORLDTMP}/usr 2169 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2170 -p ${WORLDTMP}/usr >/dev/null 2171 2172# 2173# cross-tools: All the tools needed to build the rest of the system after 2174# we get done with the earlier stages. It is the last set of tools needed 2175# to begin building the target binaries. 2176# 2177.if ${TARGET_ARCH} != ${MACHINE_ARCH} 2178.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 2179_btxld= usr.sbin/btxld 2180.endif 2181.endif 2182 2183# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 2184# resulting from missing bug fixes or ELF Toolchain updates. 2185.if ${MK_CDDL} != "no" 2186_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \ 2187 cddl/usr.bin/ctfmerge 2188.endif 2189 2190# If we're given an XAS, don't build binutils. 2191.if ${XAS:M/*} == "" 2192.if ${MK_BINUTILS_BOOTSTRAP} != "no" 2193_binutils= gnu/usr.bin/binutils 2194.endif 2195.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2196_elftctools= lib/libelftc \ 2197 lib/libpe \ 2198 usr.bin/objcopy \ 2199 usr.bin/nm \ 2200 usr.bin/size \ 2201 usr.bin/strings 2202# These are not required by the build, but can be useful for developers who 2203# cross-build on a FreeBSD 10 host: 2204_elftctools+= usr.bin/addr2line 2205.endif 2206.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 2207# If cross-building with an external binutils we still need to build strip for 2208# the target (for at least crunchide). 2209_elftctools= lib/libelftc \ 2210 lib/libpe \ 2211 usr.bin/objcopy 2212.endif 2213 2214.if ${MK_CLANG_BOOTSTRAP} != "no" 2215_clang= usr.bin/clang 2216.endif 2217.if ${MK_LLD_BOOTSTRAP} != "no" 2218_lld= usr.bin/clang/lld 2219.endif 2220.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_LLD_BOOTSTRAP} != "no" 2221_clang_libs= lib/clang 2222.endif 2223.if ${MK_GCC_BOOTSTRAP} != "no" 2224_gcc= gnu/usr.bin/cc 2225.endif 2226.if ${MK_USB} != "no" 2227_usb_tools= stand/usb/tools 2228.endif 2229 2230cross-tools: .MAKE .PHONY 2231.for _tool in \ 2232 ${LOCAL_XTOOL_DIRS} \ 2233 ${_clang_libs} \ 2234 ${_clang} \ 2235 ${_lld} \ 2236 ${_binutils} \ 2237 ${_elftctools} \ 2238 ${_dtrace_tools} \ 2239 ${_gcc} \ 2240 ${_btxld} \ 2241 ${_usb_tools} 2242 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 2243 cd ${.CURDIR}/${_tool}; \ 2244 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} DIRPRFX=${_tool}/ obj; fi; \ 2245 ${MAKE} DIRPRFX=${_tool}/ all; \ 2246 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${WORLDTMP} install 2247.endfor 2248 2249# 2250# native-xtools is the current target for qemu-user cross builds of ports 2251# via poudriere and the imgact_binmisc kernel module. 2252# This target merely builds a toolchan/sysroot, then builds the tools it wants 2253# with the options it wants in a special MAKEOBJDIRPREFIX, using the toolchain 2254# already built. It then installs the static tools to NXBDESTDIR for Poudriere 2255# to pickup. 2256# 2257NXBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/nxb/ 2258NXBOBJTOP= ${NXBOBJROOT}${NXB_TARGET}.${NXB_TARGET_ARCH} 2259NXTP?= /nxb-bin 2260.if ${NXTP:N/*} 2261.error NXTP variable should be an absolute path 2262.endif 2263NXBDESTDIR?= ${DESTDIR}${NXTP} 2264 2265# This is the list of tools to be built/installed as static and where 2266# appropriate to build for the given TARGET.TARGET_ARCH. 2267NXBDIRS+= \ 2268 bin/cat \ 2269 bin/chmod \ 2270 bin/cp \ 2271 ${_tcsh} \ 2272 bin/echo \ 2273 bin/expr \ 2274 bin/hostname \ 2275 bin/ln \ 2276 bin/ls \ 2277 bin/mkdir \ 2278 bin/mv \ 2279 bin/ps \ 2280 bin/realpath \ 2281 bin/rm \ 2282 bin/rmdir \ 2283 bin/sh \ 2284 bin/sleep \ 2285 sbin/md5 \ 2286 sbin/sysctl \ 2287 usr.bin/addr2line \ 2288 usr.bin/ar \ 2289 usr.bin/awk \ 2290 usr.bin/basename \ 2291 usr.bin/bmake \ 2292 usr.bin/bzip2 \ 2293 usr.bin/cmp \ 2294 usr.bin/diff \ 2295 usr.bin/dirname \ 2296 usr.bin/objcopy \ 2297 usr.bin/env \ 2298 usr.bin/fetch \ 2299 usr.bin/find \ 2300 usr.bin/grep \ 2301 usr.bin/gzip \ 2302 usr.bin/id \ 2303 usr.bin/lex \ 2304 usr.bin/limits \ 2305 usr.bin/lorder \ 2306 usr.bin/mandoc \ 2307 usr.bin/mktemp \ 2308 usr.bin/mt \ 2309 usr.bin/nm \ 2310 usr.bin/patch \ 2311 usr.bin/readelf \ 2312 usr.bin/sed \ 2313 usr.bin/size \ 2314 usr.bin/sort \ 2315 usr.bin/strings \ 2316 usr.bin/tar \ 2317 usr.bin/touch \ 2318 usr.bin/tr \ 2319 usr.bin/true \ 2320 usr.bin/uniq \ 2321 usr.bin/unzip \ 2322 usr.bin/xargs \ 2323 usr.bin/xinstall \ 2324 usr.bin/xz \ 2325 usr.bin/yacc \ 2326 usr.sbin/chown 2327 2328SUBDIR_DEPEND_usr.bin/clang= lib/clang 2329.if ${MK_CLANG} != "no" 2330NXBDIRS+= lib/clang 2331NXBDIRS+= usr.bin/clang 2332.endif 2333.if ${MK_GCC} != "no" 2334NXBDIRS+= gnu/usr.bin/cc 2335.endif 2336.if ${MK_BINUTILS} != "no" 2337NXBDIRS+= gnu/usr.bin/binutils 2338.endif 2339# XXX: native-xtools passes along ${NXBDIRS} in SUBDIR_OVERRIDE that needs 2340# to be evaluated after NXBDIRS is set. 2341.if make(install) && !empty(SUBDIR_OVERRIDE) 2342SUBDIR= ${SUBDIR_OVERRIDE} 2343.endif 2344 2345NXBMAKEARGS+= \ 2346 OBJTOP=${NXBOBJTOP:Q} \ 2347 OBJROOT=${NXBOBJROOT:Q} \ 2348 MAKEOBJDIRPREFIX= \ 2349 -DNO_SHARED \ 2350 -DNO_CPU_CFLAGS \ 2351 -DNO_PIC \ 2352 SSP_CFLAGS= \ 2353 MK_CLANG_EXTRAS=no \ 2354 MK_CLANG_FULL=no \ 2355 MK_CTF=no \ 2356 MK_DEBUG_FILES=no \ 2357 MK_GDB=no \ 2358 MK_HTML=no \ 2359 MK_LLDB=no \ 2360 MK_MAN=no \ 2361 MK_MAN_UTILS=yes \ 2362 MK_OFED=no \ 2363 MK_OPENSSH=no \ 2364 MK_PROFILE=no \ 2365 MK_SENDMAIL=no \ 2366 MK_SVNLITE=no \ 2367 MK_TESTS=no \ 2368 MK_WARNS=no \ 2369 MK_ZFS=no 2370 2371.if make(native-xtools*) && \ 2372 (!defined(NXB_TARGET) || !defined(NXB_TARGET_ARCH)) 2373.error Missing NXB_TARGET / NXB_TARGET_ARCH 2374.endif 2375# For 'toolchain' we want to produce native binaries that themselves generate 2376# native binaries. 2377NXBTMAKE= ${NXBMAKEENV} ${MAKE} ${NXBMAKEARGS:N-DNO_PIC:N-DNO_SHARED} \ 2378 TARGET=${MACHINE} TARGET_ARCH=${MACHINE_ARCH} 2379# For 'everything' we want to produce native binaries (hence -target to 2380# be MACHINE) that themselves generate TARGET.TARGET_ARCH binaries. 2381# TARGET/TARGET_ARCH are still passed along from user. 2382# 2383# Use the toolchain we create as an external toolchain. 2384.if ${USING_SYSTEM_COMPILER} == "yes" || ${XCC:N${CCACHE_BIN}:M/*} 2385NXBMAKE+= XCC="${XCC}" \ 2386 XCXX="${XCXX}" \ 2387 XCPP="${XCPP}" 2388.else 2389NXBMAKE+= XCC="${NXBOBJTOP}/tmp/usr/bin/cc" \ 2390 XCXX="${NXBOBJTOP}/tmp/usr/bin/c++" \ 2391 XCPP="${NXBOBJTOP}/tmp/usr/bin/cpp" 2392.endif 2393NXBMAKE+= ${NXBMAKEENV} ${MAKE} -f Makefile.inc1 ${NXBMAKEARGS} \ 2394 TARGET=${NXB_TARGET} TARGET_ARCH=${NXB_TARGET_ARCH} \ 2395 TARGET_TRIPLE=${MACHINE_TRIPLE:Q} 2396# NXBDIRS is improperly based on MACHINE rather than NXB_TARGET. Need to 2397# invoke a sub-make to reevaluate MK_GCC, etc, for NXBDIRS. 2398NXBMAKE+= SUBDIR_OVERRIDE='$${NXBDIRS:M*}' 2399# Need to avoid the -isystem logic when using clang as an external toolchain 2400# even if the TARGET being built for wants GCC. 2401NXBMAKE+= WANT_COMPILER_TYPE='$${X_COMPILER_TYPE}' 2402native-xtools: .PHONY 2403 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _cleanobj MK_GCC=yes 2404 # Build the bootstrap/host/cross tools that produce native binaries 2405 # Pass along MK_GCC=yes to ensure GCC-needed build tools are built. 2406 # We don't quite know what the NXB_TARGET wants so just build it. 2407 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} kernel-toolchain MK_GCC=yes 2408 # Populate includes/libraries sysroot that produce native binaries. 2409 # This is split out from 'toolchain' above mostly so that target LLVM 2410 # libraries have a proper LLVM_DEFAULT_TARGET_TRIPLE without 2411 # polluting the cross-compiler build. The LLVM/GCC libs are skipped 2412 # here to avoid the problem but are kept in 'toolchain' so that 2413 # needed build tools are built. 2414 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _includes MK_CLANG=no MK_GCC=no 2415 ${_+_}cd ${.CURDIR}; ${NXBTMAKE} _libraries MK_CLANG=no MK_GCC=no 2416 # Clean out improper TARGET=MACHINE files 2417 ${_+_}cd ${.CURDIR}/gnu/usr.bin/cc/cc_tools; ${NXBTMAKE} cleandir 2418.if !defined(NO_OBJWALK) 2419 ${_+_}cd ${.CURDIR}; ${NXBMAKE} _obj 2420.endif 2421 ${_+_}cd ${.CURDIR}; ${NXBMAKE} everything 2422 @echo ">> native-xtools done. Use 'make native-xtools-install' to install to a given DESTDIR" 2423 2424native-xtools-install: .PHONY 2425 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 2426 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2427 -p ${NXBDESTDIR}/usr >/dev/null 2428 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2429 -p ${NXBDESTDIR}/usr/include >/dev/null 2430 ${_+_}cd ${.CURDIR}; ${NXBMAKE} \ 2431 DESTDIR=${NXBDESTDIR} \ 2432 -DNO_ROOT \ 2433 install 2434 2435# 2436# hierarchy - ensure that all the needed directories are present 2437# 2438hierarchy hier: .MAKE .PHONY 2439 ${_+_}cd ${.CURDIR}/etc; ${HMAKE} distrib-dirs 2440 2441# 2442# libraries - build all libraries, and install them under ${DESTDIR}. 2443# 2444# The list of libraries with dependents (${_prebuild_libs}) and their 2445# interdependencies (__L) are built automatically by the 2446# ${.CURDIR}/tools/make_libdeps.sh script. 2447# 2448libraries: .MAKE .PHONY 2449 ${_+_}cd ${.CURDIR}; \ 2450 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 2451 ${MAKE} -f Makefile.inc1 _startup_libs; \ 2452 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 2453 ${MAKE} -f Makefile.inc1 _generic_libs 2454 2455# 2456# static libgcc.a prerequisite for shared libc 2457# 2458_prereq_libs= lib/libcompiler_rt 2459.if ${MK_SSP} != "no" 2460_prereq_libs+= gnu/lib/libssp/libssp_nonshared 2461.endif 2462 2463# These dependencies are not automatically generated: 2464# 2465# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before 2466# all shared libraries for ELF. 2467# 2468_startup_libs= gnu/lib/csu 2469_startup_libs+= lib/csu 2470_startup_libs+= lib/libcompiler_rt 2471_startup_libs+= lib/libc 2472_startup_libs+= lib/libc_nonshared 2473.if ${MK_LIBCPLUSPLUS} != "no" 2474_startup_libs+= lib/libcxxrt 2475.endif 2476 2477.if ${MK_LLVM_LIBUNWIND} != "no" 2478_prereq_libs+= lib/libgcc_eh lib/libgcc_s 2479_startup_libs+= lib/libgcc_eh lib/libgcc_s 2480 2481lib/libgcc_s__L: lib/libc__L 2482lib/libgcc_s__L: lib/libc_nonshared__L 2483.if ${MK_LIBCPLUSPLUS} != "no" 2484lib/libcxxrt__L: lib/libgcc_s__L 2485.endif 2486 2487.else # MK_LLVM_LIBUNWIND == no 2488 2489_prereq_libs+= gnu/lib/libgcc 2490_startup_libs+= gnu/lib/libgcc 2491 2492gnu/lib/libgcc__L: lib/libc__L 2493gnu/lib/libgcc__L: lib/libc_nonshared__L 2494.if ${MK_LIBCPLUSPLUS} != "no" 2495lib/libcxxrt__L: gnu/lib/libgcc__L 2496.endif 2497.endif 2498 2499_prebuild_libs= ${_kerberos5_lib_libasn1} \ 2500 ${_kerberos5_lib_libhdb} \ 2501 ${_kerberos5_lib_libheimbase} \ 2502 ${_kerberos5_lib_libheimntlm} \ 2503 ${_libsqlite3} \ 2504 ${_kerberos5_lib_libheimipcc} \ 2505 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 2506 ${_kerberos5_lib_libroken} \ 2507 ${_kerberos5_lib_libwind} \ 2508 lib/libbz2 ${_libcom_err} lib/libcrypt \ 2509 lib/libelf lib/libexpat \ 2510 lib/libfigpar \ 2511 ${_lib_libgssapi} \ 2512 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 2513 ${_lib_casper} \ 2514 lib/ncurses/ncurses lib/ncurses/ncursesw \ 2515 lib/libopie lib/libpam/libpam ${_lib_libthr} \ 2516 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 2517 lib/libgeom \ 2518 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 2519 ${_cddl_lib_libuutil} \ 2520 ${_cddl_lib_libavl} \ 2521 ${_cddl_lib_libzfs_core} \ 2522 ${_cddl_lib_libctf} \ 2523 lib/libufs \ 2524 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 2525 ${_secure_lib_libcrypto} ${_lib_libldns} \ 2526 ${_secure_lib_libssh} ${_secure_lib_libssl} 2527 2528.if ${MK_GNUCXX} != "no" 2529_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++ 2530gnu/lib/libstdc++__L: lib/msun__L 2531gnu/lib/libsupc++__L: gnu/lib/libstdc++__L 2532.endif 2533 2534.if ${MK_DIALOG} != "no" 2535_prebuild_libs+= gnu/lib/libdialog 2536gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L 2537.endif 2538 2539.if ${MK_LIBCPLUSPLUS} != "no" 2540_prebuild_libs+= lib/libc++ 2541.endif 2542 2543lib/libgeom__L: lib/libexpat__L 2544lib/libkvm__L: lib/libelf__L 2545 2546.if ${MK_LIBTHR} != "no" 2547_lib_libthr= lib/libthr 2548.endif 2549 2550.if ${MK_RADIUS_SUPPORT} != "no" 2551_lib_libradius= lib/libradius 2552.endif 2553 2554.if ${MK_OFED} != "no" 2555_prebuild_libs+= \ 2556 lib/ofed/libibverbs \ 2557 lib/ofed/libibmad \ 2558 lib/ofed/libibumad \ 2559 lib/ofed/complib \ 2560 lib/ofed/libmlx5 2561 2562lib/ofed/libibmad__L: lib/ofed/libibumad__L 2563lib/ofed/complib__L: lib/libthr__L 2564lib/ofed/libmlx5__L: lib/ofed/libibverbs__L lib/libthr__L 2565.endif 2566 2567.if ${MK_CASPER} != "no" 2568_lib_casper= lib/libcasper 2569.endif 2570 2571lib/libpjdlog__L: lib/libutil__L 2572lib/libcasper__L: lib/libnv__L 2573lib/liblzma__L: lib/libthr__L 2574 2575_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib 2576.if ${MK_IPFILTER} != "no" 2577_generic_libs+= sbin/ipf/libipf 2578.endif 2579.for _DIR in ${LOCAL_LIB_DIRS} 2580.if ${_DIR} == ".WAIT" || (empty(_generic_libs:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile)) 2581_generic_libs+= ${_DIR} 2582.endif 2583.endfor 2584 2585lib/libopie__L lib/libtacplus__L: lib/libmd__L 2586 2587.if ${MK_CDDL} != "no" 2588_cddl_lib_libumem= cddl/lib/libumem 2589_cddl_lib_libnvpair= cddl/lib/libnvpair 2590_cddl_lib_libavl= cddl/lib/libavl 2591_cddl_lib_libuutil= cddl/lib/libuutil 2592.if ${MK_ZFS} != "no" 2593_cddl_lib_libzfs_core= cddl/lib/libzfs_core 2594cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L 2595.endif 2596_cddl_lib_libctf= cddl/lib/libctf 2597_cddl_lib= cddl/lib 2598cddl/lib/libctf__L: lib/libz__L 2599.endif 2600# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built 2601# on select architectures though (see cddl/lib/Makefile) 2602.if ${MACHINE_CPUARCH} != "sparc64" 2603_prebuild_libs+= lib/libprocstat lib/libproc lib/librtld_db 2604lib/libprocstat__L: lib/libelf__L lib/libkvm__L lib/libutil__L 2605lib/libproc__L: lib/libprocstat__L 2606lib/librtld_db__L: lib/libprocstat__L 2607.endif 2608 2609.if ${MK_CRYPT} != "no" 2610.if ${MK_OPENSSL} != "no" 2611_secure_lib_libcrypto= secure/lib/libcrypto 2612_secure_lib_libssl= secure/lib/libssl 2613lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 2614.if ${MK_LDNS} != "no" 2615_lib_libldns= lib/libldns 2616lib/libldns__L: secure/lib/libcrypto__L 2617.endif 2618.if ${MK_OPENSSH} != "no" 2619_secure_lib_libssh= secure/lib/libssh 2620secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 2621.if ${MK_LDNS} != "no" 2622secure/lib/libssh__L: lib/libldns__L 2623.endif 2624.if ${MK_GSSAPI} != "no" && ${MK_KERBEROS_SUPPORT} != "no" 2625secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ 2626 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 2627 lib/libmd__L kerberos5/lib/libroken__L 2628.endif 2629.endif 2630.endif 2631_secure_lib= secure/lib 2632.endif 2633 2634.if ${MK_KERBEROS} != "no" 2635kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L 2636kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2637 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ 2638 kerberos5/lib/libwind__L lib/libsqlite3__L 2639kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ 2640 kerberos5/lib/libroken__L lib/libcom_err__L 2641kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2642 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L 2643kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 2644 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ 2645 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ 2646 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L 2647kerberos5/lib/libroken__L: lib/libcrypt__L 2648kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L 2649kerberos5/lib/libheimbase__L: lib/libthr__L 2650kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L 2651.endif 2652 2653lib/libsqlite3__L: lib/libthr__L 2654 2655.if ${MK_GSSAPI} != "no" 2656_lib_libgssapi= lib/libgssapi 2657.endif 2658 2659.if ${MK_KERBEROS} != "no" 2660_kerberos5_lib= kerberos5/lib 2661_kerberos5_lib_libasn1= kerberos5/lib/libasn1 2662_kerberos5_lib_libhdb= kerberos5/lib/libhdb 2663_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase 2664_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 2665_kerberos5_lib_libhx509= kerberos5/lib/libhx509 2666_kerberos5_lib_libroken= kerberos5/lib/libroken 2667_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 2668_libsqlite3= lib/libsqlite3 2669_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc 2670_kerberos5_lib_libwind= kerberos5/lib/libwind 2671_libcom_err= lib/libcom_err 2672.endif 2673 2674.if ${MK_NIS} != "no" 2675_lib_libypclnt= lib/libypclnt 2676.endif 2677 2678.if ${MK_OPENSSL} == "no" 2679lib/libradius__L: lib/libmd__L 2680.endif 2681 2682lib/libproc__L: \ 2683 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L 2684.if ${MK_CXX} != "no" 2685.if ${MK_LIBCPLUSPLUS} != "no" 2686lib/libproc__L: lib/libcxxrt__L 2687.else # This implies MK_GNUCXX != "no"; see lib/libproc 2688lib/libproc__L: gnu/lib/libsupc++__L 2689.endif 2690.endif 2691 2692.for _lib in ${_prereq_libs} 2693${_lib}__PL: .PHONY .MAKE 2694.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 2695 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 2696 cd ${.CURDIR}/${_lib}; \ 2697 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 2698 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 2699 DIRPRFX=${_lib}/ all; \ 2700 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 2701 DIRPRFX=${_lib}/ install 2702.endif 2703.endfor 2704 2705.for _lib in ${_startup_libs} ${_prebuild_libs} ${_generic_libs} 2706${_lib}__L: .PHONY .MAKE 2707.if !defined(_MKSHOWCONFIG) && exists(${.CURDIR}/${_lib}) 2708 ${_+_}@${ECHODIR} "===> ${_lib} (obj,all,install)"; \ 2709 cd ${.CURDIR}/${_lib}; \ 2710 if [ -z "${NO_OBJWALK}" ]; then ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj; fi; \ 2711 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all; \ 2712 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 2713.endif 2714.endfor 2715 2716_prereq_libs: ${_prereq_libs:S/$/__PL/} 2717_startup_libs: ${_startup_libs:S/$/__L/} 2718_prebuild_libs: ${_prebuild_libs:S/$/__L/} 2719_generic_libs: ${_generic_libs:S/$/__L/} 2720 2721# Enable SUBDIR_PARALLEL when not calling 'make all', unless called from 2722# 'everything' with _PARALLEL_SUBDIR_OK set. This is because it is unlikely 2723# that running 'make all' from the top-level, especially with a SUBDIR_OVERRIDE 2724# or LOCAL_DIRS set, will have a reliable build if SUBDIRs are built in 2725# parallel. This is safe for the world stage of buildworld though since it has 2726# already built libraries in a proper order and installed includes into 2727# WORLDTMP. Special handling is done for SUBDIR ordering for 'install*' to 2728# avoid trashing a system if it crashes mid-install. 2729.if !make(all) || defined(_PARALLEL_SUBDIR_OK) 2730SUBDIR_PARALLEL= 2731.endif 2732 2733.include <bsd.subdir.mk> 2734 2735.if make(check-old) || make(check-old-dirs) || \ 2736 make(check-old-files) || make(check-old-libs) || \ 2737 make(delete-old) || make(delete-old-dirs) || \ 2738 make(delete-old-files) || make(delete-old-libs) 2739 2740# 2741# check for / delete old files section 2742# 2743 2744.include "ObsoleteFiles.inc" 2745 2746OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 2747else you can not start such an application. Consult UPDATING for more \ 2748information regarding how to cope with the removal/revision bump of a \ 2749specific library." 2750 2751.if !defined(BATCH_DELETE_OLD_FILES) 2752RM_I=-i 2753.else 2754RM_I=-v 2755.endif 2756 2757delete-old-files: .PHONY 2758 @echo ">>> Removing old files (only deletes safe to delete libs)" 2759# Ask for every old file if the user really wants to remove it. 2760# It's annoying, but better safe than sorry. 2761# NB: We cannot pass the list of OLD_FILES as a parameter because the 2762# argument list will get too long. Using .for/.endfor make "loops" will make 2763# the Makefile parser segfault. 2764 @exec 3<&0; \ 2765 cd ${.CURDIR}; \ 2766 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2767 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ 2768 while read file; do \ 2769 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2770 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 2771 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 2772 fi; \ 2773 for ext in debug symbols; do \ 2774 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 2775 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2776 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 2777 <&3; \ 2778 fi; \ 2779 done; \ 2780 done 2781# Remove catpages without corresponding manpages. 2782 @exec 3<&0; \ 2783 find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 2784 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 2785 while read catpage; do \ 2786 read manpage; \ 2787 if [ ! -e "$${manpage}" ]; then \ 2788 rm ${RM_I} $${catpage} <&3; \ 2789 fi; \ 2790 done 2791 @echo ">>> Old files removed" 2792 2793check-old-files: .PHONY 2794 @echo ">>> Checking for old files" 2795 @cd ${.CURDIR}; \ 2796 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2797 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ 2798 while read file; do \ 2799 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2800 echo "${DESTDIR}/$${file}"; \ 2801 fi; \ 2802 for ext in debug symbols; do \ 2803 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2804 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 2805 fi; \ 2806 done; \ 2807 done 2808# Check for catpages without corresponding manpages. 2809 @find ${DESTDIR}/usr/share/man/cat* ! -type d 2>/dev/null | \ 2810 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 2811 while read catpage; do \ 2812 read manpage; \ 2813 if [ ! -e "$${manpage}" ]; then \ 2814 echo $${catpage}; \ 2815 fi; \ 2816 done 2817 2818delete-old-libs: .PHONY 2819 @echo ">>> Removing old libraries" 2820 @echo "${OLD_LIBS_MESSAGE}" | fmt 2821 @exec 3<&0; \ 2822 cd ${.CURDIR}; \ 2823 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2824 -V OLD_LIBS | xargs -n1 | \ 2825 while read file; do \ 2826 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2827 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 2828 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 2829 fi; \ 2830 for ext in debug symbols; do \ 2831 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 2832 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2833 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 2834 <&3; \ 2835 fi; \ 2836 done; \ 2837 done 2838 @echo ">>> Old libraries removed" 2839 2840check-old-libs: .PHONY 2841 @echo ">>> Checking for old libraries" 2842 @cd ${.CURDIR}; \ 2843 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2844 -V OLD_LIBS | xargs -n1 | \ 2845 while read file; do \ 2846 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2847 echo "${DESTDIR}/$${file}"; \ 2848 fi; \ 2849 for ext in debug symbols; do \ 2850 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2851 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 2852 fi; \ 2853 done; \ 2854 done 2855 2856delete-old-dirs: .PHONY 2857 @echo ">>> Removing old directories" 2858 @cd ${.CURDIR}; \ 2859 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2860 -V OLD_DIRS | xargs -n1 | sort -r | \ 2861 while read dir; do \ 2862 if [ -d "${DESTDIR}/$${dir}" ]; then \ 2863 rmdir -v "${DESTDIR}/$${dir}" || true; \ 2864 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 2865 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 2866 fi; \ 2867 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 2868 rmdir -v "${DESTDIR}${DEBUGDIR}/$${dir}" || true; \ 2869 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 2870 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 2871 fi; \ 2872 done 2873 @echo ">>> Old directories removed" 2874 2875check-old-dirs: .PHONY 2876 @echo ">>> Checking for old directories" 2877 @cd ${.CURDIR}; \ 2878 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2879 -V OLD_DIRS | xargs -n1 | \ 2880 while read dir; do \ 2881 if [ -d "${DESTDIR}/$${dir}" ]; then \ 2882 echo "${DESTDIR}/$${dir}"; \ 2883 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 2884 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 2885 fi; \ 2886 if [ -d "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 2887 echo "${DESTDIR}${DEBUGDIR}/$${dir}"; \ 2888 elif [ -L "${DESTDIR}${DEBUGDIR}/$${dir}" ]; then \ 2889 echo "${DESTDIR}${DEBUGDIR}/$${dir} is a link, please remove everything manually."; \ 2890 fi; \ 2891 done 2892 2893delete-old: delete-old-files delete-old-dirs .PHONY 2894 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 2895 2896check-old: check-old-files check-old-libs check-old-dirs .PHONY 2897 @echo "To remove old files and directories run '${MAKE_CMD} delete-old'." 2898 @echo "To remove old libraries run '${MAKE_CMD} delete-old-libs'." 2899 2900.endif 2901 2902# 2903# showconfig - show build configuration. 2904# 2905showconfig: .PHONY 2906 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes; \ 2907 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1 UPDATE_DEPENDFILE=no NO_OBJ=yes) 2>&1 | grep ^MK_ | sort -u 2908 2909.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 2910DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 2911 2912.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 2913.if !defined(_MKSHOWCONFIG) && exists(${KERNCONFDIR}/${KERNCONF}) 2914FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 2915 '${KERNCONFDIR}/${KERNCONF}' ; echo 2916.endif 2917.endif 2918 2919.endif 2920 2921.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 2922DTBOUTPUTPATH= ${.CURDIR} 2923.endif 2924 2925# 2926# Build 'standalone' Device Tree Blob 2927# 2928builddtb: .PHONY 2929 @PATH=${TMPPATH} MACHINE=${TARGET} \ 2930 ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 2931 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 2932 2933############### 2934 2935# cleanworld 2936# In the following, the first 'rm' in a series will usually remove all 2937# files and directories. If it does not, then there are probably some 2938# files with file flags set, so this unsets them and tries the 'rm' a 2939# second time. There are situations where this target will be cleaning 2940# some directories via more than one method, but that duplication is 2941# needed to correctly handle all the possible situations. Removing all 2942# files without file flags set in the first 'rm' instance saves time, 2943# because 'chflags' will need to operate on fewer files afterwards. 2944# 2945# It is expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be 2946# created by bsd.obj.mk, except that we don't want to .include that file 2947# in this makefile. We don't do a cleandir walk if MK_AUTO_OBJ is yes 2948# since it is not possible for files to land in the wrong place. 2949# 2950.if make(cleanworld) 2951BW_CANONICALOBJDIR:=${OBJTOP}/ 2952.elif make(cleanuniverse) 2953BW_CANONICALOBJDIR:=${OBJROOT} 2954.if ${MK_UNIFIED_OBJDIR} == "no" 2955.error ${.TARGETS} only supported with WITH_UNIFIED_OBJDIR enabled. 2956.endif 2957.endif 2958cleanworld cleanuniverse: .PHONY 2959.if !empty(BW_CANONICALOBJDIR) && exists(${BW_CANONICALOBJDIR}) && \ 2960 ${.CURDIR:tA} != ${BW_CANONICALOBJDIR:tA} 2961 -rm -rf ${BW_CANONICALOBJDIR}* 2962 -chflags -R 0 ${BW_CANONICALOBJDIR} 2963 rm -rf ${BW_CANONICALOBJDIR}* 2964.endif 2965.if make(cleanworld) && ${MK_AUTO_OBJ} == "no" && \ 2966 (empty(BW_CANONICALOBJDIR) || ${.CURDIR:tA} == ${BW_CANONICALOBJDIR:tA}) 2967.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR} 2968 # To be safe in this case, fall back to a 'make cleandir' 2969 ${_+_}@cd ${.CURDIR}; ${MAKE} cleandir 2970.endif 2971.endif 2972 2973.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 2974XDEV_CPUTYPE?=${CPUTYPE} 2975.else 2976XDEV_CPUTYPE?=${TARGET_CPUTYPE} 2977.endif 2978 2979NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 2980 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 2981 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \ 2982 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 2983 CPUTYPE=${XDEV_CPUTYPE} 2984 2985XDDIR=${TARGET_ARCH}-freebsd 2986XDTP?=/usr/${XDDIR} 2987.if ${XDTP:N/*} 2988.error XDTP variable should be an absolute path 2989.endif 2990 2991CDBOBJROOT= ${OBJROOT}${MACHINE}.${MACHINE_ARCH}/xdev/ 2992CDBOBJTOP= ${CDBOBJROOT}${XDDIR} 2993CDBENV= \ 2994 INSTALL="sh ${.CURDIR}/tools/install.sh" 2995CDENV= ${CDBENV} \ 2996 TOOLS_PREFIX=${XDTP} 2997CDMAKEARGS= \ 2998 OBJTOP=${CDBOBJTOP:Q} \ 2999 OBJROOT=${CDBOBJROOT:Q} 3000CD2MAKEARGS= ${CDMAKEARGS} 3001 3002.if ${WANT_COMPILER_TYPE} == gcc || \ 3003 (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) 3004# GCC requires -isystem and -L when using a cross-compiler. --sysroot 3005# won't set header path and -L is used to ensure the base library path 3006# is added before the port PREFIX library path. 3007CD2CFLAGS+= -isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib 3008# GCC requires -B to find /usr/lib/crti.o when using a cross-compiler 3009# combined with --sysroot. 3010CD2CFLAGS+= -B${XDDESTDIR}/usr/lib 3011# Force using libc++ for external GCC. 3012.if defined(X_COMPILER_TYPE) && \ 3013 ${X_COMPILER_TYPE} == gcc && ${X_COMPILER_VERSION} >= 40800 3014CD2CXXFLAGS+= -isystem ${XDDESTDIR}/usr/include/c++/v1 -std=c++11 \ 3015 -nostdinc++ 3016.endif 3017.endif 3018CD2CFLAGS+= --sysroot=${XDDESTDIR}/ 3019CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CXXFLAGS} ${CD2CFLAGS}" \ 3020 CPP="${CPP} ${CD2CFLAGS}" \ 3021 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 3022 3023CDTMP= ${OBJTOP}/${XDDIR}/tmp 3024CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${CDMAKEARGS} ${NOFUN} 3025CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} \ 3026 ${MAKE} ${CD2MAKEARGS} ${NOFUN} 3027.if ${MK_META_MODE} != "no" 3028# Don't rebuild build-tools targets during normal build. 3029CD2MAKE+= BUILD_TOOLS_META=.NOMETA 3030.endif 3031XDDESTDIR=${DESTDIR}${XDTP} 3032 3033.ORDER: xdev-build xdev-install xdev-links 3034xdev: xdev-build xdev-install .PHONY 3035 3036.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 3037xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools .PHONY 3038 3039_xb-worldtmp: .PHONY 3040 mkdir -p ${CDTMP}/usr 3041 ${WORLDTMP_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3042 -p ${CDTMP}/usr >/dev/null 3043 3044_xb-bootstrap-tools: .PHONY 3045.for _tool in \ 3046 ${_clang_tblgen} \ 3047 ${_gperf} \ 3048 ${_yacc} 3049 ${_+_}@${ECHODIR} "===> ${_tool} (obj,all,install)"; \ 3050 cd ${.CURDIR}/${_tool}; \ 3051 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3052 ${CDMAKE} DIRPRFX=${_tool}/ all; \ 3053 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 3054.endfor 3055 3056_xb-build-tools: .PHONY 3057 ${_+_}@cd ${.CURDIR}; \ 3058 ${CDBENV} ${MAKE} ${CDMAKEARGS} -f Makefile.inc1 ${NOFUN} build-tools 3059 3060XDEVDIRS= \ 3061 ${_clang_libs} \ 3062 ${_lld} \ 3063 ${_binutils} \ 3064 ${_elftctools} \ 3065 usr.bin/ar \ 3066 ${_clang} \ 3067 ${_gcc} 3068 3069_xb-cross-tools: .PHONY 3070.for _tool in ${XDEVDIRS} 3071 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,all)"; \ 3072 cd ${.CURDIR}/${_tool}; \ 3073 if [ -z "${NO_OBJWALK}" ]; then ${CDMAKE} DIRPRFX=${_tool}/ obj; fi; \ 3074 ${CDMAKE} DIRPRFX=${_tool}/ all 3075.endfor 3076 3077_xi-mtree: .PHONY 3078 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 3079 mkdir -p ${XDDESTDIR} 3080 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 3081 -p ${XDDESTDIR} >/dev/null 3082 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 3083 -p ${XDDESTDIR}/usr >/dev/null 3084 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 3085 -p ${XDDESTDIR}/usr/include >/dev/null 3086.if defined(LIBCOMPAT) 3087 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.lib${libcompat}.dist \ 3088 -p ${XDDESTDIR}/usr >/dev/null 3089.endif 3090.if ${MK_TESTS} != "no" 3091 mkdir -p ${XDDESTDIR}${TESTSBASE} 3092 ${DESTDIR_MTREE} -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 3093 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 3094.endif 3095 3096.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 3097xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries .PHONY 3098 3099_xi-cross-tools: .PHONY 3100 @echo "_xi-cross-tools" 3101.for _tool in ${XDEVDIRS} 3102 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 3103 cd ${.CURDIR}/${_tool}; \ 3104 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 3105.endfor 3106 3107_xi-includes: .PHONY 3108.if !defined(NO_OBJWALK) 3109 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 _obj \ 3110 DESTDIR=${XDDESTDIR} 3111.endif 3112 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 includes \ 3113 DESTDIR=${XDDESTDIR} 3114 3115_xi-libraries: .PHONY 3116 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 3117 DESTDIR=${XDDESTDIR} 3118 3119xdev-links: .PHONY 3120 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 3121 mkdir -p ../../../../usr/bin; \ 3122 for i in *; do \ 3123 ln -sf ../../${XDTP}/usr/bin/$$i \ 3124 ../../../../usr/bin/${XDDIR}-$$i; \ 3125 ln -sf ../../${XDTP}/usr/bin/$$i \ 3126 ../../../../usr/bin/${XDDIR}${_REVISION}-$$i; \ 3127 done 3128