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