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