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