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,DEPEND,OBJ} 11# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel 12# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel 13# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel 14# -DNO_KERNELOBJ do not run ${MAKE} obj in ${MAKE} buildkernel 15# -DNO_PORTSUPDATE do not update ports in ${MAKE} update 16# -DNO_ROOT install without using root privilege 17# -DNO_DOCUPDATE do not update doc in ${MAKE} update 18# -DWITHOUT_CTF do not run the DTrace CTF conversion tools on built objects 19# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 20# LOCAL_ITOOLS="list of tools" to add additional tools to the ITOOLS list 21# LOCAL_LIB_DIRS="list of dirs" to add additional dirs to libraries target 22# LOCAL_MTREE="list of mtree files" to process to allow local directories 23# to be created before files are installed 24# LOCAL_TOOL_DIRS="list of dirs" to add additional dirs to the build-tools 25# list 26# METALOG="path to metadata log" to write permission and ownership 27# when NO_ROOT is set. (default: ${DESTDIR}/METALOG) 28# TARGET="machine" to crossbuild world for a different machine type 29# TARGET_ARCH= may be required when a TARGET supports multiple endians 30# BUILDENV_SHELL= shell to launch for the buildenv target (def:/bin/sh) 31# WORLD_FLAGS= additional flags to pass to make(1) during buildworld 32# KERNEL_FLAGS= additional flags to pass to make(1) during buildkernel 33# SUBDIR_OVERRIDE="list of dirs" to build rather than everything. 34# All libraries and includes, and some build tools will still build. 35 36# 37# The intended user-driven targets are: 38# buildworld - rebuild *everything*, including glue to help do upgrades 39# installworld- install everything built by "buildworld" 40# doxygen - build API documentation of the kernel 41# update - convenient way to update your source tree (eg: svn/svnup) 42# 43# Standard targets (not defined here) are documented in the makefiles in 44# /usr/share/mk. These include: 45# obj depend all install clean cleandepend cleanobj 46 47.if !defined(TARGET) || !defined(TARGET_ARCH) 48.error "Both TARGET and TARGET_ARCH must be defined." 49.endif 50 51.include "share/mk/src.opts.mk" 52.include <bsd.arch.inc.mk> 53.include <bsd.compiler.mk> 54 55# We must do lib/ and libexec/ before bin/ in case of a mid-install error to 56# keep the users system reasonably usable. For static->dynamic root upgrades, 57# we don't want to install a dynamic binary without rtld and the needed 58# libraries. More commonly, for dynamic root, we don't want to install a 59# binary that requires a newer library version that hasn't been installed yet. 60# This ordering is not a guarantee though. The only guarantee of a working 61# system here would require fine-grained ordering of all components based 62# on their dependencies. 63SRCDIR?= ${.CURDIR} 64.if !empty(SUBDIR_OVERRIDE) 65SUBDIR= ${SUBDIR_OVERRIDE} 66.else 67SUBDIR= lib libexec 68.if make(install*) 69# Ensure libraries are installed before progressing. 70SUBDIR+=.WAIT 71.endif 72SUBDIR+=bin 73.if ${MK_CDDL} != "no" 74SUBDIR+=cddl 75.endif 76SUBDIR+=gnu include 77.if ${MK_KERBEROS} != "no" 78SUBDIR+=kerberos5 79.endif 80.if ${MK_RESCUE} != "no" 81SUBDIR+=rescue 82.endif 83SUBDIR+=sbin 84.if ${MK_CRYPT} != "no" 85SUBDIR+=secure 86.endif 87.if !defined(NO_SHARE) 88SUBDIR+=share 89.endif 90SUBDIR+=sys usr.bin usr.sbin 91.if ${MK_TESTS} != "no" 92SUBDIR+= tests 93.endif 94.if ${MK_OFED} != "no" 95SUBDIR+=contrib/ofed 96.endif 97 98# Local directories are last, since it is nice to at least get the base 99# system rebuilt before you do them. 100.for _DIR in ${LOCAL_DIRS} 101.if exists(${.CURDIR}/${_DIR}/Makefile) 102SUBDIR+= ${_DIR} 103.endif 104.endfor 105# Add LOCAL_LIB_DIRS, but only if they will not be picked up as a SUBDIR 106# of a LOCAL_DIRS directory. This allows LOCAL_DIRS=foo and 107# LOCAL_LIB_DIRS=foo/lib to behave as expected. 108.for _DIR in ${LOCAL_DIRS:M*/} ${LOCAL_DIRS:N*/:S|$|/|} 109_REDUNDENT_LIB_DIRS+= ${LOCAL_LIB_DIRS:M${_DIR}*} 110.endfor 111.for _DIR in ${LOCAL_LIB_DIRS} 112.if empty(_REDUNDENT_LIB_DIRS:M${_DIR}) && exists(${.CURDIR}/${_DIR}/Makefile) 113SUBDIR+= ${_DIR} 114.else 115.warning ${_DIR} not added to SUBDIR list. See UPDATING 20141121. 116.endif 117.endfor 118 119# We must do etc/ last as it hooks into building the man whatis file 120# by calling 'makedb' in share/man. This is only relevant for 121# install/distribute so they build the whatis file after every manpage is 122# installed. 123.if make(install*) 124SUBDIR+=.WAIT 125.endif 126SUBDIR+=etc 127 128.endif # !empty(SUBDIR_OVERRIDE) 129 130.if defined(NOCLEAN) 131.warning NOCLEAN option is deprecated. Use NO_CLEAN instead. 132NO_CLEAN= ${NOCLEAN} 133.endif 134.if defined(NO_CLEANDIR) 135CLEANDIR= clean cleandepend 136.else 137CLEANDIR= cleandir 138.endif 139 140LOCAL_TOOL_DIRS?= 141 142BUILDENV_SHELL?=/bin/sh 143 144SVN?= /usr/local/bin/svn 145SVNFLAGS?= -r HEAD 146 147MAKEOBJDIRPREFIX?= /usr/obj 148.if !defined(OSRELDATE) 149.if exists(/usr/include/osreldate.h) 150OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 151 /usr/include/osreldate.h 152.else 153OSRELDATE= 0 154.endif 155.export OSRELDATE 156.endif 157 158# Set VERSION for CTFMERGE to use via the default CTFFLAGS=-L VERSION. 159.if !defined(VERSION) 160REVISION!= ${MAKE} -C ${SRCDIR}/release -V REVISION 161BRANCH!= ${MAKE} -C ${SRCDIR}/release -V BRANCH 162SRCRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 163 ${SRCDIR}/sys/sys/param.h 164VERSION= FreeBSD ${REVISION}-${BRANCH:C/-p[0-9]+$//} ${TARGET_ARCH} ${SRCRELDATE} 165.export VERSION 166.endif 167 168KNOWN_ARCHES?= aarch64/arm64 amd64 arm armeb/arm armv6/arm armv6hf/arm i386 i386/pc98 mips mipsel/mips mips64el/mips mips64/mips mipsn32el/mips mipsn32/mips powerpc powerpc64/powerpc sparc64 169.if ${TARGET} == ${TARGET_ARCH} 170_t= ${TARGET} 171.else 172_t= ${TARGET_ARCH}/${TARGET} 173.endif 174.for _t in ${_t} 175.if empty(KNOWN_ARCHES:M${_t}) 176.error Unknown target ${TARGET_ARCH}:${TARGET}. 177.endif 178.endfor 179 180.if ${TARGET} == ${MACHINE} 181TARGET_CPUTYPE?=${CPUTYPE} 182.else 183TARGET_CPUTYPE?= 184.endif 185 186.if !empty(TARGET_CPUTYPE) 187_TARGET_CPUTYPE=${TARGET_CPUTYPE} 188.else 189_TARGET_CPUTYPE=dummy 190.endif 191_CPUTYPE!= MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \ 192 -f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE 193.if ${_CPUTYPE} != ${_TARGET_CPUTYPE} 194.error CPUTYPE global should be set with ?=. 195.endif 196.if make(buildworld) 197BUILD_ARCH!= uname -p 198.if ${MACHINE_ARCH} != ${BUILD_ARCH} 199.error To cross-build, set TARGET_ARCH. 200.endif 201.endif 202.if ${MACHINE} == ${TARGET} && ${MACHINE_ARCH} == ${TARGET_ARCH} && !defined(CROSS_BUILD_TESTING) 203OBJTREE= ${MAKEOBJDIRPREFIX} 204.else 205OBJTREE= ${MAKEOBJDIRPREFIX}/${TARGET}.${TARGET_ARCH} 206.endif 207WORLDTMP= ${OBJTREE}${.CURDIR}/tmp 208BPATH= ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/bin 209XPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin 210STRICTTMPPATH= ${BPATH}:${XPATH} 211TMPPATH= ${STRICTTMPPATH}:${PATH} 212 213# 214# Avoid running mktemp(1) unless actually needed. 215# It may not be functional, e.g., due to new ABI 216# when in the middle of installing over this system. 217# 218.if make(distributeworld) || make(installworld) 219INSTALLTMP!= /usr/bin/mktemp -d -u -t install 220.endif 221 222# 223# Building a world goes through the following stages 224# 225# 1. legacy stage [BMAKE] 226# This stage is responsible for creating compatibility 227# shims that are needed by the bootstrap-tools, 228# build-tools and cross-tools stages. These are generally 229# APIs that tools from one of those three stages need to 230# build that aren't present on the host. 231# 1. bootstrap-tools stage [BMAKE] 232# This stage is responsible for creating programs that 233# are needed for backward compatibility reasons. They 234# are not built as cross-tools. 235# 2. build-tools stage [TMAKE] 236# This stage is responsible for creating the object 237# tree and building any tools that are needed during 238# the build process. Some programs are listed during 239# this phase because they build binaries to generate 240# files needed to build these programs. This stage also 241# builds the 'build-tools' target rather than 'all'. 242# 3. cross-tools stage [XMAKE] 243# This stage is responsible for creating any tools that 244# are needed for building the system. A cross-compiler is one 245# of them. This differs from build tools in two ways: 246# 1. the 'all' target is built rather than 'build-tools' 247# 2. these tools are installed into TMPPATH for stage 4. 248# 4. world stage [WMAKE] 249# This stage actually builds the world. 250# 5. install stage (optional) [IMAKE] 251# This stage installs a previously built world. 252# 253 254BOOTSTRAPPING?= 0 255 256# Common environment for world related stages 257CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ 258 MACHINE_ARCH=${TARGET_ARCH} \ 259 MACHINE=${TARGET} \ 260 CPUTYPE=${TARGET_CPUTYPE} 261.if ${MK_GROFF} != "no" 262CROSSENV+= GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \ 263 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \ 264 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac 265.endif 266.if defined(TARGET_CFLAGS) 267CROSSENV+= ${TARGET_CFLAGS} 268.endif 269 270# bootstrap-tools stage 271BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 272 PATH=${BPATH}:${PATH} \ 273 WORLDTMP=${WORLDTMP} \ 274 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 275# need to keep this in sync with targets/pseudo/bootstrap-tools/Makefile 276BSARGS= DESTDIR= \ 277 BOOTSTRAPPING=${OSRELDATE} \ 278 SSP_CFLAGS= \ 279 MK_HTML=no NO_LINT=yes MK_MAN=no \ 280 -DNO_PIC MK_PROFILE=no -DNO_SHARED \ 281 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 282 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ 283 MK_LLDB=no MK_TESTS=no \ 284 MK_INCLUDES=yes 285 286BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ 287 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 288 ${BSARGS} 289 290# build-tools stage 291TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ 292 ${BMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 293 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 294 DESTDIR= \ 295 BOOTSTRAPPING=${OSRELDATE} \ 296 SSP_CFLAGS= \ 297 -DNO_LINT \ 298 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 299 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ 300 MK_LLDB=no MK_TESTS=no 301 302# cross-tools stage 303XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ 304 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 305 MK_GDB=no MK_TESTS=no 306 307# kernel-tools stage 308KTMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 309 PATH=${BPATH}:${PATH} \ 310 WORLDTMP=${WORLDTMP} 311KTMAKE= TOOLS_PREFIX=${WORLDTMP} MAKEOBJDIRPREFIX=${WORLDTMP} \ 312 ${KTMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 \ 313 DESTDIR= \ 314 BOOTSTRAPPING=${OSRELDATE} \ 315 SSP_CFLAGS= \ 316 MK_HTML=no -DNO_LINT MK_MAN=no \ 317 -DNO_PIC MK_PROFILE=no -DNO_SHARED \ 318 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no 319 320# world stage 321WMAKEENV= ${CROSSENV} \ 322 _LDSCRIPTROOT= \ 323 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 324 PATH=${TMPPATH} 325 326# make hierarchy 327HMAKE= PATH=${TMPPATH} ${MAKE} LOCAL_MTREE=${LOCAL_MTREE:Q} 328.if defined(NO_ROOT) 329HMAKE+= PATH=${TMPPATH} METALOG=${METALOG} -DNO_ROOT 330.endif 331 332.if defined(CROSS_TOOLCHAIN) 333LOCALBASE?= /usr/local 334.include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" 335.endif 336.if defined(CROSS_TOOLCHAIN_PREFIX) 337CROSS_COMPILER_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 338CROSS_BINUTILS_PREFIX?=${CROSS_TOOLCHAIN_PREFIX} 339.endif 340 341# If we do not have a bootstrap binutils (because the in-tree one does not 342# support the target architecture), provide a default cross-binutils prefix. 343# This allows aarch64 builds, for example, to automatically use the 344# aarch64-binutils port or package. 345.if !make(showconfig) 346.if !empty(BROKEN_OPTIONS:MBINUTILS_BOOTSTRAP) && \ 347 !defined(CROSS_BINUTILS_PREFIX) 348CROSS_BINUTILS_PREFIX=/usr/local/${TARGET_ARCH}-freebsd/bin/ 349.if !exists(${CROSS_BINUTILS_PREFIX}) 350.error In-tree binutils does not support the ${TARGET_ARCH} architecture. Install the ${TARGET_ARCH}-binutils port or package or set CROSS_BINUTILS_PREFIX. 351.endif 352.endif 353.endif 354 355XCOMPILERS= CC CXX CPP 356.for COMPILER in ${XCOMPILERS} 357.if defined(CROSS_COMPILER_PREFIX) 358X${COMPILER}?= ${CROSS_COMPILER_PREFIX}${${COMPILER}} 359.else 360X${COMPILER}?= ${${COMPILER}} 361.endif 362.endfor 363XBINUTILS= AS AR LD NM OBJCOPY OBJDUMP RANLIB SIZE STRINGS 364.for BINUTIL in ${XBINUTILS} 365.if defined(CROSS_BINUTILS_PREFIX) && \ 366 exists(${CROSS_BINUTILS_PREFIX}${${BINUTIL}}) 367X${BINUTIL}?= ${CROSS_BINUTILS_PREFIX}${${BINUTIL}} 368.else 369X${BINUTIL}?= ${${BINUTIL}} 370.endif 371.endfor 372WMAKEENV+= CC="${XCC} ${XCFLAGS}" CXX="${XCXX} ${XCFLAGS} ${XCXXFLAGS}" \ 373 DEPFLAGS="${DEPFLAGS}" \ 374 CPP="${XCPP} ${XCFLAGS}" \ 375 AS="${XAS}" AR="${XAR}" LD="${XLD}" NM=${XNM} \ 376 OBJDUMP=${XOBJDUMP} OBJCOPY="${XOBJCOPY}" \ 377 RANLIB=${XRANLIB} STRINGS=${XSTRINGS} \ 378 SIZE="${XSIZE}" 379 380.if ${XCC:M/*} 381.if defined(CROSS_BINUTILS_PREFIX) 382# In the case of xdev-build tools, CROSS_BINUTILS_PREFIX won't be a 383# directory, but the compiler will look in the right place for it's 384# tools so we don't need to tell it where to look. 385.if exists(${CROSS_BINUTILS_PREFIX}) 386BFLAGS+= -B${CROSS_BINUTILS_PREFIX} 387.endif 388.else 389BFLAGS+= -B${WORLDTMP}/usr/bin 390.endif 391.if ${TARGET} == "arm" 392.if ${TARGET_ARCH:M*hf*} != "" 393TARGET_ABI= gnueabihf 394.else 395TARGET_ABI= gnueabi 396.endif 397.endif 398.if defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc 399XCFLAGS+= -isystem ${WORLDTMP}/usr/include -L${WORLDTMP}/usr/lib 400XCXXFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 -std=gnu++11 -L${WORLDTMP}/../lib/libc++ 401# XXX: DEPFLAGS is a workaround for not properly passing CXXFLAGS to sub-makes 402# due to CXX="${XCXX} ${XCXXFLAGS}". bsd.dep.mk does use CXXFLAGS when 403# building C++ files so this can come out if passing CXXFLAGS down is fixed. 404DEPFLAGS+= -I${WORLDTMP}/usr/include/c++/v1 405.else 406TARGET_ABI?= unknown 407TARGET_TRIPLE?= ${TARGET_ARCH:C/amd64/x86_64/}-${TARGET_ABI}-freebsd11.0 408XCFLAGS+= -target ${TARGET_TRIPLE} 409.endif 410XCFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} 411XCXXFLAGS+= --sysroot=${WORLDTMP} ${BFLAGS} 412.else 413.if defined(CROSS_BINUTILS_PREFIX) && exists(${CROSS_BINUTILS_PREFIX}) 414BFLAGS+= -B${CROSS_BINUTILS_PREFIX} 415XCFLAGS+= ${BFLAGS} 416XCXXFLAGS+= ${BFLAGS} 417.endif 418.endif # ${XCC:M/*} 419 420WMAKE= ${WMAKEENV} ${MAKE} ${WORLD_FLAGS} -f Makefile.inc1 DESTDIR=${WORLDTMP} 421 422.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "powerpc64" 423# 32 bit world 424LIB32_OBJTREE= ${OBJTREE}${.CURDIR}/world32 425LIB32TMP= ${OBJTREE}${.CURDIR}/lib32 426 427.if ${TARGET_ARCH} == "amd64" 428.if empty(TARGET_CPUTYPE) 429LIB32CPUFLAGS= -march=i686 -mmmx -msse -msse2 430.else 431LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} 432.endif 433LIB32WMAKEENV= MACHINE=i386 MACHINE_ARCH=i386 \ 434 MACHINE_CPU="i686 mmx sse sse2" 435LIB32WMAKEFLAGS= \ 436 AS="${XAS} --32" \ 437 LD="${XLD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ 438 OBJCOPY="${XOBJCOPY}" 439 440.elif ${TARGET_ARCH} == "powerpc64" 441.if empty(TARGET_CPUTYPE) 442LIB32CPUFLAGS= -mcpu=powerpc 443.else 444LIB32CPUFLAGS= -mcpu=${TARGET_CPUTYPE} 445.endif 446LIB32WMAKEENV= MACHINE=powerpc MACHINE_ARCH=powerpc 447LIB32WMAKEFLAGS= \ 448 LD="${XLD} -m elf32ppc_fbsd" \ 449 OBJCOPY="${XOBJCOPY}" 450.endif 451 452 453LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -DCOMPAT_32BIT \ 454 -isystem ${LIB32TMP}/usr/include/ \ 455 -L${LIB32TMP}/usr/lib32 \ 456 -B${LIB32TMP}/usr/lib32 457.if ${XCC:M/*} 458LIB32FLAGS+= --sysroot=${WORLDTMP} 459.endif 460 461# Yes, the flags are redundant. 462LIB32WMAKEENV+= MAKEOBJDIRPREFIX=${LIB32_OBJTREE} \ 463 _LDSCRIPTROOT=${LIB32TMP} \ 464 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 465 PATH=${TMPPATH} \ 466 LIBDIR=/usr/lib32 \ 467 SHLIBDIR=/usr/lib32 \ 468 DTRACE="${DTRACE} -32" 469LIB32WMAKEFLAGS+= CC="${XCC} ${LIB32FLAGS}" \ 470 CXX="${XCXX} ${LIB32FLAGS}" \ 471 DESTDIR=${LIB32TMP} \ 472 -DCOMPAT_32BIT \ 473 -DLIBRARIES_ONLY \ 474 -DNO_CPU_CFLAGS \ 475 MK_CTF=no \ 476 -DNO_LINT \ 477 MK_TESTS=no 478 479LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} ${LIB32WMAKEFLAGS} \ 480 MK_MAN=no MK_HTML=no 481LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*:N_LDSCRIPTROOT=*} \ 482 MK_TOOLCHAIN=no ${IMAKE_INSTALL} 483.endif 484 485IMAKEENV= ${CROSSENV:N_LDSCRIPTROOT=*} 486IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 \ 487 ${IMAKE_INSTALL} ${IMAKE_MTREE} 488.if empty(.MAKEFLAGS:M-n) 489IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ 490 LD_LIBRARY_PATH=${INSTALLTMP} \ 491 PATH_LOCALE=${INSTALLTMP}/locale 492IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh 493.else 494IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} 495.endif 496.if defined(DB_FROM_SRC) 497INSTALLFLAGS+= -N ${.CURDIR}/etc 498MTREEFLAGS+= -N ${.CURDIR}/etc 499.endif 500_INSTALL_DDIR= ${DESTDIR}/${DISTDIR} 501INSTALL_DDIR= ${_INSTALL_DDIR:S://:/:g:C:/$::} 502.if defined(NO_ROOT) 503METALOG?= ${DESTDIR}/${DISTDIR}/METALOG 504IMAKE+= -DNO_ROOT METALOG=${METALOG} 505INSTALLFLAGS+= -U -M ${METALOG} -D ${INSTALL_DDIR} 506MTREEFLAGS+= -W 507.endif 508.if defined(DB_FROM_SRC) || defined(NO_ROOT) 509IMAKE_INSTALL= INSTALL="install ${INSTALLFLAGS}" 510IMAKE_MTREE= MTREE_CMD="mtree ${MTREEFLAGS}" 511.endif 512 513# kernel stage 514KMAKEENV= ${WMAKEENV} 515KMAKE= ${KMAKEENV} ${MAKE} ${.MAKEFLAGS} ${KERNEL_FLAGS} KERNEL=${INSTKERNNAME} 516 517# 518# buildworld 519# 520# Attempt to rebuild the entire system, with reasonable chance of 521# success, regardless of how old your existing system is. 522# 523_worldtmp: .PHONY 524.if ${.CURDIR:C/[^,]//g} != "" 525# The m4 build of sendmail files doesn't like it if ',' is used 526# anywhere in the path of it's files. 527 @echo 528 @echo "*** Error: path to source tree contains a comma ','" 529 @echo 530 false 531.endif 532 @echo 533 @echo "--------------------------------------------------------------" 534 @echo ">>> Rebuilding the temporary build tree" 535 @echo "--------------------------------------------------------------" 536.if !defined(NO_CLEAN) 537 rm -rf ${WORLDTMP} 538.if defined(LIB32TMP) 539 rm -rf ${LIB32TMP} 540.endif 541.else 542 rm -rf ${WORLDTMP}/legacy/usr/include 543# XXX - These three can depend on any header file. 544 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c 545 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c 546 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c 547.endif 548.for _dir in \ 549 lib usr legacy/bin legacy/usr 550 mkdir -p ${WORLDTMP}/${_dir} 551.endfor 552 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 553 -p ${WORLDTMP}/legacy/usr >/dev/null 554.if ${MK_GROFF} != "no" 555 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.groff.dist \ 556 -p ${WORLDTMP}/legacy/usr >/dev/null 557.endif 558 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 559 -p ${WORLDTMP}/usr >/dev/null 560 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 561 -p ${WORLDTMP}/usr/include >/dev/null 562 ln -sf ${.CURDIR}/sys ${WORLDTMP} 563.if ${MK_DEBUG_FILES} != "no" 564 # We could instead disable debug files for these build stages 565 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 566 -p ${WORLDTMP}/legacy/usr/lib >/dev/null 567 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 568 -p ${WORLDTMP}/usr/lib >/dev/null 569.endif 570.if ${MK_LIB32} != "no" 571 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 572 -p ${WORLDTMP}/usr >/dev/null 573.if ${MK_DEBUG_FILES} != "no" 574 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 575 -p ${WORLDTMP}/legacy/usr/lib/debug/usr >/dev/null 576 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 577 -p ${WORLDTMP}/usr/lib/debug/usr >/dev/null 578.endif 579.endif 580.if ${MK_TESTS} != "no" 581 mkdir -p ${WORLDTMP}${TESTSBASE} 582 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 583 -p ${WORLDTMP}${TESTSBASE} >/dev/null 584.if ${MK_DEBUG_FILES} != "no" 585 mkdir -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} 586 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 587 -p ${WORLDTMP}/usr/lib/debug/${TESTSBASE} >/dev/null 588.endif 589.endif 590.for _mtree in ${LOCAL_MTREE} 591 mtree -deU -f ${.CURDIR}/${_mtree} -p ${WORLDTMP} > /dev/null 592.endfor 593_legacy: 594 @echo 595 @echo "--------------------------------------------------------------" 596 @echo ">>> stage 1.1: legacy release compatibility shims" 597 @echo "--------------------------------------------------------------" 598 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy 599_bootstrap-tools: 600 @echo 601 @echo "--------------------------------------------------------------" 602 @echo ">>> stage 1.2: bootstrap tools" 603 @echo "--------------------------------------------------------------" 604 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools 605_cleanobj: 606.if !defined(NO_CLEAN) 607 @echo 608 @echo "--------------------------------------------------------------" 609 @echo ">>> stage 2.1: cleaning up the object tree" 610 @echo "--------------------------------------------------------------" 611 ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR} 612.if defined(LIB32TMP) 613 ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR} 614.endif 615.endif 616_obj: 617 @echo 618 @echo "--------------------------------------------------------------" 619 @echo ">>> stage 2.2: rebuilding the object tree" 620 @echo "--------------------------------------------------------------" 621 ${_+_}cd ${.CURDIR}; ${WMAKE} obj 622_build-tools: 623 @echo 624 @echo "--------------------------------------------------------------" 625 @echo ">>> stage 2.3: build tools" 626 @echo "--------------------------------------------------------------" 627 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools 628_cross-tools: 629 @echo 630 @echo "--------------------------------------------------------------" 631 @echo ">>> stage 3: cross tools" 632 @echo "--------------------------------------------------------------" 633 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools 634 ${_+_}cd ${.CURDIR}; ${XMAKE} kernel-tools 635_includes: 636 @echo 637 @echo "--------------------------------------------------------------" 638 @echo ">>> stage 4.1: building includes" 639 @echo "--------------------------------------------------------------" 640# Special handling for SUBDIR_OVERRIDE in buildworld as they most likely need 641# headers from default SUBDIR. Do SUBDIR_OVERRIDE includes last. 642 ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ 643 buildincludes 644 ${_+_}cd ${.CURDIR}; ${WMAKE} SUBDIR_OVERRIDE= SHARED=symlinks \ 645 installincludes 646.if !empty(SUBDIR_OVERRIDE) && make(buildworld) 647 ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks buildincludes 648 ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks installincludes 649.endif 650_libraries: 651 @echo 652 @echo "--------------------------------------------------------------" 653 @echo ">>> stage 4.2: building libraries" 654 @echo "--------------------------------------------------------------" 655 ${_+_}cd ${.CURDIR}; \ 656 ${WMAKE} -DNO_FSCHG MK_HTML=no -DNO_LINT MK_MAN=no \ 657 MK_PROFILE=no MK_TESTS=no MK_TESTS_SUPPORT=${MK_TESTS} libraries 658_depend: 659 @echo 660 @echo "--------------------------------------------------------------" 661 @echo ">>> stage 4.3: make dependencies" 662 @echo "--------------------------------------------------------------" 663 ${_+_}cd ${.CURDIR}; ${WMAKE} depend 664everything: 665 @echo 666 @echo "--------------------------------------------------------------" 667 @echo ">>> stage 4.4: building everything" 668 @echo "--------------------------------------------------------------" 669 ${_+_}cd ${.CURDIR}; ${WMAKE} par-all 670.if defined(LIB32TMP) 671build32: .PHONY 672 @echo 673 @echo "--------------------------------------------------------------" 674 @echo ">>> stage 5.1: building 32 bit shim libraries" 675 @echo "--------------------------------------------------------------" 676 mkdir -p ${LIB32TMP}/usr/include 677 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 678 -p ${LIB32TMP}/usr >/dev/null 679 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 680 -p ${LIB32TMP}/usr/include >/dev/null 681 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 682 -p ${LIB32TMP}/usr >/dev/null 683.if ${MK_DEBUG_FILES} != "no" 684 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 685 -p ${LIB32TMP}/usr/lib >/dev/null 686 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 687 -p ${LIB32TMP}/usr/lib/debug/usr >/dev/null 688.endif 689 mkdir -p ${WORLDTMP} 690 ln -sf ${.CURDIR}/sys ${WORLDTMP} 691.for _t in obj includes 692 ${_+_}cd ${.CURDIR}/include; ${LIB32WMAKE} DIRPRFX=include/ ${_t} 693 ${_+_}cd ${.CURDIR}/lib; ${LIB32WMAKE} DIRPRFX=lib/ ${_t} 694.if ${MK_CDDL} != "no" 695 ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} DIRPRFX=cddl/lib/ ${_t} 696.endif 697 ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} DIRPRFX=gnu/lib/ ${_t} 698.if ${MK_CRYPT} != "no" 699 ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} DIRPRFX=secure/lib/ ${_t} 700.endif 701.if ${MK_KERBEROS} != "no" 702 ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} DIRPRFX=kerberos5/lib ${_t} 703.endif 704.endfor 705.for _dir in usr.bin/lex/lib 706 ${_+_}cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} DIRPRFX=${_dir}/ obj 707.endfor 708.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic 709 ${_+_}cd ${.CURDIR}/${_dir}; \ 710 WORLDTMP=${WORLDTMP} \ 711 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" \ 712 MAKEOBJDIRPREFIX=${LIB32_OBJTREE} ${MAKE} SSP_CFLAGS= DESTDIR= \ 713 DIRPRFX=${_dir}/ -DNO_LINT -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 714 build-tools 715.endfor 716 ${_+_}cd ${.CURDIR}; \ 717 ${LIB32WMAKE} -f Makefile.inc1 libraries 718.for _t in obj depend all 719 ${_+_}cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} \ 720 DIRPRFX=libexec/rtld-elf/ ${_t} 721 ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} \ 722 DIRPRFX=usr.bin/ldd ${_t} 723.endfor 724 725distribute32 install32: .MAKE .PHONY 726 ${_+_}cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 727.if ${MK_CDDL} != "no" 728 ${_+_}cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 729.endif 730 ${_+_}cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 731.if ${MK_CRYPT} != "no" 732 ${_+_}cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 733.endif 734.if ${MK_KERBEROS} != "no" 735 ${_+_}cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 736.endif 737 ${_+_}cd ${.CURDIR}/libexec/rtld-elf; \ 738 PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//} 739 ${_+_}cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} \ 740 ${.TARGET:S/32$//} 741.endif 742 743WMAKE_TGTS= 744WMAKE_TGTS+= _worldtmp _legacy 745.if empty(SUBDIR_OVERRIDE) 746WMAKE_TGTS+= _bootstrap-tools 747.endif 748WMAKE_TGTS+= _cleanobj _obj _build-tools _cross-tools 749WMAKE_TGTS+= _includes _libraries _depend everything 750.if defined(LIB32TMP) && ${MK_LIB32} != "no" && empty(SUBDIR_OVERRIDE) 751WMAKE_TGTS+= build32 752.endif 753 754buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 755.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 756 757buildworld_prologue: 758 @echo "--------------------------------------------------------------" 759 @echo ">>> World build started on `LC_ALL=C date`" 760 @echo "--------------------------------------------------------------" 761 762buildworld_epilogue: 763 @echo 764 @echo "--------------------------------------------------------------" 765 @echo ">>> World build completed on `LC_ALL=C date`" 766 @echo "--------------------------------------------------------------" 767 768# 769# We need to have this as a target because the indirection between Makefile 770# and Makefile.inc1 causes the correct PATH to be used, rather than a 771# modification of the current environment's PATH. In addition, we need 772# to quote multiword values. 773# 774buildenvvars: 775 @echo ${WMAKEENV:Q} ${.MAKE.EXPORTED:@v@$v=\"${$v}\"@} 776 777.if ${.TARGETS:Mbuildenv} 778.if ${.MAKEFLAGS:M-j} 779.error The buildenv target is incompatible with -j 780.endif 781.endif 782buildenv: 783 @echo Entering world for ${TARGET_ARCH}:${TARGET} 784 @cd ${.CURDIR} && env ${WMAKEENV} ${BUILDENV_SHELL} || true 785 786TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} 787toolchain: ${TOOLCHAIN_TGTS} 788kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries} 789 790# 791# installcheck 792# 793# Checks to be sure system is ready for installworld/installkernel. 794# 795installcheck: _installcheck_world _installcheck_kernel 796_installcheck_world: 797_installcheck_kernel: 798 799# 800# Require DESTDIR to be set if installing for a different architecture or 801# using the user/group database in the source tree. 802# 803.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} || \ 804 defined(DB_FROM_SRC) 805.if !make(distributeworld) 806_installcheck_world: __installcheck_DESTDIR 807_installcheck_kernel: __installcheck_DESTDIR 808__installcheck_DESTDIR: 809.if !defined(DESTDIR) || empty(DESTDIR) 810 @echo "ERROR: Please set DESTDIR!"; \ 811 false 812.endif 813.endif 814.endif 815 816.if !defined(DB_FROM_SRC) 817# 818# Check for missing UIDs/GIDs. 819# 820CHECK_UIDS= auditdistd 821CHECK_GIDS= audit 822.if ${MK_SENDMAIL} != "no" 823CHECK_UIDS+= smmsp 824CHECK_GIDS+= smmsp 825.endif 826.if ${MK_PF} != "no" 827CHECK_UIDS+= proxy 828CHECK_GIDS+= proxy authpf 829.endif 830.if ${MK_UNBOUND} != "no" 831CHECK_UIDS+= unbound 832CHECK_GIDS+= unbound 833.endif 834_installcheck_world: __installcheck_UGID 835__installcheck_UGID: 836.for uid in ${CHECK_UIDS} 837 @if ! `id -u ${uid} >/dev/null 2>&1`; then \ 838 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ 839 false; \ 840 fi 841.endfor 842.for gid in ${CHECK_GIDS} 843 @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ 844 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ 845 false; \ 846 fi 847.endfor 848.endif 849 850# 851# Required install tools to be saved in a scratch dir for safety. 852# 853.if ${MK_ZONEINFO} != "no" 854_zoneinfo= zic tzsetup 855.endif 856 857ITOOLS= [ awk cap_mkdb cat chflags chmod chown cmp cp \ 858 date echo egrep find grep id install ${_install-info} \ 859 ln make mkdir mtree mv pwd_mkdb \ 860 rm sed services_mkdb sh strip sysctl test true uname wc ${_zoneinfo} \ 861 ${LOCAL_ITOOLS} 862 863# Needed for share/man 864.if ${MK_MAN} != "no" 865ITOOLS+=makewhatis 866.endif 867 868# 869# distributeworld 870# 871# Distributes everything compiled by a `buildworld'. 872# 873# installworld 874# 875# Installs everything compiled by a 'buildworld'. 876# 877 878# Non-base distributions produced by the base system 879EXTRA_DISTRIBUTIONS= doc 880.if defined(LIB32TMP) && ${MK_LIB32} != "no" 881EXTRA_DISTRIBUTIONS+= lib32 882.endif 883.if ${MK_TESTS} != "no" 884EXTRA_DISTRIBUTIONS+= tests 885.endif 886 887DEBUG_DISTRIBUTIONS= 888.if ${MK_DEBUG_FILES} != "no" 889DEBUG_DISTRIBUTIONS+= base ${EXTRA_DISTRIBUTIONS:S,doc,,:S,tests,,} 890.endif 891 892MTREE_MAGIC?= mtree 2.0 893 894distributeworld installworld: _installcheck_world 895 mkdir -p ${INSTALLTMP} 896 progs=$$(for prog in ${ITOOLS}; do \ 897 if progpath=`which $$prog`; then \ 898 echo $$progpath; \ 899 else \ 900 echo "Required tool $$prog not found in PATH." >&2; \ 901 exit 1; \ 902 fi; \ 903 done); \ 904 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ 905 while read line; do \ 906 set -- $$line; \ 907 if [ "$$2 $$3" != "not found" ]; then \ 908 echo $$2; \ 909 else \ 910 echo "Required library $$1 not found." >&2; \ 911 exit 1; \ 912 fi; \ 913 done); \ 914 cp $$libs $$progs ${INSTALLTMP} 915 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale 916.if defined(NO_ROOT) 917 echo "#${MTREE_MAGIC}" > ${METALOG} 918.endif 919.if make(distributeworld) 920.for dist in ${EXTRA_DISTRIBUTIONS} 921 -mkdir ${DESTDIR}/${DISTDIR}/${dist} 922 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 923 -p ${DESTDIR}/${DISTDIR}/${dist} >/dev/null 924 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 925 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 926 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 927 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/include >/dev/null 928.if ${MK_DEBUG_FILES} != "no" 929 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 930 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib >/dev/null 931.endif 932.if ${MK_LIB32} != "no" 933 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 934 -p ${DESTDIR}/${DISTDIR}/${dist}/usr >/dev/null 935.if ${MK_DEBUG_FILES} != "no" 936 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 937 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/usr >/dev/null 938.endif 939.endif 940.if ${MK_TESTS} != "no" && ${dist} == "tests" 941 -mkdir -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} 942 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 943 -p ${DESTDIR}/${DISTDIR}/${dist}${TESTSBASE} >/dev/null 944.if ${MK_DEBUG_FILES} != "no" 945 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 946 -p ${DESTDIR}/${DISTDIR}/${dist}/usr/lib/debug/${TESTSBASE} >/dev/null 947.endif 948.endif 949.if defined(NO_ROOT) 950 ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.root.dist | \ 951 sed -e 's#^\./#./${dist}/#' >> ${METALOG} 952 ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.usr.dist | \ 953 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 954 ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.include.dist | \ 955 sed -e 's#^\./#./${dist}/usr/include/#' >> ${METALOG} 956.if ${MK_LIB32} != "no" 957 ${IMAKEENV} mtree -C -f ${.CURDIR}/etc/mtree/BSD.lib32.dist | \ 958 sed -e 's#^\./#./${dist}/usr/#' >> ${METALOG} 959.endif 960.endif 961.endfor 962 -mkdir ${DESTDIR}/${DISTDIR}/base 963 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 964 METALOG=${METALOG} ${IMAKE_INSTALL} ${IMAKE_MTREE} \ 965 DISTBASE=/base DESTDIR=${DESTDIR}/${DISTDIR}/base \ 966 LOCAL_MTREE=${LOCAL_MTREE:Q} distrib-dirs 967.endif 968 ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ 969 ${IMAKEENV} rm -rf ${INSTALLTMP} 970.if make(distributeworld) 971.for dist in ${EXTRA_DISTRIBUTIONS} 972 find ${DESTDIR}/${DISTDIR}/${dist} -mindepth 1 -empty -delete 973.endfor 974.if defined(NO_ROOT) 975.for dist in base ${EXTRA_DISTRIBUTIONS} 976 @# For each file that exists in this dist, print the corresponding 977 @# line from the METALOG. This relies on the fact that 978 @# a line containing only the filename will sort immediatly before 979 @# the relevant mtree line. 980 cd ${DESTDIR}/${DISTDIR}; \ 981 find ./${dist} | sort -u ${METALOG} - | \ 982 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 983 ${DESTDIR}/${DISTDIR}/${dist}.meta 984.endfor 985.for dist in ${DEBUG_DISTRIBUTIONS} 986 @# For each file that exists in this dist, print the corresponding 987 @# line from the METALOG. This relies on the fact that 988 @# a line containing only the filename will sort immediatly before 989 @# the relevant mtree line. 990 cd ${DESTDIR}/${DISTDIR}; \ 991 find ./${dist}/usr/lib/debug | sort -u ${METALOG} - | \ 992 awk 'BEGIN { print "#${MTREE_MAGIC}" } !/ type=/ { file = $$1 } / type=/ { if ($$1 == file) { sub(/^\.\/${dist}\//, "./"); print } }' > \ 993 ${DESTDIR}/${DISTDIR}/${dist}.debug.meta 994.endfor 995.endif 996.endif 997 998packageworld: 999.for dist in base ${EXTRA_DISTRIBUTIONS} 1000.if defined(NO_ROOT) 1001 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1002 tar cvf - --exclude usr/lib/debug \ 1003 @${DESTDIR}/${DISTDIR}/${dist}.meta | \ 1004 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz 1005.else 1006 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1007 tar cvf - --exclude usr/lib/debug . | \ 1008 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}.txz 1009.endif 1010.endfor 1011 1012.for dist in ${DEBUG_DISTRIBUTIONS} 1013. if defined(NO_ROOT) 1014 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1015 tar cvf - @${DESTDIR}/${DISTDIR}/${dist}.debug.meta | \ 1016 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz 1017. else 1018 ${_+_}cd ${DESTDIR}/${DISTDIR}/${dist}; \ 1019 tar cvLf - usr/lib/debug | \ 1020 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/${dist}-dbg.txz 1021. endif 1022.endfor 1023 1024# 1025# reinstall 1026# 1027# If you have a build server, you can NFS mount the source and obj directories 1028# and do a 'make reinstall' on the *client* to install new binaries from the 1029# most recent server build. 1030# 1031reinstall: .MAKE .PHONY 1032 @echo "--------------------------------------------------------------" 1033 @echo ">>> Making hierarchy" 1034 @echo "--------------------------------------------------------------" 1035 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 \ 1036 LOCAL_MTREE=${LOCAL_MTREE:Q} hierarchy 1037 @echo 1038 @echo "--------------------------------------------------------------" 1039 @echo ">>> Installing everything" 1040 @echo "--------------------------------------------------------------" 1041 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 1042.if defined(LIB32TMP) && ${MK_LIB32} != "no" 1043 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32 1044.endif 1045 1046redistribute: .MAKE .PHONY 1047 @echo "--------------------------------------------------------------" 1048 @echo ">>> Distributing everything" 1049 @echo "--------------------------------------------------------------" 1050 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 1051.if defined(LIB32TMP) && ${MK_LIB32} != "no" 1052 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \ 1053 DISTRIBUTION=lib32 1054.endif 1055 1056distrib-dirs: .MAKE .PHONY 1057 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1058 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1059 1060distribution: .MAKE .PHONY 1061 ${_+_}cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} \ 1062 ${IMAKE_INSTALL} ${IMAKE_MTREE} METALOG=${METALOG} ${.TARGET} 1063 ${_+_}cd ${.CURDIR}; ${CROSSENV} PATH=${TMPPATH} \ 1064 ${MAKE} -f Makefile.inc1 ${IMAKE_INSTALL} \ 1065 METALOG=${METALOG} installconfig 1066 1067# 1068# buildkernel and installkernel 1069# 1070# Which kernels to build and/or install is specified by setting 1071# KERNCONF. If not defined a GENERIC kernel is built/installed. 1072# Only the existing (depending TARGET) config files are used 1073# for building kernels and only the first of these is designated 1074# as the one being installed. 1075# 1076# Note that we have to use TARGET instead of TARGET_ARCH when 1077# we're in kernel-land. Since only TARGET_ARCH is (expected) to 1078# be set to cross-build, we have to make sure TARGET is set 1079# properly. 1080 1081.if defined(KERNFAST) 1082NO_KERNELCLEAN= t 1083NO_KERNELCONFIG= t 1084NO_KERNELDEPEND= t 1085NO_KERNELOBJ= t 1086# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 1087.if !defined(KERNCONF) && ${KERNFAST} != "1" 1088KERNCONF=${KERNFAST} 1089.endif 1090.endif 1091.if ${TARGET_ARCH} == "powerpc64" 1092KERNCONF?= GENERIC64 1093.else 1094KERNCONF?= GENERIC 1095.endif 1096INSTKERNNAME?= kernel 1097 1098KERNSRCDIR?= ${.CURDIR}/sys 1099KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 1100KRNLOBJDIR= ${OBJTREE}${KERNSRCDIR} 1101KERNCONFDIR?= ${KRNLCONFDIR} 1102 1103BUILDKERNELS= 1104INSTALLKERNEL= 1105.for _kernel in ${KERNCONF} 1106.if exists(${KERNCONFDIR}/${_kernel}) 1107BUILDKERNELS+= ${_kernel} 1108.if empty(INSTALLKERNEL) 1109INSTALLKERNEL= ${_kernel} 1110.endif 1111.endif 1112.endfor 1113 1114${WMAKE_TGTS:N_worldtmp:Nbuild32} ${.ALLTARGETS:M_*:N_worldtmp}: .MAKE .PHONY 1115 1116# 1117# buildkernel 1118# 1119# Builds all kernels defined by BUILDKERNELS. 1120# 1121buildkernel: .MAKE .PHONY 1122.if empty(BUILDKERNELS) 1123 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 1124 false 1125.endif 1126 @echo 1127.for _kernel in ${BUILDKERNELS} 1128 @echo "--------------------------------------------------------------" 1129 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 1130 @echo "--------------------------------------------------------------" 1131 @echo "===> ${_kernel}" 1132 mkdir -p ${KRNLOBJDIR} 1133.if !defined(NO_KERNELCONFIG) 1134 @echo 1135 @echo "--------------------------------------------------------------" 1136 @echo ">>> stage 1: configuring the kernel" 1137 @echo "--------------------------------------------------------------" 1138 cd ${KRNLCONFDIR}; \ 1139 PATH=${TMPPATH} \ 1140 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 1141 -I '${KERNCONFDIR}' '${KERNCONFDIR}/${_kernel}' 1142.endif 1143.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN) 1144 @echo 1145 @echo "--------------------------------------------------------------" 1146 @echo ">>> stage 2.1: cleaning up the object tree" 1147 @echo "--------------------------------------------------------------" 1148 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 1149.endif 1150.if !defined(NO_KERNELOBJ) 1151 @echo 1152 @echo "--------------------------------------------------------------" 1153 @echo ">>> stage 2.2: rebuilding the object tree" 1154 @echo "--------------------------------------------------------------" 1155 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 1156.endif 1157 @echo 1158 @echo "--------------------------------------------------------------" 1159 @echo ">>> stage 2.3: build tools" 1160 @echo "--------------------------------------------------------------" 1161 ${_+_}cd ${.CURDIR}; ${KTMAKE} kernel-tools 1162.if !defined(NO_KERNELDEPEND) 1163 @echo 1164 @echo "--------------------------------------------------------------" 1165 @echo ">>> stage 3.1: making dependencies" 1166 @echo "--------------------------------------------------------------" 1167 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ 1168.endif 1169 @echo 1170 @echo "--------------------------------------------------------------" 1171 @echo ">>> stage 3.2: building everything" 1172 @echo "--------------------------------------------------------------" 1173 ${_+_}cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 1174 @echo "--------------------------------------------------------------" 1175 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 1176 @echo "--------------------------------------------------------------" 1177.endfor 1178 1179# 1180# installkernel, etc. 1181# 1182# Install the kernel defined by INSTALLKERNEL 1183# 1184installkernel installkernel.debug \ 1185reinstallkernel reinstallkernel.debug: _installcheck_kernel 1186.if empty(INSTALLKERNEL) 1187 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1188 false 1189.endif 1190 @echo "--------------------------------------------------------------" 1191 @echo ">>> Installing kernel ${INSTALLKERNEL}" 1192 @echo "--------------------------------------------------------------" 1193 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1194 ${CROSSENV} PATH=${TMPPATH} \ 1195 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 1196.if ${BUILDKERNELS:[#]} > 1 1197.for _kernel in ${BUILDKERNELS:[2..-1]} 1198 @echo "--------------------------------------------------------------" 1199 @echo ">>> Installing kernel ${_kernel}" 1200 @echo "--------------------------------------------------------------" 1201 cd ${KRNLOBJDIR}/${_kernel}; \ 1202 ${CROSSENV} PATH=${TMPPATH} \ 1203 ${MAKE} ${IMAKE_INSTALL} KERNEL=${INSTKERNNAME}.${_kernel} ${.TARGET:S/kernel//} 1204.endfor 1205.endif 1206 1207distributekernel distributekernel.debug: 1208.if empty(INSTALLKERNEL) 1209 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 1210 false 1211.endif 1212 mkdir -p ${DESTDIR}/${DISTDIR} 1213.if defined(NO_ROOT) 1214 echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.premeta 1215.endif 1216 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 1217 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.premeta/} \ 1218 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} KERNEL=${INSTKERNNAME} \ 1219 DESTDIR=${INSTALL_DDIR}/kernel \ 1220 ${.TARGET:S/distributekernel/install/} 1221.if defined(NO_ROOT) 1222 sed -e 's|^./kernel|.|' ${DESTDIR}/${DISTDIR}/kernel.premeta > \ 1223 ${DESTDIR}/${DISTDIR}/kernel.meta 1224.endif 1225.if ${BUILDKERNELS:[#]} > 1 1226.for _kernel in ${BUILDKERNELS:[2..-1]} 1227.if defined(NO_ROOT) 1228 echo "#${MTREE_MAGIC}" > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta 1229.endif 1230 cd ${KRNLOBJDIR}/${_kernel}; \ 1231 ${IMAKEENV} ${IMAKE_INSTALL:S/METALOG/kernel.${_kernel}.premeta/} \ 1232 ${IMAKE_MTREE} PATH=${TMPPATH} ${MAKE} \ 1233 KERNEL=${INSTKERNNAME}.${_kernel} \ 1234 DESTDIR=${INSTALL_DDIR}/kernel.${_kernel} \ 1235 ${.TARGET:S/distributekernel/install/} 1236.if defined(NO_ROOT) 1237 sed -e 's|^./kernel|.|' \ 1238 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.premeta > \ 1239 ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta 1240.endif 1241.endfor 1242.endif 1243 1244packagekernel: 1245.if defined(NO_ROOT) 1246 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1247 tar cvf - @${DESTDIR}/${DISTDIR}/kernel.meta | \ 1248 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz 1249.if ${BUILDKERNELS:[#]} > 1 1250.for _kernel in ${BUILDKERNELS:[2..-1]} 1251 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1252 tar cvf - @${DESTDIR}/${DISTDIR}/kernel.${_kernel}.meta | \ 1253 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz 1254.endfor 1255.endif 1256.else 1257 cd ${DESTDIR}/${DISTDIR}/kernel; \ 1258 tar cvf - . | \ 1259 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.txz 1260.if ${BUILDKERNELS:[#]} > 1 1261.for _kernel in ${BUILDKERNELS:[2..-1]} 1262 cd ${DESTDIR}/${DISTDIR}/kernel.${_kernel}; \ 1263 tar cvf - . | \ 1264 ${XZ_CMD} > ${DESTDIR}/${DISTDIR}/kernel.${_kernel}.txz 1265.endfor 1266.endif 1267.endif 1268 1269# 1270# doxygen 1271# 1272# Build the API documentation with doxygen 1273# 1274doxygen: .PHONY 1275 @if [ ! -x `/usr/bin/which doxygen` ]; then \ 1276 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 1277 exit 1; \ 1278 fi 1279 ${_+_}cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all 1280 1281# 1282# update 1283# 1284# Update the source tree(s), by running svn/svnup to update to the 1285# latest copy. 1286# 1287update: 1288.if (defined(CVS_UPDATE) || defined(SUP_UPDATE)) && !defined(SVN_UPDATE) 1289 @echo "--------------------------------------------------------------" 1290 @echo "CVS_UPDATE and SUP_UPDATE are no longer supported." 1291 @echo "Please see: https://wiki.freebsd.org/CvsIsDeprecated" 1292 @echo "--------------------------------------------------------------" 1293 @exit 1 1294.endif 1295.if defined(SVN_UPDATE) 1296 @echo "--------------------------------------------------------------" 1297 @echo ">>> Updating ${.CURDIR} using Subversion" 1298 @echo "--------------------------------------------------------------" 1299 @(cd ${.CURDIR} && ${SVN} update ${SVNFLAGS}) 1300.endif 1301 1302# 1303# ------------------------------------------------------------------------ 1304# 1305# From here onwards are utility targets used by the 'make world' and 1306# related targets. If your 'world' breaks, you may like to try to fix 1307# the problem and manually run the following targets to attempt to 1308# complete the build. Beware, this is *not* guaranteed to work, you 1309# need to have a pretty good grip on the current state of the system 1310# to attempt to manually finish it. If in doubt, 'make world' again. 1311# 1312 1313# 1314# legacy: Build compatibility shims for the next three targets. This is a 1315# minimal set of tools and shims necessary to compensate for older systems 1316# which don't have the APIs required by the targets built in bootstrap-tools, 1317# build-tools or cross-tools. 1318# 1319 1320# ELF Tool Chain libraries are needed for ELF tools and dtrace tools. 1321.if ${BOOTSTRAPPING} < 1100006 1322_elftoolchain_libs= lib/libelf lib/libdwarf 1323.endif 1324 1325legacy: 1326.if ${BOOTSTRAPPING} < 800107 && ${BOOTSTRAPPING} != 0 1327 @echo "ERROR: Source upgrades from versions prior to 8.0 are not supported."; \ 1328 false 1329.endif 1330.for _tool in tools/build ${_elftoolchain_libs} 1331 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \ 1332 cd ${.CURDIR}/${_tool} && \ 1333 ${MAKE} DIRPRFX=${_tool}/ obj && \ 1334 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes && \ 1335 ${MAKE} DIRPRFX=${_tool}/ depend && \ 1336 ${MAKE} DIRPRFX=${_tool}/ all && \ 1337 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 1338.endfor 1339 1340# 1341# bootstrap-tools: Build tools needed for compatibility. These are binaries that 1342# are built to build other binaries in the system. However, the focus of these 1343# binaries is usually quite narrow. Bootstrap tools use the host's compiler and 1344# libraries, augmented by -legacy. 1345# 1346_bt= _bootstrap-tools 1347 1348.if ${MK_GAMES} != "no" 1349_strfile= usr.bin/fortune/strfile 1350.endif 1351 1352.if ${MK_GCC} != "no" && ${MK_CXX} != "no" 1353_gperf= gnu/usr.bin/gperf 1354.endif 1355 1356.if ${MK_GROFF} != "no" 1357_groff= gnu/usr.bin/groff \ 1358 usr.bin/soelim 1359.endif 1360 1361.if ${MK_VT} != "no" 1362_vtfontcvt= usr.bin/vtfontcvt 1363.endif 1364 1365.if ${BOOTSTRAPPING} < 900002 1366_sed= usr.bin/sed 1367.endif 1368 1369.if ${BOOTSTRAPPING} < 1000002 1370_libohash= lib/libohash 1371_m4= usr.bin/m4 1372 1373${_bt}-usr.bin/m4: ${_bt}-lib/libohash 1374.endif 1375 1376.if ${BOOTSTRAPPING} < 1000026 1377_nmtree= lib/libnetbsd \ 1378 usr.sbin/nmtree 1379 1380${_bt}-usr.sbin/nmtree: ${_bt}-lib/libnetbsd 1381.endif 1382 1383.if ${BOOTSTRAPPING} < 1000027 1384_cat= bin/cat 1385.endif 1386 1387.if ${BOOTSTRAPPING} < 1000033 1388_lex= usr.bin/lex 1389 1390${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4 1391.endif 1392 1393# r277259 crunchide: Correct 64-bit section header offset 1394# r281674 crunchide: always include both 32- and 64-bit ELF support 1395# r285986 crunchen: use STRIPBIN rather than STRIP 1396.if ${BOOTSTRAPPING} < 1100078 1397_crunch= usr.sbin/crunch 1398.endif 1399 1400.if ${BOOTSTRAPPING} >= 900040 && ${BOOTSTRAPPING} < 900041 1401_awk= usr.bin/awk 1402.endif 1403 1404_yacc= lib/liby \ 1405 usr.bin/yacc 1406 1407${_bt}-usr.bin/yacc: ${_bt}-lib/liby 1408 1409.if ${MK_BSNMP} != "no" 1410_gensnmptree= usr.sbin/bsnmpd/gensnmptree 1411.endif 1412 1413# We need to build tblgen when we're building clang either as 1414# the bootstrap compiler, or as the part of the normal build. 1415.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no" 1416_clang_tblgen= \ 1417 lib/clang/libllvmsupport \ 1418 lib/clang/libllvmtablegen \ 1419 usr.bin/clang/tblgen \ 1420 usr.bin/clang/clang-tblgen 1421 1422${_bt}-usr.bin/clang/clang-tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport 1423${_bt}-usr.bin/clang/tblgen: ${_bt}-lib/clang/libllvmtablegen ${_bt}-lib/clang/libllvmsupport 1424.endif 1425 1426# Default to building the GPL DTC, but build the BSDL one if users explicitly 1427# request it. 1428_dtc= usr.bin/dtc 1429.if ${MK_GPL_DTC} != "no" 1430_dtc= gnu/usr.bin/dtc 1431.endif 1432 1433.if ${MK_KERBEROS} != "no" 1434_kerberos5_bootstrap_tools= \ 1435 kerberos5/tools/make-roken \ 1436 kerberos5/lib/libroken \ 1437 kerberos5/lib/libvers \ 1438 kerberos5/tools/asn1_compile \ 1439 kerberos5/tools/slc \ 1440 usr.bin/compile_et 1441 1442.ORDER: ${_kerberos5_bootstrap_tools:C/^/${_bt}-/g} 1443.endif 1444 1445.if ${MK_MANDOCDB} != "no" 1446_libohash?= lib/libohash 1447_makewhatis= lib/libsqlite3 \ 1448 usr.bin/mandoc 1449${_bt}-usr.bin/mandoc: ${_bt}-lib/libohash ${_bt}-lib/libsqlite3 1450.else 1451_makewhatis=usr.bin/makewhatis 1452.endif 1453 1454# Rebuild up-to-date libmd for xinstall 1455${_bt}-usr.bin/xinstall: ${_bt}-lib/libmd 1456 1457bootstrap-tools: .PHONY 1458 1459# Please document (add comment) why something is in 'bootstrap-tools'. 1460# Try to bound the building of the bootstrap-tool to just the 1461# FreeBSD versions that need the tool built at this stage of the build. 1462.for _tool in \ 1463 ${_clang_tblgen} \ 1464 ${_kerberos5_bootstrap_tools} \ 1465 ${_strfile} \ 1466 ${_gperf} \ 1467 ${_groff} \ 1468 ${_dtc} \ 1469 ${_awk} \ 1470 ${_cat} \ 1471 usr.bin/lorder \ 1472 ${_libohash} \ 1473 ${_makewhatis} \ 1474 usr.bin/rpcgen \ 1475 ${_sed} \ 1476 ${_yacc} \ 1477 ${_m4} \ 1478 ${_lex} \ 1479 lib/libmd \ 1480 usr.bin/xinstall \ 1481 ${_gensnmptree} \ 1482 usr.sbin/config \ 1483 ${_crunch} \ 1484 ${_nmtree} \ 1485 ${_vtfontcvt} 1486${_bt}-${_tool}: .PHONY .MAKE 1487 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 1488 cd ${.CURDIR}/${_tool} && \ 1489 ${MAKE} DIRPRFX=${_tool}/ obj && \ 1490 ${MAKE} DIRPRFX=${_tool}/ depend && \ 1491 ${MAKE} DIRPRFX=${_tool}/ all && \ 1492 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 1493 1494bootstrap-tools: ${_bt}-${_tool} 1495.endfor 1496 1497# 1498# build-tools: Build special purpose build tools 1499# 1500.if !defined(NO_SHARE) 1501_share= share/syscons/scrnmaps 1502.endif 1503 1504.if ${MK_GCC} != "no" 1505_gcc_tools= gnu/usr.bin/cc/cc_tools 1506.endif 1507 1508.if ${MK_RESCUE} != "no" 1509# rescue includes programs that have build-tools targets 1510_rescue=rescue/rescue 1511.endif 1512 1513.for _tool in \ 1514 bin/csh \ 1515 bin/sh \ 1516 ${LOCAL_TOOL_DIRS} \ 1517 lib/ncurses/ncurses \ 1518 lib/ncurses/ncursesw \ 1519 ${_rescue} \ 1520 ${_share} \ 1521 usr.bin/awk \ 1522 lib/libmagic \ 1523 usr.bin/mkesdb_static \ 1524 usr.bin/mkcsmapper_static \ 1525 usr.bin/vi/catalog 1526build-tools_${_tool}: .PHONY 1527 ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ 1528 cd ${.CURDIR}/${_tool} && \ 1529 ${MAKE} DIRPRFX=${_tool}/ obj && \ 1530 ${MAKE} DIRPRFX=${_tool}/ build-tools 1531build-tools: build-tools_${_tool} 1532.endfor 1533.for _tool in \ 1534 ${_gcc_tools} 1535build-tools_${_tool}: .PHONY 1536 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ 1537 cd ${.CURDIR}/${_tool} && \ 1538 ${MAKE} DIRPRFX=${_tool}/ obj && \ 1539 ${MAKE} DIRPRFX=${_tool}/ depend && \ 1540 ${MAKE} DIRPRFX=${_tool}/ all 1541build-tools: build-tools_${_tool} 1542.endfor 1543 1544# 1545# kernel-tools: Build kernel-building tools 1546# 1547kernel-tools: 1548 mkdir -p ${MAKEOBJDIRPREFIX}/usr 1549 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1550 -p ${MAKEOBJDIRPREFIX}/usr >/dev/null 1551 1552# 1553# cross-tools: All the tools needed to build the rest of the system after 1554# we get done with the earlier stages. It is the last set of tools needed 1555# to begin building the target binaries. 1556# 1557.if ${TARGET_ARCH} != ${MACHINE_ARCH} 1558.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 1559_btxld= usr.sbin/btxld 1560.endif 1561.endif 1562 1563# Rebuild ctfconvert and ctfmerge to avoid difficult-to-diagnose failures 1564# resulting from missing bug fixes or ELF Toolchain updates. 1565.if ${MK_CDDL} != "no" 1566_dtrace_tools= cddl/lib/libctf cddl/usr.bin/ctfconvert \ 1567 cddl/usr.bin/ctfmerge 1568.endif 1569 1570# If we're given an XAS, don't build binutils. 1571.if ${XAS:M/*} == "" 1572.if ${MK_BINUTILS_BOOTSTRAP} != "no" 1573_binutils= gnu/usr.bin/binutils 1574.endif 1575.if ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 1576_elftctools= lib/libelftc \ 1577 usr.bin/elfcopy \ 1578 usr.bin/nm \ 1579 usr.bin/size \ 1580 usr.bin/strings 1581# These are not required by the build, but can be useful for developers who 1582# cross-build on a FreeBSD 10 host: 1583_elftctools+= usr.bin/addr2line 1584.endif 1585.elif ${TARGET_ARCH} != ${MACHINE_ARCH} && ${MK_ELFTOOLCHAIN_BOOTSTRAP} != "no" 1586# If cross-building with an external binutils we still need to build strip for 1587# the target (for at least crunchide). 1588_elftctools= lib/libelftc \ 1589 usr.bin/elfcopy 1590.endif 1591 1592# If an full path to an external cross compiler is given, don't build 1593# a cross compiler. 1594.if ${XCC:M/*} == "" && ${MK_CROSS_COMPILER} != "no" 1595.if ${MK_CLANG_BOOTSTRAP} != "no" 1596_clang= usr.bin/clang 1597_clang_libs= lib/clang 1598.endif 1599.if ${MK_GCC_BOOTSTRAP} != "no" 1600_cc= gnu/usr.bin/cc 1601.endif 1602.endif 1603.if ${MK_USB} != "no" 1604_usb_tools= sys/boot/usb/tools 1605.endif 1606 1607cross-tools: .MAKE .PHONY 1608.for _tool in \ 1609 ${_clang_libs} \ 1610 ${_clang} \ 1611 ${_binutils} \ 1612 ${_elftctools} \ 1613 ${_dtrace_tools} \ 1614 ${_cc} \ 1615 ${_btxld} \ 1616 ${_crunchide} \ 1617 ${_usb_tools} 1618 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 1619 cd ${.CURDIR}/${_tool} && \ 1620 ${MAKE} DIRPRFX=${_tool}/ obj && \ 1621 ${MAKE} DIRPRFX=${_tool}/ depend && \ 1622 ${MAKE} DIRPRFX=${_tool}/ all && \ 1623 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install 1624.endfor 1625 1626NXBDESTDIR= ${OBJTREE}/nxb-bin 1627NXBENV= MAKEOBJDIRPREFIX=${OBJTREE}/nxb \ 1628 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 1629 PATH=${PATH}:${OBJTREE}/gperf_for_gcc/usr/bin 1630NXBMAKE= ${NXBENV} ${MAKE} \ 1631 TBLGEN=${NXBDESTDIR}/usr/bin/tblgen \ 1632 CLANG_TBLGEN=${NXBDESTDIR}/usr/bin/clang-tblgen \ 1633 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} \ 1634 MK_GDB=no MK_TESTS=no \ 1635 SSP_CFLAGS= \ 1636 MK_HTML=no NO_LINT=yes MK_MAN=no \ 1637 -DNO_PIC MK_PROFILE=no -DNO_SHARED \ 1638 -DNO_CPU_CFLAGS MK_WARNS=no MK_CTF=no \ 1639 MK_CLANG_EXTRAS=no MK_CLANG_FULL=no \ 1640 MK_LLDB=no 1641 1642# native-xtools is the current target for qemu-user cross builds of ports 1643# via poudriere and the imgact_binmisc kernel module. 1644# For non-clang enabled targets that are still using the in tree gcc 1645# we must build a gperf binary for one instance of its Makefiles. On 1646# clang-enabled systems, the gperf binary is obsolete. 1647native-xtools: .PHONY 1648.if ${MK_GCC_BOOTSTRAP} != "no" 1649 mkdir -p ${OBJTREE}/gperf_for_gcc/usr/bin 1650 ${_+_}@${ECHODIR} "===> ${_gperf} (obj,depend,all,install)"; \ 1651 cd ${.CURDIR}/${_gperf} && \ 1652 ${NXBMAKE} DIRPRFX=${_gperf}/ obj && \ 1653 ${NXBMAKE} DIRPRFX=${_gperf}/ depend && \ 1654 ${NXBMAKE} DIRPRFX=${_gperf}/ all && \ 1655 ${NXBMAKE} DIRPRFX=${_gperf}/ DESTDIR=${OBJTREE}/gperf_for_gcc install 1656.endif 1657 mkdir -p ${NXBDESTDIR}/bin ${NXBDESTDIR}/sbin ${NXBDESTDIR}/usr 1658 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 1659 -p ${NXBDESTDIR}/usr >/dev/null 1660 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 1661 -p ${NXBDESTDIR}/usr/include >/dev/null 1662.if ${MK_DEBUG_FILES} != "no" 1663 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.debug.dist \ 1664 -p ${NXBDESTDIR}/usr/lib >/dev/null 1665.endif 1666.for _tool in \ 1667 bin/cat \ 1668 bin/chmod \ 1669 bin/cp \ 1670 bin/csh \ 1671 bin/echo \ 1672 bin/expr \ 1673 bin/hostname \ 1674 bin/ln \ 1675 bin/ls \ 1676 bin/mkdir \ 1677 bin/mv \ 1678 bin/ps \ 1679 bin/realpath \ 1680 bin/rm \ 1681 bin/rmdir \ 1682 bin/sh \ 1683 bin/sleep \ 1684 ${_clang_tblgen} \ 1685 usr.bin/ar \ 1686 ${_binutils} \ 1687 ${_elftctools} \ 1688 ${_cc} \ 1689 ${_gcc_tools} \ 1690 ${_clang_libs} \ 1691 ${_clang} \ 1692 sbin/md5 \ 1693 sbin/sysctl \ 1694 gnu/usr.bin/diff \ 1695 usr.bin/awk \ 1696 usr.bin/basename \ 1697 usr.bin/bmake \ 1698 usr.bin/bzip2 \ 1699 usr.bin/cmp \ 1700 usr.bin/dirname \ 1701 usr.bin/env \ 1702 usr.bin/fetch \ 1703 usr.bin/find \ 1704 usr.bin/grep \ 1705 usr.bin/gzip \ 1706 usr.bin/id \ 1707 usr.bin/lex \ 1708 usr.bin/lorder \ 1709 usr.bin/mktemp \ 1710 usr.bin/mt \ 1711 usr.bin/patch \ 1712 usr.bin/sed \ 1713 usr.bin/sort \ 1714 usr.bin/tar \ 1715 usr.bin/touch \ 1716 usr.bin/tr \ 1717 usr.bin/true \ 1718 usr.bin/uniq \ 1719 usr.bin/unzip \ 1720 usr.bin/xargs \ 1721 usr.bin/xinstall \ 1722 usr.bin/xz \ 1723 usr.bin/yacc \ 1724 usr.sbin/chown 1725 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 1726 cd ${.CURDIR}/${_tool} && \ 1727 ${NXBMAKE} DIRPRFX=${_tool}/ obj && \ 1728 ${NXBMAKE} DIRPRFX=${_tool}/ depend && \ 1729 ${NXBMAKE} DIRPRFX=${_tool}/ all && \ 1730 ${NXBMAKE} DIRPRFX=${_tool}/ DESTDIR=${NXBDESTDIR} install 1731.endfor 1732 1733# 1734# hierarchy - ensure that all the needed directories are present 1735# 1736hierarchy hier: .MAKE .PHONY 1737 ${_+_}cd ${.CURDIR}/etc && ${HMAKE} distrib-dirs 1738 1739# 1740# libraries - build all libraries, and install them under ${DESTDIR}. 1741# 1742# The list of libraries with dependents (${_prebuild_libs}) and their 1743# interdependencies (__L) are built automatically by the 1744# ${.CURDIR}/tools/make_libdeps.sh script. 1745# 1746libraries: .MAKE .PHONY 1747 ${_+_}cd ${.CURDIR} && \ 1748 ${MAKE} -f Makefile.inc1 _prereq_libs && \ 1749 ${MAKE} -f Makefile.inc1 _startup_libs && \ 1750 ${MAKE} -f Makefile.inc1 _prebuild_libs && \ 1751 ${MAKE} -f Makefile.inc1 _generic_libs 1752 1753# 1754# static libgcc.a prerequisite for shared libc 1755# 1756_prereq_libs= gnu/lib/libssp/libssp_nonshared gnu/lib/libgcc lib/libcompiler_rt 1757 1758# These dependencies are not automatically generated: 1759# 1760# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before 1761# all shared libraries for ELF. 1762# 1763_startup_libs= gnu/lib/csu 1764_startup_libs+= lib/csu 1765_startup_libs+= gnu/lib/libgcc 1766_startup_libs+= lib/libcompiler_rt 1767_startup_libs+= lib/libc 1768_startup_libs+= lib/libc_nonshared 1769.if ${MK_LIBCPLUSPLUS} != "no" 1770_startup_libs+= lib/libcxxrt 1771.endif 1772 1773gnu/lib/libgcc__L: lib/libc__L 1774gnu/lib/libgcc__L: lib/libc_nonshared__L 1775.if ${MK_LIBCPLUSPLUS} != "no" 1776lib/libcxxrt__L: gnu/lib/libgcc__L 1777.endif 1778 1779_prebuild_libs= ${_kerberos5_lib_libasn1} \ 1780 ${_kerberos5_lib_libhdb} \ 1781 ${_kerberos5_lib_libheimbase} \ 1782 ${_kerberos5_lib_libheimntlm} \ 1783 ${_libsqlite3} \ 1784 ${_kerberos5_lib_libheimipcc} \ 1785 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libkrb5} \ 1786 ${_kerberos5_lib_libroken} \ 1787 ${_kerberos5_lib_libwind} \ 1788 lib/libbz2 ${_libcom_err} lib/libcrypt \ 1789 lib/libelf lib/libexpat \ 1790 lib/libfigpar \ 1791 ${_lib_libgssapi} \ 1792 lib/libkiconv lib/libkvm lib/liblzma lib/libmd lib/libnv \ 1793 ${_lib_libcapsicum} \ 1794 lib/ncurses/ncurses lib/ncurses/ncursesw \ 1795 lib/libopie lib/libpam ${_lib_libthr} \ 1796 ${_lib_libradius} lib/libsbuf lib/libtacplus \ 1797 lib/libgeom \ 1798 ${_cddl_lib_libumem} ${_cddl_lib_libnvpair} \ 1799 ${_cddl_lib_libuutil} \ 1800 ${_cddl_lib_libavl} \ 1801 ${_cddl_lib_libzfs_core} \ 1802 ${_cddl_lib_libctf} \ 1803 lib/libutil lib/libpjdlog ${_lib_libypclnt} lib/libz lib/msun \ 1804 ${_secure_lib_libcrypto} ${_lib_libldns} \ 1805 ${_secure_lib_libssh} ${_secure_lib_libssl} \ 1806 gnu/lib/libdialog 1807.if ${MK_GNUCXX} != "no" 1808_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++ 1809gnu/lib/libstdc++__L: lib/msun__L 1810gnu/lib/libsupc++__L: gnu/lib/libstdc++__L 1811.endif 1812 1813.if ${MK_LIBCPLUSPLUS} != "no" 1814_prebuild_libs+= lib/libc++ 1815.endif 1816 1817lib/libgeom__L: lib/libexpat__L 1818 1819.if ${MK_LIBTHR} != "no" 1820_lib_libthr= lib/libthr 1821.endif 1822 1823.if ${MK_RADIUS_SUPPORT} != "no" 1824_lib_libradius= lib/libradius 1825.endif 1826 1827.if ${MK_OFED} != "no" 1828_ofed_lib= contrib/ofed/usr.lib/ 1829.endif 1830 1831.if ${MK_CASPER} != "no" 1832_lib_libcapsicum=lib/libcapsicum 1833.endif 1834 1835lib/libcapsicum__L: lib/libnv__L 1836lib/libpjdlog__L: lib/libutil__L 1837lib/liblzma__L: lib/libthr__L 1838 1839_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib ${_ofed_lib} 1840.for _DIR in ${LOCAL_LIB_DIRS} 1841.if exists(${.CURDIR}/${_DIR}/Makefile) 1842_generic_libs+= ${_DIR} 1843.endif 1844.endfor 1845 1846lib/libopie__L lib/libtacplus__L: lib/libmd__L 1847 1848.if ${MK_CDDL} != "no" 1849_cddl_lib_libumem= cddl/lib/libumem 1850_cddl_lib_libnvpair= cddl/lib/libnvpair 1851_cddl_lib_libavl= cddl/lib/libavl 1852_cddl_lib_libuutil= cddl/lib/libuutil 1853_cddl_lib_libzfs_core= cddl/lib/libzfs_core 1854_cddl_lib_libctf= cddl/lib/libctf 1855_cddl_lib= cddl/lib 1856cddl/lib/libzfs_core__L: cddl/lib/libnvpair__L 1857cddl/lib/libzfs__L: lib/libgeom__L 1858cddl/lib/libctf__L: lib/libz__L 1859.endif 1860# cddl/lib/libdtrace requires lib/libproc and lib/librtld_db; it's only built 1861# on select architectures though (see cddl/lib/Makefile) 1862.if ${MACHINE_CPUARCH} != "sparc64" 1863_prebuild_libs+= lib/libproc lib/librtld_db 1864.endif 1865 1866.if ${MK_CRYPT} != "no" 1867.if ${MK_OPENSSL} != "no" 1868_secure_lib_libcrypto= secure/lib/libcrypto 1869_secure_lib_libssl= secure/lib/libssl 1870lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 1871.if ${MK_LDNS} != "no" 1872_lib_libldns= lib/libldns 1873lib/libldns__L: secure/lib/libcrypto__L 1874.endif 1875.if ${MK_OPENSSH} != "no" 1876_secure_lib_libssh= secure/lib/libssh 1877secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 1878.if ${MK_LDNS} != "no" 1879secure/lib/libssh__L: lib/libldns__L 1880.endif 1881.if ${MK_KERBEROS_SUPPORT} != "no" 1882secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libkrb5__L \ 1883 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 1884 lib/libmd__L kerberos5/lib/libroken__L 1885.endif 1886.endif 1887.endif 1888_secure_lib= secure/lib 1889.endif 1890 1891.if ${MK_KERBEROS} != "no" 1892kerberos5/lib/libasn1__L: lib/libcom_err__L kerberos5/lib/libroken__L 1893kerberos5/lib/libhdb__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 1894 kerberos5/lib/libkrb5__L kerberos5/lib/libroken__L \ 1895 kerberos5/lib/libwind__L lib/libsqlite3__L 1896kerberos5/lib/libheimntlm__L: secure/lib/libcrypto__L kerberos5/lib/libkrb5__L \ 1897 kerberos5/lib/libroken__L lib/libcom_err__L 1898kerberos5/lib/libhx509__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 1899 secure/lib/libcrypto__L kerberos5/lib/libroken__L kerberos5/lib/libwind__L 1900kerberos5/lib/libkrb5__L: kerberos5/lib/libasn1__L lib/libcom_err__L \ 1901 lib/libcrypt__L secure/lib/libcrypto__L kerberos5/lib/libhx509__L \ 1902 kerberos5/lib/libroken__L kerberos5/lib/libwind__L \ 1903 kerberos5/lib/libheimbase__L kerberos5/lib/libheimipcc__L 1904kerberos5/lib/libroken__L: lib/libcrypt__L 1905kerberos5/lib/libwind__L: kerberos5/lib/libroken__L lib/libcom_err__L 1906kerberos5/lib/libheimbase__L: lib/libthr__L 1907kerberos5/lib/libheimipcc__L: kerberos5/lib/libroken__L kerberos5/lib/libheimbase__L lib/libthr__L 1908.endif 1909 1910lib/libsqlite3__L: lib/libthr__L 1911 1912.if ${MK_GSSAPI} != "no" 1913_lib_libgssapi= lib/libgssapi 1914.endif 1915 1916.if ${MK_KERBEROS} != "no" 1917_kerberos5_lib= kerberos5/lib 1918_kerberos5_lib_libasn1= kerberos5/lib/libasn1 1919_kerberos5_lib_libhdb= kerberos5/lib/libhdb 1920_kerberos5_lib_libheimbase= kerberos5/lib/libheimbase 1921_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 1922_kerberos5_lib_libhx509= kerberos5/lib/libhx509 1923_kerberos5_lib_libroken= kerberos5/lib/libroken 1924_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 1925_libsqlite3= lib/libsqlite3 1926_kerberos5_lib_libheimipcc= kerberos5/lib/libheimipcc 1927_kerberos5_lib_libwind= kerberos5/lib/libwind 1928_libcom_err= lib/libcom_err 1929.endif 1930 1931.if ${MK_NIS} != "no" 1932_lib_libypclnt= lib/libypclnt 1933.endif 1934 1935.if ${MK_OPENSSL} == "no" 1936lib/libradius__L: lib/libmd__L 1937.endif 1938 1939lib/libproc__L: \ 1940 ${_cddl_lib_libctf:D${_cddl_lib_libctf}__L} lib/libelf__L lib/librtld_db__L lib/libutil__L 1941.if ${MK_CXX} != "no" 1942.if ${MK_LIBCPLUSPLUS} != "no" 1943lib/libproc__L: lib/libcxxrt__L 1944.else # This implies MK_GNUCXX != "no"; see lib/libproc 1945lib/libproc__L: gnu/lib/libsupc++__L 1946.endif 1947.endif 1948 1949gnu/lib/libdialog__L: lib/msun__L lib/ncurses/ncursesw__L 1950 1951.for _lib in ${_prereq_libs} 1952${_lib}__PL: .PHONY .MAKE 1953.if exists(${.CURDIR}/${_lib}) 1954 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ 1955 cd ${.CURDIR}/${_lib} && \ 1956 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \ 1957 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \ 1958 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 1959 DIRPRFX=${_lib}/ all && \ 1960 ${MAKE} MK_TESTS=no MK_PROFILE=no -DNO_PIC \ 1961 DIRPRFX=${_lib}/ install 1962.endif 1963.endfor 1964 1965.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs} 1966${_lib}__L: .PHONY .MAKE 1967.if exists(${.CURDIR}/${_lib}) 1968 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ 1969 cd ${.CURDIR}/${_lib} && \ 1970 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ obj && \ 1971 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ depend && \ 1972 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ all && \ 1973 ${MAKE} MK_TESTS=no DIRPRFX=${_lib}/ install 1974.endif 1975.endfor 1976 1977# libpam is special: we need to build static PAM modules before 1978# static PAM library, and dynamic PAM library before dynamic PAM 1979# modules. 1980lib/libpam__L: .PHONY .MAKE 1981 ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \ 1982 cd ${.CURDIR}/lib/libpam && \ 1983 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ obj && \ 1984 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ depend && \ 1985 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \ 1986 -D_NO_LIBPAM_SO_YET all && \ 1987 ${MAKE} MK_TESTS=no DIRPRFX=lib/libpam/ \ 1988 -D_NO_LIBPAM_SO_YET install 1989 1990_prereq_libs: ${_prereq_libs:S/$/__PL/} 1991_startup_libs: ${_startup_libs:S/$/__L/} 1992_prebuild_libs: ${_prebuild_libs:S/$/__L/} 1993_generic_libs: ${_generic_libs:S/$/__L/} 1994 1995# Enable SUBDIR_PARALLEL when not calling 'make all', unless called as 1996# 'par-all'. This is because it is unlikely that running 'make all' from 1997# the top-level, especially with a SUBDIR_OVERRIDE or LOCAL_DIRS set, 1998# will have a reliable build if SUBDIRs are built in parallel. This is 1999# safe for the world stage of buildworld though since it has already 2000# built libraries in a proper order and installed includes into WORLDTMP. 2001# Special handling is done for SUBDIR ordering for 'install*' to avoid 2002# trashing a system if it crashes mid-install. 2003par-all: all .PHONY 2004.if !make(all) 2005SUBDIR_PARALLEL= 2006.endif 2007 2008.include <bsd.subdir.mk> 2009 2010.if make(check-old) || make(check-old-dirs) || \ 2011 make(check-old-files) || make(check-old-libs) || \ 2012 make(delete-old) || make(delete-old-dirs) || \ 2013 make(delete-old-files) || make(delete-old-libs) 2014 2015# 2016# check for / delete old files section 2017# 2018 2019.include "ObsoleteFiles.inc" 2020 2021OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 2022else you can not start such an application. Consult UPDATING for more \ 2023information regarding how to cope with the removal/revision bump of a \ 2024specific library." 2025 2026.if !defined(BATCH_DELETE_OLD_FILES) 2027RM_I=-i 2028.else 2029RM_I=-v 2030.endif 2031 2032delete-old-files: 2033 @echo ">>> Removing old files (only deletes safe to delete libs)" 2034# Ask for every old file if the user really wants to remove it. 2035# It's annoying, but better safe than sorry. 2036# NB: We cannot pass the list of OLD_FILES as a parameter because the 2037# argument list will get too long. Using .for/.endfor make "loops" will make 2038# the Makefile parser segfault. 2039 @exec 3<&0; \ 2040 cd ${.CURDIR}; \ 2041 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2042 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ 2043 while read file; do \ 2044 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2045 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 2046 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 2047 fi; \ 2048 for ext in debug symbols; do \ 2049 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 2050 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2051 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 2052 <&3; \ 2053 fi; \ 2054 done; \ 2055 done 2056# Remove catpages without corresponding manpages. 2057 @exec 3<&0; \ 2058 find ${DESTDIR}/usr/share/man/cat* ! -type d | \ 2059 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 2060 while read catpage; do \ 2061 read manpage; \ 2062 if [ ! -e "$${manpage}" ]; then \ 2063 rm ${RM_I} $${catpage} <&3; \ 2064 fi; \ 2065 done 2066 @echo ">>> Old files removed" 2067 2068check-old-files: 2069 @echo ">>> Checking for old files" 2070 @cd ${.CURDIR}; \ 2071 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2072 -V OLD_FILES -V "OLD_FILES:Musr/share/*.gz:R" | xargs -n1 | \ 2073 while read file; do \ 2074 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2075 echo "${DESTDIR}/$${file}"; \ 2076 fi; \ 2077 for ext in debug symbols; do \ 2078 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2079 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 2080 fi; \ 2081 done; \ 2082 done 2083# Check for catpages without corresponding manpages. 2084 @find ${DESTDIR}/usr/share/man/cat* ! -type d | \ 2085 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 2086 while read catpage; do \ 2087 read manpage; \ 2088 if [ ! -e "$${manpage}" ]; then \ 2089 echo $${catpage}; \ 2090 fi; \ 2091 done 2092 2093delete-old-libs: 2094 @echo ">>> Removing old libraries" 2095 @echo "${OLD_LIBS_MESSAGE}" | fmt 2096 @exec 3<&0; \ 2097 cd ${.CURDIR}; \ 2098 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2099 -V OLD_LIBS | xargs -n1 | \ 2100 while read file; do \ 2101 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2102 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 2103 rm ${RM_I} "${DESTDIR}/$${file}" <&3; \ 2104 fi; \ 2105 for ext in debug symbols; do \ 2106 if ! [ -e "${DESTDIR}/$${file}" ] && [ -f \ 2107 "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2108 rm ${RM_I} "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" \ 2109 <&3; \ 2110 fi; \ 2111 done; \ 2112 done 2113 @echo ">>> Old libraries removed" 2114 2115check-old-libs: 2116 @echo ">>> Checking for old libraries" 2117 @cd ${.CURDIR}; \ 2118 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2119 -V OLD_LIBS | xargs -n1 | \ 2120 while read file; do \ 2121 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 2122 echo "${DESTDIR}/$${file}"; \ 2123 fi; \ 2124 for ext in debug symbols; do \ 2125 if [ -f "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}" ]; then \ 2126 echo "${DESTDIR}${DEBUGDIR}/$${file}.$${ext}"; \ 2127 fi; \ 2128 done; \ 2129 done 2130 2131delete-old-dirs: 2132 @echo ">>> Removing old directories" 2133 @cd ${.CURDIR}; \ 2134 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2135 -V OLD_DIRS | xargs -n1 | sort -r | \ 2136 while read dir; do \ 2137 if [ -d "${DESTDIR}/$${dir}" ]; then \ 2138 rmdir -v "${DESTDIR}/$${dir}" || true; \ 2139 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 2140 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 2141 fi; \ 2142 done 2143 @echo ">>> Old directories removed" 2144 2145check-old-dirs: 2146 @echo ">>> Checking for old directories" 2147 @cd ${.CURDIR}; \ 2148 ${MAKE} -f ${.CURDIR}/Makefile.inc1 ${.MAKEFLAGS} ${.TARGET} \ 2149 -V OLD_DIRS | xargs -n1 | \ 2150 while read dir; do \ 2151 if [ -d "${DESTDIR}/$${dir}" ]; then \ 2152 echo "${DESTDIR}/$${dir}"; \ 2153 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 2154 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 2155 fi; \ 2156 done 2157 2158delete-old: delete-old-files delete-old-dirs 2159 @echo "To remove old libraries run '${MAKE} delete-old-libs'." 2160 2161check-old: check-old-files check-old-libs check-old-dirs 2162 @echo "To remove old files and directories run '${MAKE} delete-old'." 2163 @echo "To remove old libraries run '${MAKE} delete-old-libs'." 2164 2165.endif 2166 2167# 2168# showconfig - show build configuration. 2169# 2170showconfig: 2171 @(${MAKE} -n -f ${.CURDIR}/sys/conf/kern.opts.mk -V dummy -dg1; \ 2172 ${MAKE} -n -f ${.CURDIR}/share/mk/src.opts.mk -V dummy -dg1) 2>&1 | grep ^MK_ | sort -u 2173 2174.if !empty(KRNLOBJDIR) && !empty(KERNCONF) 2175DTBOUTPUTPATH= ${KRNLOBJDIR}/${KERNCONF}/ 2176 2177.if !defined(FDT_DTS_FILE) || empty(FDT_DTS_FILE) 2178.if exists(${KERNCONFDIR}/${KERNCONF}) 2179FDT_DTS_FILE!= awk 'BEGIN {FS="="} /^makeoptions[[:space:]]+FDT_DTS_FILE/ {print $$2}' \ 2180 '${KERNCONFDIR}/${KERNCONF}' ; echo 2181.endif 2182.endif 2183 2184.endif 2185 2186.if !defined(DTBOUTPUTPATH) || !exists(${DTBOUTPUTPATH}) 2187DTBOUTPUTPATH= ${.CURDIR} 2188.endif 2189 2190# 2191# Build 'standalone' Device Tree Blob 2192# 2193builddtb: 2194 @PATH=${TMPPATH} MACHINE=${TARGET} \ 2195 ${.CURDIR}/sys/tools/fdt/make_dtb.sh ${.CURDIR}/sys \ 2196 "${FDT_DTS_FILE}" ${DTBOUTPUTPATH} 2197 2198############### 2199 2200.if defined(TARGET) && defined(TARGET_ARCH) 2201 2202.if ${TARGET} == ${MACHINE} && ${TARGET_ARCH} == ${MACHINE_ARCH} 2203XDEV_CPUTYPE?=${CPUTYPE} 2204.else 2205XDEV_CPUTYPE?=${TARGET_CPUTYPE} 2206.endif 2207 2208NOFUN=-DNO_FSCHG MK_HTML=no -DNO_LINT \ 2209 MK_MAN=no MK_NLS=no MK_PROFILE=no \ 2210 MK_KERBEROS=no MK_RESCUE=no MK_TESTS=no MK_WARNS=no \ 2211 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 2212 CPUTYPE=${XDEV_CPUTYPE} 2213 2214XDDIR=${TARGET_ARCH}-freebsd 2215XDTP?=/usr/${XDDIR} 2216.if ${XDTP:N/*} 2217.error XDTP variable should be an absolute path 2218.endif 2219 2220CDBENV=MAKEOBJDIRPREFIX=${MAKEOBJDIRPREFIX}/${XDDIR} \ 2221 INSTALL="sh ${.CURDIR}/tools/install.sh" 2222CDENV= ${CDBENV} \ 2223 TOOLS_PREFIX=${XDTP} 2224CD2CFLAGS=-isystem ${XDDESTDIR}/usr/include -L${XDDESTDIR}/usr/lib \ 2225 --sysroot=${XDDESTDIR}/ -B${XDDESTDIR}/usr/libexec \ 2226 -B${XDDESTDIR}/usr/bin -B${XDDESTDIR}/usr/lib 2227CD2ENV=${CDENV} CC="${CC} ${CD2CFLAGS}" CXX="${CXX} ${CD2CFLAGS}" \ 2228 CPP="${CPP} ${CD2CFLAGS}" \ 2229 MACHINE=${TARGET} MACHINE_ARCH=${TARGET_ARCH} 2230 2231CDTMP= ${MAKEOBJDIRPREFIX}/${XDDIR}/${.CURDIR}/tmp 2232CDMAKE=${CDENV} PATH=${CDTMP}/usr/bin:${PATH} ${MAKE} ${NOFUN} 2233CD2MAKE=${CD2ENV} PATH=${CDTMP}/usr/bin:${XDDESTDIR}/usr/bin:${PATH} ${MAKE} ${NOFUN} 2234XDDESTDIR=${DESTDIR}/${XDTP} 2235.if !defined(OSREL) 2236OSREL!= uname -r | sed -e 's/[-(].*//' 2237.endif 2238 2239.ORDER: xdev-build xdev-install xdev-links 2240xdev: xdev-build xdev-install 2241 2242.ORDER: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 2243xdev-build: _xb-worldtmp _xb-bootstrap-tools _xb-build-tools _xb-cross-tools 2244 2245_xb-worldtmp: .PHONY 2246 mkdir -p ${CDTMP}/usr 2247 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2248 -p ${CDTMP}/usr >/dev/null 2249 2250_xb-bootstrap-tools: .PHONY 2251.for _tool in \ 2252 ${_clang_tblgen} \ 2253 ${_gperf} 2254 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 2255 cd ${.CURDIR}/${_tool} && \ 2256 ${CDMAKE} DIRPRFX=${_tool}/ obj && \ 2257 ${CDMAKE} DIRPRFX=${_tool}/ depend && \ 2258 ${CDMAKE} DIRPRFX=${_tool}/ all && \ 2259 ${CDMAKE} DIRPRFX=${_tool}/ DESTDIR=${CDTMP} install 2260.endfor 2261 2262_xb-build-tools: .PHONY 2263 ${_+_}@cd ${.CURDIR}; \ 2264 ${CDBENV} ${MAKE} -f Makefile.inc1 ${NOFUN} build-tools 2265 2266_xb-cross-tools: .PHONY 2267.for _tool in \ 2268 ${_binutils} \ 2269 ${_elftctools} \ 2270 usr.bin/ar \ 2271 ${_clang_libs} \ 2272 ${_clang} \ 2273 ${_cc} 2274 ${_+_}@${ECHODIR} "===> xdev ${_tool} (obj,depend,all)"; \ 2275 cd ${.CURDIR}/${_tool} && \ 2276 ${CDMAKE} DIRPRFX=${_tool}/ obj && \ 2277 ${CDMAKE} DIRPRFX=${_tool}/ depend && \ 2278 ${CDMAKE} DIRPRFX=${_tool}/ all 2279.endfor 2280 2281_xi-mtree: .PHONY 2282 ${_+_}@${ECHODIR} "mtree populating ${XDDESTDIR}" 2283 mkdir -p ${XDDESTDIR} 2284 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \ 2285 -p ${XDDESTDIR} >/dev/null 2286 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \ 2287 -p ${XDDESTDIR}/usr >/dev/null 2288 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 2289 -p ${XDDESTDIR}/usr/include >/dev/null 2290.if ${MK_LIB32} != "no" 2291 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.lib32.dist \ 2292 -p ${XDDESTDIR}/usr >/dev/null 2293.endif 2294.if ${MK_TESTS} != "no" 2295 mkdir -p ${XDDESTDIR}${TESTSBASE} 2296 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.tests.dist \ 2297 -p ${XDDESTDIR}${TESTSBASE} >/dev/null 2298.endif 2299 2300.ORDER: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 2301xdev-install: xdev-build _xi-mtree _xi-cross-tools _xi-includes _xi-libraries 2302 2303_xi-cross-tools: .PHONY 2304 @echo "_xi-cross-tools" 2305.for _tool in \ 2306 ${_binutils} \ 2307 ${_elftctools} \ 2308 usr.bin/ar \ 2309 ${_clang_libs} \ 2310 ${_clang} \ 2311 ${_cc} 2312 ${_+_}@${ECHODIR} "===> xdev ${_tool} (install)"; \ 2313 cd ${.CURDIR}/${_tool}; \ 2314 ${CDMAKE} DIRPRFX=${_tool}/ install DESTDIR=${XDDESTDIR} 2315.endfor 2316 2317_xi-includes: .PHONY 2318 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 buildincludes \ 2319 DESTDIR=${XDDESTDIR} 2320 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 installincludes \ 2321 DESTDIR=${XDDESTDIR} 2322 2323_xi-libraries: .PHONY 2324 ${_+_}cd ${.CURDIR}; ${CD2MAKE} -f Makefile.inc1 libraries \ 2325 DESTDIR=${XDDESTDIR} 2326 2327xdev-links: .PHONY 2328 ${_+_}cd ${XDDESTDIR}/usr/bin; \ 2329 mkdir -p ../../../../usr/bin; \ 2330 for i in *; do \ 2331 ln -sf ../../${XDTP}/usr/bin/$$i \ 2332 ../../../../usr/bin/${XDDIR}-$$i; \ 2333 ln -sf ../../${XDTP}/usr/bin/$$i \ 2334 ../../../../usr/bin/${XDDIR}${OSREL}-$$i; \ 2335 done 2336.else 2337xdev xdev-build xdev-install xdev-links: 2338 @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${.TARGET}\" target" 2339.endif 2340