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