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