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_KERNELCONFIG, NO_KERNELCLEAN and NO_KERNELCONFIG 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_PORTSUPDATE do not update ports in ${MAKE} update 13# -DNO_DOCUPDATE do not update doc in ${MAKE} update 14# -DNO_CTF do not run the DTrace CTF conversion tools on built objects 15# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 16# TARGET="machine" to crossbuild world for a different machine type 17 18# 19# The intended user-driven targets are: 20# buildworld - rebuild *everything*, including glue to help do upgrades 21# installworld- install everything built by "buildworld" 22# doxygen - build API documentation of the kernel 23# update - convenient way to update your source tree (eg: cvsup/cvs) 24# 25# Standard targets (not defined here) are documented in the makefiles in 26# /usr/share/mk. These include: 27# obj depend all install clean cleandepend cleanobj 28 29.include <bsd.own.mk> 30 31.if ${MACHINE_ARCH} == "mips" 32MK_RESCUE=no # not yet 33.endif 34 35# We must do share/info early so that installation of info `dir' 36# entries works correctly. Do it first since it is less likely to 37# grow dependencies on include and lib than vice versa. 38# 39# We must do lib/ and libexec/ before bin/, because if installworld 40# installs a new /bin/sh, the 'make' command will *immediately* 41# use that new version. And the new (dynamically-linked) /bin/sh 42# will expect to find appropriate libraries in /lib and /libexec. 43# 44SUBDIR= share/info lib libexec 45SUBDIR+=bin 46.if ${MK_GAMES} != "no" 47SUBDIR+=games 48.endif 49.if ${MK_CDDL} != "no" 50SUBDIR+=cddl 51.else 52NO_CTF=1 53.endif 54SUBDIR+=gnu include 55.if ${MK_KERBEROS} != "no" 56SUBDIR+=kerberos5 57.endif 58.if ${MK_RESCUE} != "no" 59SUBDIR+=rescue 60.endif 61SUBDIR+=sbin 62.if ${MK_CRYPT} != "no" 63SUBDIR+=secure 64.endif 65.if !defined(NO_SHARE) 66SUBDIR+=share 67.endif 68SUBDIR+=sys usr.bin usr.sbin 69# 70# We must do etc/ last for install/distribute to work. 71# 72SUBDIR+=etc 73 74# These are last, since it is nice to at least get the base system 75# rebuilt before you do them. 76.for _DIR in ${LOCAL_DIRS} 77.if exists(${.CURDIR}/${_DIR}/Makefile) 78SUBDIR+= ${_DIR} 79.endif 80.endfor 81 82.if defined(SUBDIR_OVERRIDE) 83SUBDIR= ${SUBDIR_OVERRIDE} 84.endif 85 86.if defined(NOCLEAN) 87NO_CLEAN= ${NOCLEAN} 88.endif 89.if defined(NO_CLEANDIR) 90CLEANDIR= clean cleandepend 91.else 92CLEANDIR= cleandir 93.endif 94 95CVS?= cvs 96CVSFLAGS?= -A -P -d -I! 97SUP?= /usr/bin/csup 98SUPFLAGS?= -g -L 2 99.if defined(SUPHOST) 100SUPFLAGS+= -h ${SUPHOST} 101.endif 102 103MAKEOBJDIRPREFIX?= /usr/obj 104.if !defined(OSRELDATE) 105.if exists(/usr/include/osreldate.h) 106OSRELDATE!= awk '/^\#define[[:space:]]*__FreeBSD_version/ { print $$3 }' \ 107 /usr/include/osreldate.h 108.else 109OSRELDATE= 0 110.endif 111.endif 112 113.if !defined(VERSION) 114VERSION!= uname -srp 115VERSION+= ${OSRELDATE} 116.endif 117 118# Guess machine architecture from machine type, and vice versa. 119.if !defined(TARGET_ARCH) && defined(TARGET) 120TARGET_ARCH= ${TARGET:S/pc98/i386/:S/sun4v/sparc64/} 121.elif !defined(TARGET) && defined(TARGET_ARCH) && \ 122 ${TARGET_ARCH} != ${MACHINE_ARCH} 123TARGET= ${TARGET_ARCH} 124.endif 125# Otherwise, default to current machine type and architecture. 126TARGET?= ${MACHINE} 127TARGET_ARCH?= ${MACHINE_ARCH} 128 129KNOWN_ARCHES?= amd64 arm i386 i386/pc98 ia64 mips powerpc sparc64 sparc64/sun4v 130.if ${TARGET} == ${TARGET_ARCH} 131_t= ${TARGET} 132.else 133_t= ${TARGET_ARCH}/${TARGET} 134.endif 135.for _t in ${_t} 136.if empty(KNOWN_ARCHES:M${_t}) 137.error Unknown target ${TARGET_ARCH}:${TARGET}. 138.endif 139.endfor 140 141.if ${TARGET} == ${MACHINE} 142TARGET_CPUTYPE?=${CPUTYPE} 143.else 144TARGET_CPUTYPE?= 145.endif 146 147.if !empty(TARGET_CPUTYPE) 148_TARGET_CPUTYPE=${TARGET_CPUTYPE} 149.else 150_TARGET_CPUTYPE=dummy 151.endif 152_CPUTYPE!= MAKEFLAGS= CPUTYPE=${_TARGET_CPUTYPE} ${MAKE} \ 153 -f /dev/null -m ${.CURDIR}/share/mk -V CPUTYPE 154.if ${_CPUTYPE} != ${_TARGET_CPUTYPE} 155.error CPUTYPE global should be set with ?=. 156.endif 157.if make(buildworld) 158BUILD_ARCH!= uname -p 159.if ${MACHINE_ARCH} != ${BUILD_ARCH} 160.error To cross-build, set TARGET_ARCH. 161.endif 162.endif 163.if ${MACHINE} == ${TARGET} && !defined(CROSS_BUILD_TESTING) 164OBJTREE= ${MAKEOBJDIRPREFIX} 165.else 166OBJTREE= ${MAKEOBJDIRPREFIX}/${TARGET} 167.endif 168WORLDTMP= ${OBJTREE}${.CURDIR}/tmp 169# /usr/games added for fortune which depend on strfile 170BPATH= ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games 171XPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games 172STRICTTMPPATH= ${BPATH}:${XPATH} 173TMPPATH= ${STRICTTMPPATH}:${PATH} 174 175# 176# Avoid running mktemp(1) unless actually needed. 177# It may not be functional, e.g., due to new ABI 178# when in the middle of installing over this system. 179# 180.if make(distributeworld) || make(installworld) 181INSTALLTMP!= /usr/bin/mktemp -d -u -t install 182.endif 183 184# 185# Building a world goes through the following stages 186# 187# 1. legacy stage [BMAKE] 188# This stage is responsible for creating compatibility 189# shims that are needed by the bootstrap-tools, 190# build-tools and cross-tools stages. 191# 1. bootstrap-tools stage [BMAKE] 192# This stage is responsible for creating programs that 193# are needed for backward compatibility reasons. They 194# are not built as cross-tools. 195# 2. build-tools stage [TMAKE] 196# This stage is responsible for creating the object 197# tree and building any tools that are needed during 198# the build process. 199# 3. cross-tools stage [XMAKE] 200# This stage is responsible for creating any tools that 201# are needed for cross-builds. A cross-compiler is one 202# of them. 203# 4. world stage [WMAKE] 204# This stage actually builds the world. 205# 5. install stage (optional) [IMAKE] 206# This stage installs a previously built world. 207# 208 209BOOTSTRAPPING?= 0 210 211# Common environment for world related stages 212CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ 213 MACHINE_ARCH=${TARGET_ARCH} \ 214 MACHINE=${TARGET} \ 215 CPUTYPE=${TARGET_CPUTYPE} \ 216 GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \ 217 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \ 218 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac 219.if ${OSRELDATE} < 700044 220CROSSENV+= AR=gnu-ar RANLIB=gnu-ranlib 221.endif 222 223# bootstrap-tools stage 224BMAKEENV= INSTALL="sh ${.CURDIR}/tools/install.sh" \ 225 PATH=${BPATH}:${PATH} \ 226 WORLDTMP=${WORLDTMP} \ 227 VERSION="${VERSION}" \ 228 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 229BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ 230 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ 231 DESTDIR= \ 232 BOOTSTRAPPING=${OSRELDATE} \ 233 SSP_CFLAGS= \ 234 -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT -DWITHOUT_MAN \ 235 -DWITHOUT_NLS -DNO_PIC -DWITHOUT_PROFILE -DNO_SHARED \ 236 -DNO_CPU_CFLAGS -DNO_WARNS -DNO_CTF 237 238# build-tools stage 239TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ 240 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ 241 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 242 DESTDIR= \ 243 SSP_CFLAGS= \ 244 BOOTSTRAPPING=${OSRELDATE} -DNO_LINT -DNO_CPU_CFLAGS \ 245 -DNO_WARNS -DNO_CTF 246 247# cross-tools stage 248XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} \ 249 TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH} \ 250 -DWITHOUT_GDB 251 252# world stage 253WMAKEENV= ${CROSSENV} \ 254 _SHLIBDIRPREFIX=${WORLDTMP} \ 255 VERSION="${VERSION}" \ 256 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 257 PATH=${TMPPATH} 258.if ${MK_CDDL} == "no" || defined(NO_CTF) 259WMAKEENV+= NO_CTF=1 260.endif 261WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 DESTDIR=${WORLDTMP} 262 263.if ${TARGET_ARCH} == "amd64" 264# 32 bit world 265LIB32TMP= ${OBJTREE}${.CURDIR}/lib32 266 267.if empty(TARGET_CPUTYPE) 268LIB32CPUFLAGS= -march=i686 -mmmx -msse -msse2 269.else 270LIB32CPUFLAGS= -march=${TARGET_CPUTYPE} 271.endif 272LIB32FLAGS= -m32 ${LIB32CPUFLAGS} -mfancy-math-387 -DCOMPAT_32BIT \ 273 -iprefix ${LIB32TMP}/usr/ \ 274 -L${LIB32TMP}/usr/lib32 \ 275 -B${LIB32TMP}/usr/lib32 276 277# Yes, the flags are redundant. 278LIB32WMAKEENV= MAKEOBJDIRPREFIX=${OBJTREE}/lib32 \ 279 _SHLIBDIRPREFIX=${LIB32TMP} \ 280 VERSION="${VERSION}" \ 281 MACHINE=i386 \ 282 MACHINE_ARCH=i386 \ 283 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 284 PATH=${TMPPATH} \ 285 CC="${CC} ${LIB32FLAGS}" \ 286 CXX="${CXX} ${LIB32FLAGS}" \ 287 OBJC="${OBJC} ${LIB32FLAGS}" \ 288 LD="${LD} -m elf_i386_fbsd -Y P,${LIB32TMP}/usr/lib32" \ 289 AS="${AS} --32" \ 290 LIBDIR=/usr/lib32 \ 291 SHLIBDIR=/usr/lib32 292 293LIB32WMAKE= ${LIB32WMAKEENV} ${MAKE} -DNO_CPU_CFLAGS -DCOMPAT_32BIT \ 294 -DWITHOUT_BIND -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_INFO \ 295 -DWITHOUT_HTML -DNO_CTF DESTDIR=${LIB32TMP} 296LIB32IMAKE= ${LIB32WMAKE:NINSTALL=*:NDESTDIR=*} -DNO_INCS 297.endif 298 299# install stage 300IMAKEENV= ${CROSSENV} 301IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 302.if empty(.MAKEFLAGS:M-n) 303IMAKEENV+= PATH=${STRICTTMPPATH}:${INSTALLTMP} \ 304 LD_LIBRARY_PATH=${INSTALLTMP} \ 305 PATH_LOCALE=${INSTALLTMP}/locale 306IMAKE+= __MAKE_SHELL=${INSTALLTMP}/sh 307.else 308IMAKEENV+= PATH=${TMPPATH}:${INSTALLTMP} 309.endif 310 311# kernel stage 312KMAKEENV= ${WMAKEENV} 313KMAKE= ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} 314 315# 316# buildworld 317# 318# Attempt to rebuild the entire system, with reasonable chance of 319# success, regardless of how old your existing system is. 320# 321_worldtmp: 322.if ${.CURDIR:C/[^,]//g} != "" 323# The m4 build of sendmail files doesn't like it if ',' is used 324# anywhere in the path of it's files. 325 @echo 326 @echo "*** Error: path to source tree contains a comma ','" 327 @echo 328 false 329.endif 330 @echo 331 @echo "--------------------------------------------------------------" 332 @echo ">>> Rebuilding the temporary build tree" 333 @echo "--------------------------------------------------------------" 334.if !defined(NO_CLEAN) 335 rm -rf ${WORLDTMP} 336.if ${TARGET_ARCH} == "amd64" 337 rm -rf ${LIB32TMP} 338.endif 339.else 340 rm -rf ${WORLDTMP}/legacy/usr/include 341# XXX - These three can depend on any header file. 342 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c 343 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/kdump_subr.c 344 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c 345.endif 346.for _dir in \ 347 usr/bin usr/games usr/include/sys usr/lib \ 348 usr/libexec usr/sbin usr/share/dict \ 349 usr/share/groff_font/devX100 \ 350 usr/share/groff_font/devX100-12 \ 351 usr/share/groff_font/devX75 \ 352 usr/share/groff_font/devX75-12 \ 353 usr/share/groff_font/devascii \ 354 usr/share/groff_font/devcp1047 \ 355 usr/share/groff_font/devdvi \ 356 usr/share/groff_font/devhtml \ 357 usr/share/groff_font/devkoi8-r \ 358 usr/share/groff_font/devlatin1 \ 359 usr/share/groff_font/devlbp \ 360 usr/share/groff_font/devlj4 \ 361 usr/share/groff_font/devps \ 362 usr/share/groff_font/devutf8 \ 363 usr/share/tmac/mdoc usr/share/tmac/mm 364 mkdir -p ${WORLDTMP}/legacy/${_dir} 365.endfor 366.for _dir in \ 367 lib usr/bin usr/include usr/lib/compat/aout usr/libdata/ldscripts \ 368 usr/libexec usr/sbin usr/share/misc 369 mkdir -p ${WORLDTMP}/${_dir} 370.endfor 371 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 372 -p ${WORLDTMP}/usr/include >/dev/null 373 ln -sf ${.CURDIR}/sys ${WORLDTMP} 374.if ${MK_BIND_LIBS} != "no" 375 mtree -deU -f ${.CURDIR}/etc/mtree/BIND.include.dist \ 376 -p ${WORLDTMP}/usr/include >/dev/null 377.endif 378_legacy: 379 @echo 380 @echo "--------------------------------------------------------------" 381 @echo ">>> stage 1.1: legacy release compatibility shims" 382 @echo "--------------------------------------------------------------" 383 ${_+_}cd ${.CURDIR}; ${BMAKE} legacy 384_bootstrap-tools: 385 @echo 386 @echo "--------------------------------------------------------------" 387 @echo ">>> stage 1.2: bootstrap tools" 388 @echo "--------------------------------------------------------------" 389 ${_+_}cd ${.CURDIR}; ${BMAKE} bootstrap-tools 390_cleanobj: 391.if !defined(NO_CLEAN) 392 @echo 393 @echo "--------------------------------------------------------------" 394 @echo ">>> stage 2.1: cleaning up the object tree" 395 @echo "--------------------------------------------------------------" 396 ${_+_}cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} 397.if ${TARGET_ARCH} == "amd64" 398 ${_+_}cd ${.CURDIR}; ${LIB32WMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/} 399.endif 400.endif 401_obj: 402 @echo 403 @echo "--------------------------------------------------------------" 404 @echo ">>> stage 2.2: rebuilding the object tree" 405 @echo "--------------------------------------------------------------" 406 ${_+_}cd ${.CURDIR}; ${WMAKE} par-obj 407_build-tools: 408 @echo 409 @echo "--------------------------------------------------------------" 410 @echo ">>> stage 2.3: build tools" 411 @echo "--------------------------------------------------------------" 412 ${_+_}cd ${.CURDIR}; ${TMAKE} build-tools 413_cross-tools: 414 @echo 415 @echo "--------------------------------------------------------------" 416 @echo ">>> stage 3: cross tools" 417 @echo "--------------------------------------------------------------" 418 ${_+_}cd ${.CURDIR}; ${XMAKE} cross-tools 419_includes: 420 @echo 421 @echo "--------------------------------------------------------------" 422 @echo ">>> stage 4.1: building includes" 423 @echo "--------------------------------------------------------------" 424 ${_+_}cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes 425_libraries: 426 @echo 427 @echo "--------------------------------------------------------------" 428 @echo ">>> stage 4.2: building libraries" 429 @echo "--------------------------------------------------------------" 430 ${_+_}cd ${.CURDIR}; \ 431 ${WMAKE} -DNO_FSCHG -DWITHOUT_HTML -DWITHOUT_INFO -DNO_LINT \ 432 -DWITHOUT_MAN -DWITHOUT_NLS -DWITHOUT_PROFILE libraries 433_depend: 434 @echo 435 @echo "--------------------------------------------------------------" 436 @echo ">>> stage 4.3: make dependencies" 437 @echo "--------------------------------------------------------------" 438 ${_+_}cd ${.CURDIR}; ${WMAKE} par-depend 439everything: 440 @echo 441 @echo "--------------------------------------------------------------" 442 @echo ">>> stage 4.4: building everything" 443 @echo "--------------------------------------------------------------" 444 ${_+_}cd ${.CURDIR}; ${WMAKE} par-all 445.if ${TARGET_ARCH} == "amd64" 446build32: 447 @echo 448 @echo "--------------------------------------------------------------" 449 @echo ">>> stage 5.1: building 32 bit shim libraries" 450 @echo "--------------------------------------------------------------" 451.for _dir in \ 452 usr/include usr/lib32 usr/share/misc 453 mkdir -p ${LIB32TMP}/${_dir} 454.endfor 455 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 456 -p ${LIB32TMP}/usr/include >/dev/null 457 mkdir -p ${WORLDTMP} 458 ln -sf ${.CURDIR}/sys ${WORLDTMP} 459.if ${MK_KERBEROS} != "no" 460.for _t in obj depend all 461 cd ${.CURDIR}/kerberos5/tools; \ 462 MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ 463 ${_t} 464.endfor 465.endif 466.for _t in obj includes 467 cd ${.CURDIR}/include; ${LIB32WMAKE} ${_t} 468 cd ${.CURDIR}/lib; ${LIB32WMAKE} ${_t} 469.if ${MK_CDDL} != "no" 470 cd ${.CURDIR}/cddl/lib; ${LIB32WMAKE} ${_t} 471.endif 472 cd ${.CURDIR}/gnu/lib; ${LIB32WMAKE} ${_t} 473.if ${MK_CRYPT} != "no" 474 cd ${.CURDIR}/secure/lib; ${LIB32WMAKE} ${_t} 475.endif 476.if ${MK_KERBEROS} != "no" 477 cd ${.CURDIR}/kerberos5/lib; ${LIB32WMAKE} ${_t} 478.endif 479.endfor 480.for _dir in usr.bin/lex/lib 481 cd ${.CURDIR}/${_dir}; ${LIB32WMAKE} obj 482.endfor 483.for _dir in lib/ncurses/ncurses lib/ncurses/ncursesw lib/libmagic 484 cd ${.CURDIR}/${_dir}; \ 485 MAKEOBJDIRPREFIX=${OBJTREE}/lib32 ${MAKE} SSP_CFLAGS= DESTDIR= \ 486 build-tools 487.endfor 488 cd ${.CURDIR}; \ 489 ${LIB32WMAKE} -f Makefile.inc1 libraries 490.for _t in obj depend all 491 cd ${.CURDIR}/libexec/rtld-elf; PROG=ld-elf32.so.1 ${LIB32WMAKE} ${_t} 492 cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32WMAKE} ${_t} 493.endfor 494 495distribute32 install32: 496.if make(distribute32) 497 mkdir -p ${DISTDIR}/${DISTRIBUTION}/usr/lib32 # XXX add to mtree 498 mkdir -p ${DISTDIR}/${DISTRIBUTION}/usr/lib32/dtrace # XXX add to mtree 499.else 500 mkdir -p ${DESTDIR}/usr/lib32 # XXX add to mtree 501 mkdir -p ${DESTDIR}/usr/lib32/dtrace # XXX add to mtree 502.endif 503 cd ${.CURDIR}/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 504.if ${MK_CDDL} != "no" 505 cd ${.CURDIR}/cddl/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 506.endif 507 cd ${.CURDIR}/gnu/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 508.if ${MK_CRYPT} != "no" 509 cd ${.CURDIR}/secure/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 510.endif 511.if ${MK_KERBEROS} != "no" 512 cd ${.CURDIR}/kerberos5/lib; ${LIB32IMAKE} ${.TARGET:S/32$//} 513.endif 514 cd ${.CURDIR}/libexec/rtld-elf; \ 515 PROG=ld-elf32.so.1 ${LIB32IMAKE} ${.TARGET:S/32$//} 516 cd ${.CURDIR}/usr.bin/ldd; PROG=ldd32 ${LIB32IMAKE} ${.TARGET:S/32$//} 517.endif 518 519WMAKE_TGTS= 520.if !defined(SUBDIR_OVERRIDE) 521WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools 522.endif 523WMAKE_TGTS+= _cleanobj _obj _build-tools 524.if !defined(SUBDIR_OVERRIDE) 525WMAKE_TGTS+= _cross-tools 526.endif 527WMAKE_TGTS+= _includes _libraries _depend everything 528.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no" 529WMAKE_TGTS+= build32 530.endif 531 532buildworld: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 533.ORDER: buildworld_prologue ${WMAKE_TGTS} buildworld_epilogue 534 535buildworld_prologue: 536 @echo "--------------------------------------------------------------" 537 @echo ">>> World build started on `LC_ALL=C date`" 538 @echo "--------------------------------------------------------------" 539 540buildworld_epilogue: 541 @echo 542 @echo "--------------------------------------------------------------" 543 @echo ">>> World build completed on `LC_ALL=C date`" 544 @echo "--------------------------------------------------------------" 545 546# 547# We need to have this as a target because the indirection between Makefile 548# and Makefile.inc1 causes the correct PATH to be used, rather than a 549# modification of the current environment's PATH. In addition, we need 550# to quote multiword values. 551# 552buildenvvars: 553 @echo ${WMAKEENV:Q} 554 555buildenv: 556 @echo Entering world for ${TARGET_ARCH}:${TARGET} 557 @cd ${.CURDIR} && env ${WMAKEENV} sh || true 558 559TOOLCHAIN_TGTS= ${WMAKE_TGTS:N_depend:Neverything:Nbuild32} 560toolchain: ${TOOLCHAIN_TGTS} 561kernel-toolchain: ${TOOLCHAIN_TGTS:N_includes:N_libraries} 562 563# 564# installcheck 565# 566# Checks to be sure system is ready for installworld/installkernel. 567# 568installcheck: 569 570# 571# Require DESTDIR to be set if installing for a different architecture. 572# 573.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${TARGET} != ${MACHINE} 574.if !make(distributeworld) 575installcheck: installcheck_DESTDIR 576installcheck_DESTDIR: 577.if !defined(DESTDIR) || empty(DESTDIR) 578 @echo "ERROR: Please set DESTDIR!"; \ 579 false 580.endif 581.endif 582.endif 583 584# 585# Check for missing UIDs/GIDs. 586# 587CHECK_UIDS= 588CHECK_GIDS= audit 589.if ${MK_SENDMAIL} != "no" 590CHECK_UIDS+= smmsp 591CHECK_GIDS+= smmsp 592.endif 593.if ${MK_PF} != "no" 594CHECK_UIDS+= proxy 595CHECK_GIDS+= proxy authpf 596.endif 597installcheck: installcheck_UGID 598installcheck_UGID: 599.for uid in ${CHECK_UIDS} 600 @if ! `id -u ${uid} >/dev/null 2>&1`; then \ 601 echo "ERROR: Required ${uid} user is missing, see /usr/src/UPDATING."; \ 602 false; \ 603 fi 604.endfor 605.for gid in ${CHECK_GIDS} 606 @if ! `find / -prune -group ${gid} >/dev/null 2>&1`; then \ 607 echo "ERROR: Required ${gid} group is missing, see /usr/src/UPDATING."; \ 608 false; \ 609 fi 610.endfor 611 612# 613# Required install tools to be saved in a scratch dir for safety. 614# 615ITOOLS= [ awk cap_mkdb cat chflags chmod chown \ 616 date echo egrep find grep install-info \ 617 ln lockf make mkdir mtree mv pwd_mkdb rm sed sh sysctl \ 618 test true uname wc zic 619 620# 621# distributeworld 622# 623# Distributes everything compiled by a `buildworld'. 624# 625# installworld 626# 627# Installs everything compiled by a 'buildworld'. 628# 629distributeworld installworld: installcheck 630 mkdir -p ${INSTALLTMP} 631 progs=$$(for prog in ${ITOOLS}; do \ 632 if progpath=`which $$prog`; then \ 633 echo $$progpath; \ 634 else \ 635 echo "Required tool $$prog not found in PATH." >&2; \ 636 exit 1; \ 637 fi; \ 638 done); \ 639 libs=$$(ldd -f "%o %p\n" -f "%o %p\n" $$progs 2>/dev/null | sort -u | \ 640 while read line; do \ 641 set -- $$line; \ 642 if [ "$$2 $$3" != "not found" ]; then \ 643 echo $$2; \ 644 else \ 645 echo "Required library $$1 not found." >&2; \ 646 exit 1; \ 647 fi; \ 648 done); \ 649 cp $$libs $$progs ${INSTALLTMP} 650 cp -R $${PATH_LOCALE:-"/usr/share/locale"} ${INSTALLTMP}/locale 651 ${_+_}cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}; \ 652 ${IMAKEENV} rm -rf ${INSTALLTMP} 653 654# 655# reinstall 656# 657# If you have a build server, you can NFS mount the source and obj directories 658# and do a 'make reinstall' on the *client* to install new binaries from the 659# most recent server build. 660# 661reinstall: 662 @echo "--------------------------------------------------------------" 663 @echo ">>> Making hierarchy" 664 @echo "--------------------------------------------------------------" 665 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy 666 @echo 667 @echo "--------------------------------------------------------------" 668 @echo ">>> Installing everything" 669 @echo "--------------------------------------------------------------" 670 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 671.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no" 672 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32 673.endif 674 675redistribute: 676 @echo "--------------------------------------------------------------" 677 @echo ">>> Distributing everything" 678 @echo "--------------------------------------------------------------" 679 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 680.if ${TARGET_ARCH} == "amd64" && ${MK_LIB32} != "no" 681 ${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute32 \ 682 DISTRIBUTION=lib32 683.endif 684 685distrib-dirs distribution: 686 cd ${.CURDIR}/etc; ${CROSSENV} PATH=${TMPPATH} ${MAKE} ${.TARGET} 687 688# 689# buildkernel and installkernel 690# 691# Which kernels to build and/or install is specified by setting 692# KERNCONF. If not defined a GENERIC kernel is built/installed. 693# Only the existing (depending TARGET) config files are used 694# for building kernels and only the first of these is designated 695# as the one being installed. 696# 697# Note that we have to use TARGET instead of TARGET_ARCH when 698# we're in kernel-land. Since only TARGET_ARCH is (expected) to 699# be set to cross-build, we have to make sure TARGET is set 700# properly. 701 702.if defined(KERNFAST) 703NO_KERNELCLEAN= t 704NO_KERNELCONFIG= t 705NO_KERNELDEPEND= t 706# Shortcut for KERNCONF=Blah -DKERNFAST is now KERNFAST=Blah 707.if !defined(KERNCONF) && ${KERNFAST} != "1" 708KERNCONF=${KERNFAST} 709.endif 710.endif 711.if !defined(KERNCONF) && defined(KERNEL) 712KERNCONF= ${KERNEL} 713KERNWARN= 714.else 715KERNCONF?= GENERIC 716.endif 717INSTKERNNAME?= kernel 718 719KERNSRCDIR?= ${.CURDIR}/sys 720KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 721KRNLOBJDIR= ${OBJTREE}${KERNSRCDIR} 722KERNCONFDIR?= ${KRNLCONFDIR} 723 724BUILDKERNELS= 725INSTALLKERNEL= 726.for _kernel in ${KERNCONF} 727.if exists(${KERNCONFDIR}/${_kernel}) 728BUILDKERNELS+= ${_kernel} 729.if empty(INSTALLKERNEL) 730INSTALLKERNEL= ${_kernel} 731.endif 732.endif 733.endfor 734 735# 736# buildkernel 737# 738# Builds all kernels defined by BUILDKERNELS. 739# 740buildkernel: 741.if empty(BUILDKERNELS) 742 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; \ 743 false 744.endif 745.if defined(KERNWARN) 746 @echo "--------------------------------------------------------------" 747 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" 748 @echo "--------------------------------------------------------------" 749 @sleep 3 750.endif 751 @echo 752.for _kernel in ${BUILDKERNELS} 753 @echo "--------------------------------------------------------------" 754 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 755 @echo "--------------------------------------------------------------" 756 @echo "===> ${_kernel}" 757 mkdir -p ${KRNLOBJDIR} 758.if !defined(NO_KERNELCONFIG) 759 @echo 760 @echo "--------------------------------------------------------------" 761 @echo ">>> stage 1: configuring the kernel" 762 @echo "--------------------------------------------------------------" 763 cd ${KRNLCONFDIR}; \ 764 PATH=${TMPPATH} \ 765 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 766 ${KERNCONFDIR}/${_kernel} 767.endif 768.if !defined(NO_CLEAN) && !defined(NO_KERNELCLEAN) 769 @echo 770 @echo "--------------------------------------------------------------" 771 @echo ">>> stage 2.1: cleaning up the object tree" 772 @echo "--------------------------------------------------------------" 773 cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} ${CLEANDIR} 774.endif 775 @echo 776 @echo "--------------------------------------------------------------" 777 @echo ">>> stage 2.2: rebuilding the object tree" 778 @echo "--------------------------------------------------------------" 779 cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} obj 780 @echo 781 @echo "--------------------------------------------------------------" 782 @echo ">>> stage 2.3: build tools" 783 @echo "--------------------------------------------------------------" 784 cd ${KRNLOBJDIR}/${_kernel}; \ 785 MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ 786 ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF \ 787 -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile 788# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case. 789.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules) 790.for target in obj depend all 791 cd ${KERNSRCDIR}/modules/aic7xxx/aicasm; \ 792 MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \ 793 ${MAKE} SSP_CFLAGS= -DNO_CPU_CFLAGS -DNO_CTF ${target} 794.endfor 795.endif 796.if !defined(NO_KERNELDEPEND) 797 @echo 798 @echo "--------------------------------------------------------------" 799 @echo ">>> stage 3.1: making dependencies" 800 @echo "--------------------------------------------------------------" 801 cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} depend -DNO_MODULES_OBJ 802.endif 803 @echo 804 @echo "--------------------------------------------------------------" 805 @echo ">>> stage 3.2: building everything" 806 @echo "--------------------------------------------------------------" 807 cd ${KRNLOBJDIR}/${_kernel}; ${KMAKE} all -DNO_MODULES_OBJ 808 @echo "--------------------------------------------------------------" 809 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 810 @echo "--------------------------------------------------------------" 811.endfor 812 813# 814# installkernel, etc. 815# 816# Install the kernel defined by INSTALLKERNEL 817# 818installkernel installkernel.debug \ 819reinstallkernel reinstallkernel.debug: installcheck 820.if empty(INSTALLKERNEL) 821 @echo "ERROR: No kernel \"${KERNCONF}\" to install."; \ 822 false 823.endif 824 @echo "--------------------------------------------------------------" 825 @echo ">>> Installing kernel" 826 @echo "--------------------------------------------------------------" 827 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 828 ${CROSSENV} PATH=${TMPPATH} \ 829 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel//} 830 831# 832# doxygen 833# 834# Build the API documentation with doxygen 835# 836doxygen: 837 @if [ ! -x `/usr/bin/which doxygen` ]; then \ 838 echo "You need doxygen (devel/doxygen) to generate the API documentation of the kernel." | /usr/bin/fmt; \ 839 exit 1; \ 840 fi 841 cd ${.CURDIR}/tools/kerneldoc/subsys && ${MAKE} obj all 842 843# 844# update 845# 846# Update the source tree, by running cvsup and/or running cvs to update to the 847# latest copy. 848# 849update: 850.if defined(SUP_UPDATE) 851 @echo "--------------------------------------------------------------" 852 @echo ">>> Running ${SUP}" 853 @echo "--------------------------------------------------------------" 854.if defined(SUPFILE) 855 @${SUP} ${SUPFLAGS} ${SUPFILE} 856.endif 857.if defined(SUPFILE1) 858 @${SUP} ${SUPFLAGS} ${SUPFILE1} 859.endif 860.if defined(SUPFILE2) 861 @${SUP} ${SUPFLAGS} ${SUPFILE2} 862.endif 863.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE) 864 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} 865.endif 866.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) 867 @${SUP} ${SUPFLAGS} ${DOCSUPFILE} 868.endif 869.endif 870.if defined(CVS_UPDATE) 871 @echo "--------------------------------------------------------------" 872 @echo ">>> Updating ${.CURDIR} from CVS repository" ${CVSROOT} 873 @echo "--------------------------------------------------------------" 874 cd ${.CURDIR}; ${CVS} -R -q update ${CVSFLAGS} 875.endif 876 877# 878# ------------------------------------------------------------------------ 879# 880# From here onwards are utility targets used by the 'make world' and 881# related targets. If your 'world' breaks, you may like to try to fix 882# the problem and manually run the following targets to attempt to 883# complete the build. Beware, this is *not* guaranteed to work, you 884# need to have a pretty good grip on the current state of the system 885# to attempt to manually finish it. If in doubt, 'make world' again. 886# 887 888# 889# legacy: Build compatibility shims for the next three targets 890# 891legacy: 892.if ${BOOTSTRAPPING} < 600034 && ${BOOTSTRAPPING} != 0 893 @echo "ERROR: Source upgrades from versions prior to 6.0 not supported."; \ 894 false 895.endif 896.for _tool in tools/build 897 ${_+_}@${ECHODIR} "===> ${_tool} (obj,includes,depend,all,install)"; \ 898 cd ${.CURDIR}/${_tool}; \ 899 ${MAKE} DIRPRFX=${_tool}/ obj; \ 900 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \ 901 ${MAKE} DIRPRFX=${_tool}/ depend; \ 902 ${MAKE} DIRPRFX=${_tool}/ all; \ 903 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 904.endfor 905 906# 907# bootstrap-tools: Build tools needed for compatibility 908# 909.if ${MK_GAMES} != "no" 910_strfile= games/fortune/strfile 911.endif 912 913.if ${MK_CXX} != "no" 914_gperf= gnu/usr.bin/gperf 915.if ${BOOTSTRAPPING} < 700004 916_groff= gnu/usr.bin/groff 917.else 918_groff= gnu/usr.bin/groff/tmac 919.endif 920.endif 921 922.if ${BOOTSTRAPPING} >= 700044 && ${BOOTSTRAPPING} < 800022 923_ar= usr.bin/ar 924.endif 925 926.if ${BOOTSTRAPPING} < 800013 927_mklocale= usr.bin/mklocale 928.endif 929 930.if ${BOOTSTRAPPING} < 700018 931_gensnmptree= usr.sbin/bsnmpd/gensnmptree 932.endif 933 934.if ${MK_RESCUE} != "no" && \ 935 ${BOOTSTRAPPING} < 700026 936_crunchgen= usr.sbin/crunch/crunchgen 937.endif 938 939.if ${MK_CDDL} != "no" 940_dtrace_tools= cddl/usr.bin/sgsmsg cddl/lib/libctf lib/libelf \ 941 lib/libdwarf cddl/usr.bin/ctfconvert cddl/usr.bin/ctfmerge 942.endif 943 944bootstrap-tools: 945.for _tool in \ 946 ${_dtrace_tools} \ 947 ${_strfile} \ 948 ${_gperf} \ 949 ${_groff} \ 950 ${_ar} \ 951 usr.bin/lorder \ 952 usr.bin/makewhatis \ 953 ${_mklocale} \ 954 usr.bin/rpcgen \ 955 usr.bin/xinstall \ 956 ${_gensnmptree} \ 957 usr.sbin/config \ 958 ${_crunchgen} 959 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 960 cd ${.CURDIR}/${_tool}; \ 961 ${MAKE} DIRPRFX=${_tool}/ obj; \ 962 ${MAKE} DIRPRFX=${_tool}/ depend; \ 963 ${MAKE} DIRPRFX=${_tool}/ all; \ 964 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 965.endfor 966 967# 968# build-tools: Build special purpose build tools 969# 970.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules) 971_aicasm= sys/modules/aic7xxx/aicasm 972.endif 973 974.if !defined(NO_SHARE) 975_share= share/syscons/scrnmaps 976.endif 977 978.if ${MK_KERBEROS} != "no" 979_kerberos5_tools= kerberos5/tools 980.endif 981 982.if ${MK_RESCUE} != "no" 983_rescue= rescue/rescue 984.endif 985 986build-tools: 987.for _tool in \ 988 bin/csh \ 989 bin/sh \ 990 ${_rescue} \ 991 lib/ncurses/ncurses \ 992 lib/ncurses/ncursesw \ 993 ${_share} \ 994 ${_aicasm} \ 995 usr.bin/awk \ 996 lib/libmagic \ 997 usr.sbin/sysinstall 998 ${_+_}@${ECHODIR} "===> ${_tool} (obj,build-tools)"; \ 999 cd ${.CURDIR}/${_tool}; \ 1000 ${MAKE} DIRPRFX=${_tool}/ obj; \ 1001 ${MAKE} DIRPRFX=${_tool}/ build-tools 1002.endfor 1003.for _tool in \ 1004 gnu/usr.bin/cc/cc_tools \ 1005 ${_kerberos5_tools} 1006 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all)"; \ 1007 cd ${.CURDIR}/${_tool}; \ 1008 ${MAKE} DIRPRFX=${_tool}/ obj; \ 1009 ${MAKE} DIRPRFX=${_tool}/ depend; \ 1010 ${MAKE} DIRPRFX=${_tool}/ all 1011.endfor 1012 1013# 1014# cross-tools: Build cross-building tools 1015# 1016.if ${TARGET_ARCH} != ${MACHINE_ARCH} || ${BOOTSTRAPPING} < 800035 1017.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" 1018_btxld= usr.sbin/btxld 1019.endif 1020.endif 1021.if ${TARGET_ARCH} != ${MACHINE_ARCH} 1022.if ${MK_RESCUE} != "no" || defined(RELEASEDIR) 1023_crunchide= usr.sbin/crunch/crunchide 1024.endif 1025.if ${TARGET_ARCH} == "i386" && defined(RELEASEDIR) 1026_kgzip= usr.sbin/kgzip 1027.endif 1028.endif 1029 1030cross-tools: 1031.for _tool in \ 1032 gnu/usr.bin/binutils \ 1033 gnu/usr.bin/cc \ 1034 usr.bin/sed \ 1035 usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint \ 1036 ${_btxld} \ 1037 ${_crunchide} \ 1038 ${_kgzip} 1039 ${_+_}@${ECHODIR} "===> ${_tool} (obj,depend,all,install)"; \ 1040 cd ${.CURDIR}/${_tool}; \ 1041 ${MAKE} DIRPRFX=${_tool}/ obj; \ 1042 ${MAKE} DIRPRFX=${_tool}/ depend; \ 1043 ${MAKE} DIRPRFX=${_tool}/ all; \ 1044 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install 1045.endfor 1046 1047# 1048# hierarchy - ensure that all the needed directories are present 1049# 1050hierarchy: 1051 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs 1052 1053# 1054# libraries - build all libraries, and install them under ${DESTDIR}. 1055# 1056# The list of libraries with dependents (${_prebuild_libs}) and their 1057# interdependencies (__L) are built automatically by the 1058# ${.CURDIR}/tools/make_libdeps.sh script. 1059# 1060libraries: 1061 cd ${.CURDIR}; \ 1062 ${MAKE} -f Makefile.inc1 _prereq_libs; \ 1063 ${MAKE} -f Makefile.inc1 _startup_libs; \ 1064 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 1065 ${MAKE} -f Makefile.inc1 _generic_libs; 1066 1067# 1068# static libgcc.a prerequisite for shared libc 1069# 1070_prereq_libs= gnu/lib/libgcc 1071 1072# These dependencies are not automatically generated: 1073# 1074# gnu/lib/csu, gnu/lib/libgcc, lib/csu and lib/libc must be built before 1075# all shared libraries for ELF. 1076# 1077_startup_libs= gnu/lib/csu 1078.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf) 1079_startup_libs+= lib/csu/${MACHINE_ARCH}-elf 1080.else 1081_startup_libs+= lib/csu/${MACHINE_ARCH} 1082.endif 1083_startup_libs+= gnu/lib/libgcc 1084_startup_libs+= lib/libc 1085 1086gnu/lib/libgcc__L: lib/libc__L 1087 1088_prebuild_libs= ${_kerberos5_lib_libasn1} ${_kerberos5_lib_libkrb5} \ 1089 ${_kerberos5_lib_libhx509} ${_kerberos5_lib_libroken} \ 1090 ${_kerberos5_lib_libheimntlm} ${_kerberos5_lib_libgssapi_krb5} \ 1091 lib/libbz2 lib/libcom_err lib/libcrypt lib/libelf \ 1092 lib/libexpat \ 1093 ${_lib_cddl} ${_lib_libgssapi} ${_lib_libipx} \ 1094 lib/libkiconv lib/libkvm lib/libmd \ 1095 lib/ncurses/ncurses lib/ncurses/ncursesw \ 1096 lib/libopie lib/libpam ${_lib_libthr} \ 1097 lib/libradius lib/libsbuf lib/libtacplus lib/libutil \ 1098 ${_lib_libypclnt} lib/libz lib/msun \ 1099 ${_secure_lib_libcrypto} ${_secure_lib_libssh} \ 1100 ${_secure_lib_libssl} lib/libdwarf lib/libproc 1101 1102.if ${MK_LIBTHR} != "no" 1103_lib_libthr= lib/libthr 1104.endif 1105 1106_generic_libs= ${_cddl_lib} gnu/lib ${_kerberos5_lib} lib ${_secure_lib} usr.bin/lex/lib 1107 1108lib/libopie__L lib/libtacplus__L: lib/libmd__L 1109 1110.if ${MK_CDDL} != "no" 1111_cddl_lib= cddl/lib 1112.endif 1113 1114.if ${MK_CRYPT} != "no" 1115.if ${MK_OPENSSL} != "no" 1116_secure_lib_libcrypto= secure/lib/libcrypto 1117_secure_lib_libssl= secure/lib/libssl 1118lib/libradius__L secure/lib/libssl__L: secure/lib/libcrypto__L 1119.if ${MK_OPENSSH} != "no" 1120_secure_lib_libssh= secure/lib/libssh 1121secure/lib/libssh__L: lib/libz__L secure/lib/libcrypto__L lib/libcrypt__L 1122.if ${MK_KERBEROS} != "no" 1123kerberos5/lib/libgssapi_krb5__L: kerberos5/lib/libkrb5__L \ 1124 kerberos5/lib/libhx509__L kerberos5/lib/libasn1__L lib/libcom_err__L \ 1125 lib/libmd__L kerberos5/lib/libroken__L secure/lib/libcrypto__L \ 1126 lib/libcrypt__L 1127secure/lib/libssh__L: lib/libgssapi__L kerberos5/lib/libgssapi_krb5__L 1128.endif 1129.endif 1130.endif 1131_secure_lib= secure/lib 1132.endif 1133 1134.if ${MK_IPX} != "no" 1135_lib_libipx= lib/libipx 1136.endif 1137 1138.if ${MK_KERBEROS} != "no" 1139_kerberos5_lib= kerberos5/lib 1140_kerberos5_lib_libasn1= kerberos5/lib/libasn1 1141_kerberos5_lib_libkrb5= kerberos5/lib/libkrb5 1142_kerberos5_lib_libhx509= kerberos5/lib/libhx509 1143_kerberos5_lib_libroken= kerberos5/lib/libroken 1144_kerberos5_lib_libheimntlm= kerberos5/lib/libheimntlm 1145_kerberos5_lib_libgssapi_krb5= kerberos5/lib/libgssapi_krb5 1146_lib_libgssapi= lib/libgssapi 1147.endif 1148 1149.if ${MK_NIS} != "no" 1150_lib_libypclnt= lib/libypclnt 1151.endif 1152 1153.if ${MK_OPENSSL} == "no" 1154lib/libradius__L: lib/libmd__L 1155.endif 1156 1157.for _lib in ${_prereq_libs} 1158${_lib}__PL: .PHONY 1159.if exists(${.CURDIR}/${_lib}) 1160 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ 1161 cd ${.CURDIR}/${_lib}; \ 1162 ${MAKE} DIRPRFX=${_lib}/ obj; \ 1163 ${MAKE} DIRPRFX=${_lib}/ depend; \ 1164 ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ all; \ 1165 ${MAKE} -DWITHOUT_PROFILE -DNO_PIC DIRPRFX=${_lib}/ install 1166.endif 1167.endfor 1168 1169.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs} 1170${_lib}__L: .PHONY 1171.if exists(${.CURDIR}/${_lib}) 1172 ${_+_}@${ECHODIR} "===> ${_lib} (obj,depend,all,install)"; \ 1173 cd ${.CURDIR}/${_lib}; \ 1174 ${MAKE} DIRPRFX=${_lib}/ obj; \ 1175 ${MAKE} DIRPRFX=${_lib}/ depend; \ 1176 ${MAKE} DIRPRFX=${_lib}/ all; \ 1177 ${MAKE} DIRPRFX=${_lib}/ install 1178.endif 1179.endfor 1180 1181# libpam is special: we need to build static PAM modules before 1182# static PAM library, and dynamic PAM library before dynamic PAM 1183# modules. 1184lib/libpam__L: .PHONY 1185 ${_+_}@${ECHODIR} "===> lib/libpam (obj,depend,all,install)"; \ 1186 cd ${.CURDIR}/lib/libpam; \ 1187 ${MAKE} DIRPRFX=lib/libpam/ obj; \ 1188 ${MAKE} DIRPRFX=lib/libpam/ depend; \ 1189 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \ 1190 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install 1191 1192_prereq_libs: ${_prereq_libs:S/$/__PL/} 1193_startup_libs: ${_startup_libs:S/$/__L/} 1194_prebuild_libs: ${_prebuild_libs:S/$/__L/} 1195_generic_libs: ${_generic_libs:S/$/__L/} 1196 1197.for __target in all clean cleandepend cleandir depend includes obj 1198.for entry in ${SUBDIR} 1199${entry}.${__target}__D: .PHONY 1200 ${_+_}@if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ 1201 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH} (${__target})"; \ 1202 edir=${entry}.${MACHINE_ARCH}; \ 1203 cd ${.CURDIR}/$${edir}; \ 1204 else \ 1205 ${ECHODIR} "===> ${DIRPRFX}${entry} (${__target})"; \ 1206 edir=${entry}; \ 1207 cd ${.CURDIR}/$${edir}; \ 1208 fi; \ 1209 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ 1210.endfor 1211par-${__target}: ${SUBDIR:S/$/.${__target}__D/} 1212.endfor 1213 1214.include <bsd.subdir.mk> 1215 1216.if make(check-old) || make(check-old-dirs) || \ 1217 make(check-old-files) || make(check-old-libs) || \ 1218 make(delete-old) || make(delete-old-dirs) || \ 1219 make(delete-old-files) || make(delete-old-libs) 1220 1221# 1222# check for / delete old files section 1223# 1224 1225.include "ObsoleteFiles.inc" 1226 1227OLD_LIBS_MESSAGE="Please be sure no application still uses those libraries, \ 1228else you can not start such an application. Consult UPDATING for more \ 1229information regarding how to cope with the removal/revision bump of a \ 1230specific library." 1231 1232.if !defined(BATCH_DELETE_OLD_FILES) 1233RM_I=-i 1234.else 1235RM_I=-v 1236.endif 1237 1238delete-old-files: 1239 @echo ">>> Removing old files (only deletes safe to delete libs)" 1240# Ask for every old file if the user really wants to remove it. 1241# It's annoying, but better safe than sorry. 1242 @for file in ${OLD_FILES}; do \ 1243 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 1244 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 1245 rm ${RM_I} "${DESTDIR}/$${file}"; \ 1246 fi; \ 1247 done 1248# Remove catpages without corresponding manpages. 1249 @3<&0; \ 1250 find ${DESTDIR}/usr/share/man/cat* ! -type d | \ 1251 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 1252 while read catpage; do \ 1253 read manpage; \ 1254 if [ ! -e "$${manpage}" ]; then \ 1255 rm ${RM_I} $${catpage} <&3 ; \ 1256 fi; \ 1257 done 1258 @echo ">>> Old files removed" 1259 1260check-old-files: 1261 @echo ">>> Checking for old files" 1262 @for file in ${OLD_FILES}; do \ 1263 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 1264 echo "${DESTDIR}/$${file}"; \ 1265 fi; \ 1266 done 1267# Check for catpages without corresponding manpages. 1268 @find ${DESTDIR}/usr/share/man/cat* ! -type d | \ 1269 sed -ep -e's:${DESTDIR}/usr/share/man/cat:${DESTDIR}/usr/share/man/man:' | \ 1270 while read catpage; do \ 1271 read manpage; \ 1272 if [ ! -e "$${manpage}" ]; then \ 1273 echo $${catpage} ; \ 1274 fi; \ 1275 done 1276 1277delete-old-libs: 1278 @echo ">>> Removing old libraries" 1279 @echo "${OLD_LIBS_MESSAGE}" | fmt 1280 @for file in ${OLD_LIBS}; do \ 1281 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 1282 chflags noschg "${DESTDIR}/$${file}" 2>/dev/null || true; \ 1283 rm ${RM_I} "${DESTDIR}/$${file}"; \ 1284 fi; \ 1285 done 1286 @echo ">>> Old libraries removed" 1287 1288check-old-libs: 1289 @echo ">>> Checking for old libraries" 1290 @for file in ${OLD_LIBS}; do \ 1291 if [ -f "${DESTDIR}/$${file}" -o -L "${DESTDIR}/$${file}" ]; then \ 1292 echo "${DESTDIR}/$${file}"; \ 1293 fi; \ 1294 done 1295 1296delete-old-dirs: 1297 @echo ">>> Removing old directories" 1298 @for dir in ${OLD_DIRS}; do \ 1299 if [ -d "${DESTDIR}/$${dir}" ]; then \ 1300 rmdir -v "${DESTDIR}/$${dir}" || true; \ 1301 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 1302 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 1303 fi; \ 1304 done 1305 @echo ">>> Old directories removed" 1306 1307check-old-dirs: 1308 @echo ">>> Checking for old directories" 1309 @for dir in ${OLD_DIRS}; do \ 1310 if [ -d "${DESTDIR}/$${dir}" ]; then \ 1311 echo "${DESTDIR}/$${dir}"; \ 1312 elif [ -L "${DESTDIR}/$${dir}" ]; then \ 1313 echo "${DESTDIR}/$${dir} is a link, please remove everything manually."; \ 1314 fi; \ 1315 done 1316 1317delete-old: delete-old-files delete-old-dirs 1318 @echo "To remove old libraries run '${MAKE} delete-old-libs'." 1319 1320check-old: check-old-files check-old-libs check-old-dirs 1321 @echo "To remove old files and directories run '${MAKE} delete-old'." 1322 @echo "To remove old libraries run '${MAKE} delete-old-libs'." 1323 1324.endif 1325 1326# 1327# showconfig - show build configuration. 1328# 1329showconfig: 1330 @${MAKE} -n -f bsd.own.mk -V dummy -dg1 | grep ^MK_ | sort 1331