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