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