1# 2# $FreeBSD$ 3# 4# Make command line options: 5# -DCLOBBER will remove /usr/include 6# -DMAKE_KERBEROS4 to build KerberosIV 7# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir 8# -DNOCLEAN do not clean at all 9# -DNOTOOLS do not rebuild any tools first 10# -DNOCRYPT will prevent building of crypt versions 11# -DNOPROFILE do not build profiled libraries 12# -DNOSECURE do not go into secure subdir 13# -DNOGAMES do not go into games subdir 14# -DNOSHARE do not go into share subdir 15# -DNOINFO do not make or install info files 16# -DNOLIBC_R do not build libc_r. 17# -DNO_FORTRAN do not build g77 and related libraries. 18# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 19 20# 21# The intended user-driven targets are: 22# buildworld - rebuild *everything*, including glue to help do upgrades 23# installworld- install everything built by "buildworld" 24# update - convenient way to update your source tree (eg: sup/cvs) 25# most - build user commands, no libraries or include files 26# installmost - install user commands, no libraries or include files 27# 28# Standard targets (not defined here) are documented in the makefiles in 29# /usr/share/mk. These include: 30# obj depend all install clean cleandepend cleanobj 31 32# Put initial settings here. 33SUBDIR= 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.if exists(${.CURDIR}/share/info) 39SUBDIR+= share/info 40.endif 41 42# We must do include and lib early so that the perl *.ph generation 43# works correctly as it uses the header files installed by this. 44.if exists(${.CURDIR}/include) 45SUBDIR+= include 46.endif 47.if exists(${.CURDIR}/lib) 48SUBDIR+= lib 49.endif 50 51.if exists(${.CURDIR}/bin) 52SUBDIR+= bin 53.endif 54.if exists(${.CURDIR}/games) && !defined(NOGAMES) 55SUBDIR+= games 56.endif 57.if exists(${.CURDIR}/gnu) 58SUBDIR+= gnu 59.endif 60.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ 61 !defined(NOCRYPT) && defined(MAKE_KERBEROS4) 62SUBDIR+= kerberosIV 63.endif 64.if exists(${.CURDIR}/libexec) 65SUBDIR+= libexec 66.endif 67.if exists(${.CURDIR}/sbin) 68SUBDIR+= sbin 69.endif 70.if exists(${.CURDIR}/share) && !defined(NOSHARE) 71SUBDIR+= share 72.endif 73.if exists(${.CURDIR}/sys) 74SUBDIR+= sys 75.endif 76.if exists(${.CURDIR}/usr.bin) 77SUBDIR+= usr.bin 78.endif 79.if exists(${.CURDIR}/usr.sbin) 80SUBDIR+= usr.sbin 81.endif 82.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE) 83SUBDIR+= secure 84.endif 85 86# etc must be last for "distribute" to work 87.if exists(${.CURDIR}/etc) 88SUBDIR+= etc 89.endif 90 91# These are last, since it is nice to at least get the base system 92# rebuilt before you do them. 93.if defined(LOCAL_DIRS) 94.for _DIR in ${LOCAL_DIRS} 95.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile) 96SUBDIR+= ${_DIR} 97.endif 98.endfor 99.endif 100 101OBJDIR= obj 102 103.if defined(NOCLEAN) 104CLEANDIR= 105.else 106.if defined(NOCLEANDIR) 107CLEANDIR= clean cleandepend 108.else 109CLEANDIR= cleandir 110.endif 111.endif 112 113.if !defined(NOCLEAN) 114_NODEPEND= true 115.endif 116.if defined(_NODEPEND) 117_DEPEND= cleandepend 118.else 119_DEPEND= depend 120.endif 121 122SUP?= cvsup 123SUPFLAGS?= -g -L 2 -P - 124 125# 126# While building tools for bootstrapping, we don't need to waste time on 127# shared or profiled libraries, shared linkage, or documentation, except 128# when the tools won't get cleaned we must use the defaults for shared 129# libraries and shared linkage (and this doesn't waste time). 130# XXX actually, we do need to waste time building shared libraries. 131# 132.if defined(NOCLEAN) 133MK_FLAGS= -DWORLD -DNOINFO -DNOMAN -DNOPROFILE 134.else 135MK_FLAGS= -DWORLD -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED 136.endif 137 138# 139# If we're building a cross world, define MACHINE and MACHINE_ARCH for 140# the version of make that we're using. 141# 142.if defined(TARGET) 143CROSS_MAKE_FLAGS+=-DMACHINE=\"${TARGET}\" 144.endif 145.if defined(TARGET_ARCH) 146CROSS_MAKE_FLAGS+=-DMACHINE_ARCH=\"${TARGET_ARCH}\" 147.endif 148 149# 150# Define the location of the temporary installation directory. Note that 151# MAKEOBJDIRPREFIX normally isn't defined so if the current directory is 152# /usr/src, then the world temporary directory is /usr/obj/usr/src/tmp. 153# 154# During the transition from aout to elf format on i386, MAKEOBJDIRPREFIX 155# is set by the parent makefile (Makefile.inc0) to be /usr/obj/${OBJFORMAT} 156# in order to keep aout and elf format files apart. 157# 158.if defined(MAKEOBJDIRPREFIX) 159WORLDTMP= ${MAKEOBJDIRPREFIX}${.CURDIR}/tmp 160.else 161WORLDTMP= /usr/obj${.CURDIR}/tmp 162.endif 163 164# 165# Define the PATH to the build tools. 166# 167# If not building tools, the PATH always points to the installed binaries. 168# The NOTOOLS option assumes that in installed tools are good enough and that 169# the user's PATH will locate to appropriate tools. This option is required 170# for a cross-compiled build environment. 171# 172# If building tools, then the PATH includes the world temporary directories 173# so that the bootstrapped tools are used as soon as they are built. The 174# strict path is for use after all tools are supposed to have been 175# bootstrapped. It doesn't allow any of the installed tools to be used. 176# 177.if defined(NOTOOLS) 178# Default root of the tool tree 179TOOLROOT?= 180# Choose the PATH relative to the root of the tool tree 181PATH= ${TOOLROOT}/sbin:${TOOLROOT}/bin:${TOOLROOT}/usr/sbin:${TOOLROOT}/usr/bin 182.else 183TOOLROOT= ${WORLDTMP} 184.endif 185STRICTTMPPATH= ${TOOLROOT}/sbin:${TOOLROOT}/usr/sbin:${TOOLROOT}/bin:${TOOLROOT}/usr/bin 186TMPPATH= ${STRICTTMPPATH}:${PATH} 187 188# XXX COMPILER_PATH is needed for finding cc1, ld and as 189# XXX GCC_EXEC_PREFIX is for *crt.o. It is probably unnecessary now 190# that LIBRARY_PATH is set. We still can't use -nostdlib, since gcc 191# wouldn't link *crt.o or libgcc if it were used. 192# XXX LD_LIBRARY_PATH is for ld.so. It is also used by ld, although we don't 193# want that - all compile-time library paths should be resolved by gcc. 194# It fails for set[ug]id executables (are any used?). 195COMPILER_ENV= BISON_SIMPLE=${TOOLROOT}/usr/share/misc/bison.simple \ 196 COMPILER_PATH=${TOOLROOT}/usr/libexec:${TOOLROOT}/usr/bin \ 197 GCC_EXEC_PREFIX=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib/ \ 198 LD_LIBRARY_PATH=${TOOLROOT}${SHLIBDIR} \ 199 LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib 200 201BMAKEENV= ${COMPILER_ENV} NOEXTRADEPEND=t PATH=${TMPPATH} \ 202 OBJFORMAT_PATH=${TOOLROOT}/usr/libexec:/usr/libexec 203XTMAKEENV= NOEXTRADEPEND=t 204.if defined(TARGET) 205XMAKEENV= PATH=${TMPPATH} 206.else 207XMAKEENV= PATH=${STRICTTMPPATH} 208.endif 209XMAKEENV+= ${COMPILER_ENV} \ 210 PERL5LIB=${DESTDIR}/usr/libdata/perl/5.00503 \ 211 OBJFORMAT_PATH=${TOOLROOT}/usr/libexec \ 212 CFLAGS="-nostdinc ${CFLAGS}" # XXX -nostdlib 213 214# used to compile and install 'make' in temporary build tree 215MAKETMP= ${WORLDTMP}/make 216IBMAKE= ${BMAKEENV} MAKEOBJDIR=${MAKETMP} ${MAKE} DESTDIR=${WORLDTMP} 217 218.if defined(NOTOOLS) 219# cross tools make 220XTMAKE= ${XTMAKEENV} ${MAKE} DESTDIR=${WORLDTMP} 221# bootstrap make 222BMAKE= ${BMAKEENV} ${MAKE} DESTDIR=${WORLDTMP} 223# cross make used for compilation 224XMAKE= ${XMAKEENV} ${MAKE} DESTDIR=${WORLDTMP} 225# cross make used for final installation 226IXMAKE= ${XMAKEENV} ${MAKE} 227.else 228# cross tools make 229XTMAKE= ${XTMAKEENV} ${WORLDTMP}/usr/bin/make DESTDIR=${WORLDTMP} 230# bootstrap make 231BMAKE= ${BMAKEENV} ${WORLDTMP}/usr/bin/make DESTDIR=${WORLDTMP} 232# cross make used for compilation 233XMAKE= ${XMAKEENV} ${WORLDTMP}/usr/bin/make DESTDIR=${WORLDTMP} 234# cross make used for final installation 235IXMAKE= ${XMAKEENV} ${WORLDTMP}/usr/bin/make 236.endif 237 238# 239# buildworld 240# 241# Attempt to rebuild the entire system, with reasonable chance of 242# success, regardless of how old your existing system is. 243# 244buildworld: check-objformat 245.if !defined(NOCLEAN) 246 @echo 247 @echo "--------------------------------------------------------------" 248 @echo ">>> Cleaning up the temporary ${OBJFORMAT} build tree" 249 @echo "--------------------------------------------------------------" 250 mkdir -p ${WORLDTMP} 251 -chflags -R noschg ${WORLDTMP}/ 252 rm -rf ${WORLDTMP} 253.endif 254.if !defined(NOTOOLS) 255 @echo 256 @echo "--------------------------------------------------------------" 257 @echo ">>> Making make" 258 @echo "--------------------------------------------------------------" 259 mkdir -p ${WORLDTMP}/usr/bin ${MAKETMP} 260 ( \ 261 cd ${.CURDIR}/usr.bin/make; \ 262 MAKEOBJDIRPREFIX=""; unset MAKEOBJDIRPREFIX; \ 263 ${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} all CROSS_MAKE_FLAGS='${CROSS_MAKE_FLAGS}'; \ 264 ${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} install; \ 265 ${IBMAKE} -I${.CURDIR}/share/mk ${MK_FLAGS} clean \ 266 ) 267 @echo 268 @echo "--------------------------------------------------------------" 269 @echo ">>> Making mtree" 270 @echo "--------------------------------------------------------------" 271 mkdir -p ${WORLDTMP}/usr/sbin ${WORLDTMP}/mtree 272 ( \ 273 cd ${.CURDIR}/usr.sbin/mtree; \ 274 MAKEOBJDIRPREFIX=""; unset MAKEOBJDIRPREFIX; \ 275 export MAKEOBJDIR=${WORLDTMP}/mtree; \ 276 ${BMAKE} ${MK_FLAGS} all; \ 277 ${BMAKE} ${MK_FLAGS} -B install clean \ 278 ) 279.endif 280 @echo 281 @echo "--------------------------------------------------------------" 282 @echo ">>> Making hierarchy" 283 @echo "--------------------------------------------------------------" 284 mkdir -p ${WORLDTMP} 285 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 hierarchy 286.if !defined(NOCLEAN) 287 @echo 288 @echo "--------------------------------------------------------------" 289 @echo ">>> Cleaning up the ${OBJFORMAT} obj tree" 290 @echo "--------------------------------------------------------------" 291 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 ${CLEANDIR:S/^/par-/} 292.endif 293 @echo 294 @echo "--------------------------------------------------------------" 295 @echo ">>> Rebuilding the ${OBJFORMAT} obj tree" 296 @echo "--------------------------------------------------------------" 297 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 par-${OBJDIR} 298.if defined(TARGET) 299 @echo 300 @echo "--------------------------------------------------------------" 301 @echo ">>> Rebuilding toolchain for ${TARGET} buildworld" 302 @echo "--------------------------------------------------------------" 303 cd ${.CURDIR}; ${XTMAKE} -f Makefile.inc1 cross-toolchain 304.endif 305.if !defined(NOTOOLS) && !defined(TARGET) 306 @echo 307 @echo "--------------------------------------------------------------" 308 @echo ">>> Rebuilding ${OBJFORMAT} bootstrap tools" 309 @echo "--------------------------------------------------------------" 310 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 bootstrap 311 @echo 312 @echo "--------------------------------------------------------------" 313 @echo ">>> Rebuilding tools necessary to build the include files" 314 @echo "--------------------------------------------------------------" 315 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 include-tools 316.endif 317 @echo 318 @echo "--------------------------------------------------------------" 319 @echo ">>> Rebuilding ${DESTDIR}/usr/include" 320 @echo "--------------------------------------------------------------" 321 cd ${.CURDIR}; SHARED=copies ${BMAKE} -f Makefile.inc1 includes 322 @echo 323 @echo "--------------------------------------------------------------" 324 @echo ">>> Rebuilding bootstrap libraries" 325 @echo "--------------------------------------------------------------" 326 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 bootstrap-libraries 327.if !defined(NOTOOLS) 328 @echo 329 @echo "--------------------------------------------------------------" 330 @echo ">>> Rebuilding tools needed to build libraries" 331 @echo "--------------------------------------------------------------" 332 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 lib-tools 333 @echo 334 @echo "--------------------------------------------------------------" 335 @echo ">>> Rebuilding all other tools needed to build the ${OBJFORMAT} world" 336 @echo "--------------------------------------------------------------" 337 cd ${.CURDIR}; ${BMAKE} -f Makefile.inc1 build-tools 338.endif 339.if !defined(_NODEPEND) 340 @echo 341 @echo "--------------------------------------------------------------" 342 @echo ">>> Rebuilding dependencies" 343 @echo "--------------------------------------------------------------" 344 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 par-depend 345.endif 346 @echo 347 @echo "--------------------------------------------------------------" 348 @echo ">>> Building ${OBJFORMAT} libraries" 349 @echo "--------------------------------------------------------------" 350 cd ${.CURDIR}; ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries 351 @echo 352 @echo "--------------------------------------------------------------" 353 @echo ">>> Building everything.." 354 @echo "--------------------------------------------------------------" 355 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all 356 357everything: 358 @echo "--------------------------------------------------------------" 359 @echo ">>> Building everything.." 360 @echo "--------------------------------------------------------------" 361 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 all 362 363# 364# installworld 365# 366# Installs everything compiled by a 'buildworld'. 367# 368installworld: 369 cd ${.CURDIR}; ${IXMAKE} -f Makefile.inc1 reinstall 370 371# 372# reinstall 373# 374# If you have a build server, you can NFS mount the source and obj directories 375# and do a 'make reinstall' on the *client* to install new binaries from the 376# most recent server build. 377# 378reinstall: 379 @echo "--------------------------------------------------------------" 380 @echo ">>> Making hierarchy" 381 @echo "--------------------------------------------------------------" 382 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy 383 @echo 384 @echo "--------------------------------------------------------------" 385 @echo ">>> Installing everything.." 386 @echo "--------------------------------------------------------------" 387 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 388.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "aout" && !defined(DESTDIR) 389 @echo 390 @echo "--------------------------------------------------------------" 391 @echo ">>> Re-scanning the shared libraries.." 392 @echo "--------------------------------------------------------------" 393 -cd ${.CURDIR}; /sbin/ldconfig -R 394.endif 395.if !defined(NOMAN) 396 @echo 397 @echo "--------------------------------------------------------------" 398 @echo ">>> Rebuilding man page indices" 399 @echo "--------------------------------------------------------------" 400 cd ${.CURDIR}/share/man; ${MAKE} makedb 401.endif 402 403# 404# update 405# 406# Update the source tree, by running sup and/or running cvs to update to the 407# latest copy. 408# 409update: 410.if defined(SUP_UPDATE) 411 @echo "--------------------------------------------------------------" 412 @echo ">>> Running ${SUP}" 413 @echo "--------------------------------------------------------------" 414 @${SUP} ${SUPFLAGS} ${SUPFILE} 415.if defined(SUPFILE1) 416 @${SUP} ${SUPFLAGS} ${SUPFILE1} 417.endif 418.if defined(SUPFILE2) 419 @${SUP} ${SUPFLAGS} ${SUPFILE2} 420.endif 421.if defined(PORTSSUPFILE) 422 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} 423.endif 424.endif 425.if defined(CVS_UPDATE) 426 @echo "--------------------------------------------------------------" 427 @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} 428 @echo "--------------------------------------------------------------" 429 cd ${.CURDIR}; cvs -q update -P -d 430.endif 431 432# 433# most 434# 435# Build most of the user binaries on the existing system libs and includes. 436# 437most: 438 @echo "--------------------------------------------------------------" 439 @echo ">>> Building programs only" 440 @echo "--------------------------------------------------------------" 441 cd ${.CURDIR}/bin; ${MAKE} all 442 cd ${.CURDIR}/sbin; ${MAKE} all 443 cd ${.CURDIR}/libexec; ${MAKE} all 444 cd ${.CURDIR}/usr.bin; ${MAKE} all 445 cd ${.CURDIR}/usr.sbin; ${MAKE} all 446 cd ${.CURDIR}/gnu/libexec; ${MAKE} all 447 cd ${.CURDIR}/gnu/usr.bin; ${MAKE} all 448 cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} all 449#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT) 450# cd ${.CURDIR}/kerberosIV; ${MAKE} most 451#.endif 452#.if !defined(NOSECURE) && !defined(NOCRYPT) 453# cd ${.CURDIR}/secure; ${MAKE} most 454#.endif 455 456# 457# installmost 458# 459# Install the binaries built by the 'most' target. This does not include 460# libraries or include files. 461# 462installmost: 463 @echo "--------------------------------------------------------------" 464 @echo ">>> Installing programs only" 465 @echo "--------------------------------------------------------------" 466 cd ${.CURDIR}/bin; ${MAKE} install 467 cd ${.CURDIR}/sbin; ${MAKE} install 468 cd ${.CURDIR}/libexec; ${MAKE} install 469 cd ${.CURDIR}/usr.bin; ${MAKE} install 470 cd ${.CURDIR}/usr.sbin; ${MAKE} install 471 cd ${.CURDIR}/gnu/libexec; ${MAKE} install 472 cd ${.CURDIR}/gnu/usr.bin; ${MAKE} install 473 cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} install 474#.if defined(MAKE_KERBEROS4) && !defined(NOCRYPT) 475# cd ${.CURDIR}/kerberosIV; ${MAKE} installmost 476#.endif 477#.if !defined(NOSECURE) && !defined(NOCRYPT) 478# cd ${.CURDIR}/secure; ${MAKE} installmost 479#.endif 480 481# 482# ------------------------------------------------------------------------ 483# 484# From here onwards are utility targets used by the 'make world' and 485# related targets. If your 'world' breaks, you may like to try to fix 486# the problem and manually run the following targets to attempt to 487# complete the build. Beware, this is *not* guaranteed to work, you 488# need to have a pretty good grip on the current state of the system 489# to attempt to manually finish it. If in doubt, 'make world' again. 490# 491 492# 493# hierarchy - ensure that all the needed directories are present 494# 495hierarchy: 496 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs 497 498# 499# bootstrap - [re]build tools needed to run the actual build, this includes 500# tools needed by 'make depend', as some tools are needed to generate source 501# for the dependency information to be gathered from. 502# 503bootstrap: 504.if defined(DESTDIR) 505 rm -f ${DESTDIR}/usr/src/sys 506 ln -s ${.CURDIR}/sys ${DESTDIR}/usr/src 507 cd ${.CURDIR}/include; ${MAKE} all 508 cd ${.CURDIR}/include; ${MAKE} beforeinstall 509.endif 510 cd ${.CURDIR}/usr.bin/make; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 511 ${MAKE} ${MK_FLAGS} all CROSS_MAKE_FLAGS='${CROSS_MAKE_FLAGS}'; \ 512 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 513 cd ${.CURDIR}/usr.bin/xinstall; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 514 ${MAKE} ${MK_FLAGS} all; \ 515 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 516 cd ${.CURDIR}/usr.bin/yacc; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 517 ${MAKE} ${MK_FLAGS} all; \ 518 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 519 cd ${.CURDIR}/usr.bin/lex; ${MAKE} bootstrap; \ 520 ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 521 ${MAKE} ${MK_FLAGS} -DNOLIB all; \ 522 ${MAKE} ${MK_FLAGS} -DNOLIB -B install ${CLEANDIR} 523 cd ${.CURDIR}/usr.bin/lex; ${MAKE} ${OBJDIR} 524 cd ${.CURDIR}/usr.sbin/mtree; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 525 ${MAKE} ${MK_FLAGS} all; \ 526 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 527.if defined(DESTDIR) 528 cd ${.CURDIR}/include && ${MAKE} copies 529.endif 530 531# 532# include-tools - generally the same as 'bootstrap', except that it's for 533# things that are specifically needed to generate include files. 534# 535# XXX should be merged with bootstrap, it's not worth keeeping them separate. 536# Well, maybe it is now. We force 'cleandepend' here to avoid dependencies 537# on cleaned away headers in ${WORLDTMP}. 538# 539include-tools: 540.for d in usr.bin/compile_et usr.bin/rpcgen 541 cd ${.CURDIR}/$d; ${MAKE} cleandepend; \ 542 ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 543 ${MAKE} ${MK_FLAGS} all; \ 544 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 545.endfor 546 547# 548# includes - possibly generate and install the include files. 549# 550includes: 551.if defined(CLOBBER) 552 rm -rf ${DESTDIR}/usr/include/* 553 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \ 554 -p ${DESTDIR}/usr/include 555.endif 556 cd ${.CURDIR}/include; ${MAKE} -B all install 557 cd ${.CURDIR}/gnu/include; ${MAKE} install 558 cd ${.CURDIR}/gnu/lib/libmp; ${MAKE} beforeinstall 559 cd ${.CURDIR}/gnu/lib/libobjc; ${MAKE} beforeinstall 560 cd ${.CURDIR}/gnu/lib/libreadline; ${MAKE} beforeinstall 561 cd ${.CURDIR}/gnu/lib/libregex; ${MAKE} beforeinstall 562 cd ${.CURDIR}/gnu/lib/libstdc++; ${MAKE} beforeinstall 563 cd ${.CURDIR}/gnu/lib/libdialog; ${MAKE} beforeinstall 564 cd ${.CURDIR}/gnu/lib/libgmp; ${MAKE} beforeinstall 565 cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus; ${MAKE} beforeinstall 566.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) 567 cd ${.CURDIR}/secure/lib/libdes; ${MAKE} beforeinstall 568.endif 569.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \ 570 defined(MAKE_KERBEROS4) 571 cd ${.CURDIR}/kerberosIV/lib/libacl; ${MAKE} beforeinstall 572 cd ${.CURDIR}/kerberosIV/lib/libkadm; ${MAKE} beforeinstall 573 cd ${.CURDIR}/kerberosIV/lib/libkafs; ${MAKE} beforeinstall 574 cd ${.CURDIR}/kerberosIV/lib/libkdb; ${MAKE} beforeinstall 575 cd ${.CURDIR}/kerberosIV/lib/libkrb; ${MAKE} beforeinstall 576 cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall 577.else 578 cd ${.CURDIR}/lib/libtelnet; ${MAKE} beforeinstall 579.endif 580.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}) 581 cd ${.CURDIR}/lib/csu/${MACHINE_ARCH}; ${MAKE} beforeinstall 582.endif 583 cd ${.CURDIR}/lib/libalias; ${MAKE} beforeinstall 584 cd ${.CURDIR}/lib/libatm; ${MAKE} beforeinstall 585 cd ${.CURDIR}/lib/libdevstat; ${MAKE} beforeinstall 586 cd ${.CURDIR}/lib/libc; ${MAKE} beforeinstall 587 cd ${.CURDIR}/lib/libcalendar; ${MAKE} beforeinstall 588 cd ${.CURDIR}/lib/libcam; ${MAKE} beforeinstall 589 cd ${.CURDIR}/lib/libdisk; ${MAKE} beforeinstall 590 cd ${.CURDIR}/lib/libncp; ${MAKE} beforeinstall 591 cd ${.CURDIR}/lib/libncurses; ${MAKE} beforeinstall 592 cd ${.CURDIR}/lib/libedit; ${MAKE} beforeinstall 593 cd ${.CURDIR}/lib/libftpio; ${MAKE} beforeinstall 594 cd ${.CURDIR}/lib/libkvm; ${MAKE} beforeinstall 595 cd ${.CURDIR}/lib/libmd; ${MAKE} beforeinstall 596.if !defined(WANT_CSRG_LIBM) 597 cd ${.CURDIR}/lib/msun; ${MAKE} beforeinstall 598.endif 599 cd ${.CURDIR}/lib/libopie; ${MAKE} beforeinstall 600 cd ${.CURDIR}/lib/libpam/libpam; ${MAKE} beforeinstall 601 cd ${.CURDIR}/lib/libpcap; ${MAKE} beforeinstall 602 cd ${.CURDIR}/lib/libradius; ${MAKE} beforeinstall 603 cd ${.CURDIR}/lib/librpcsvc; ${MAKE} beforeinstall 604 cd ${.CURDIR}/lib/libskey; ${MAKE} beforeinstall 605 cd ${.CURDIR}/lib/libstand; ${MAKE} beforeinstall 606 cd ${.CURDIR}/lib/libtacplus; ${MAKE} beforeinstall 607 cd ${.CURDIR}/lib/libcom_err; ${MAKE} beforeinstall 608 cd ${.CURDIR}/lib/libss; ${MAKE} -B hdrs beforeinstall 609 cd ${.CURDIR}/lib/libutil; ${MAKE} beforeinstall 610 cd ${.CURDIR}/lib/libvgl; ${MAKE} beforeinstall 611 cd ${.CURDIR}/lib/libwrap; ${MAKE} beforeinstall 612 cd ${.CURDIR}/lib/libz; ${MAKE} beforeinstall 613 cd ${.CURDIR}/usr.bin/lex; ${MAKE} beforeinstall 614 615# 616# Declare tools if they are not required on all architectures. 617# 618.if ${MACHINE_ARCH} == "i386" 619# aout tools: 620_aout_ar = usr.bin/ar 621_aout_as = gnu/usr.bin/as 622_aout_ld = gnu/usr.bin/ld 623_aout_nm = usr.bin/nm 624_aout_ranlib = usr.bin/ranlib 625_aout_size = usr.bin/size 626_aout_strip = usr.bin/strip 627# boot block/loader tools: 628_btxld = usr.sbin/btxld 629.endif 630 631# 632# lib-tools - build tools to compile and install the libraries. 633# 634# XXX gperf is required for cc 635# XXX a new ld and tsort is required for cc 636lib-tools: 637.for d in \ 638 gnu/usr.bin/gperf \ 639 ${_aout_ld} \ 640 usr.bin/tsort \ 641 ${_aout_as} \ 642 gnu/usr.bin/bison \ 643 gnu/usr.bin/cc \ 644 gnu/lib/libgcc \ 645 ${_aout_ar} \ 646 usr.bin/env \ 647 usr.bin/lex/lib \ 648 usr.bin/mk_cmds \ 649 ${_aout_nm} \ 650 ${_aout_ranlib} \ 651 ${_aout_strip} \ 652 gnu/usr.bin/binutils \ 653 usr.bin/uudecode \ 654 usr.bin/objformat 655 cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 656 ${MAKE} ${MK_FLAGS} all; \ 657 ${MAKE} ${MK_FLAGS} -B install; \ 658 ${MAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR} 659.endfor 660 661# 662# We have to know too much about ordering and subdirs in the lib trees: 663# 664# To satisfy shared library linkage when only the libraries being built 665# are visible: 666# 667# csu must be built before all shared libaries for ELF. 668# libcom_err must be built before libss and libkrb. 669# libcrypt must be built before libkrb and libskey. 670# libdes must be built before libpam. 671# libkrb must be built before libpam. 672# libm must be built before libstdc++. 673# libmd must be built before libatm, libcrypt, libopie, libradius, libskey, 674# and libtacplus. 675# libncurses must be built before libdialog, libedit and libreadline. 676# libradius must be built before libpam. 677# libskey must be built before libpam. 678# libtacplus must be built before libpam. 679# 680# Some libraries are built conditionally and/or are in inconsistently 681# named directories: 682# 683.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc) 684_csu=lib/csu/${MACHINE_ARCH}.pcc 685.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" 686_csu=lib/csu/i386-elf 687.else 688_csu=lib/csu/${MACHINE_ARCH} 689.endif 690 691.if !defined(NOSECURE) && !defined(NOCRYPT) 692_libcrypt= lib/libcrypt secure/lib/libcrypt 693_secure_lib= secure/lib 694.else 695_libcrypt= lib/libcrypt 696.endif 697 698.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4) 699_kerberosIV_lib=kerberosIV/lib 700.endif 701 702.if defined(WANT_CSRG_LIBM) 703_libm= lib/libm 704.else 705_libm= lib/msun 706.endif 707 708.if !defined(NOPERL) 709_libperl= gnu/usr.bin/perl/libperl 710.endif 711 712# 713# bootstrap-libraries - build just enough libraries for the bootstrap 714# tools, and install them under ${WORLDTMP}. 715# 716# Build csu early so that some tools get linked to the new 717# version (too late for the main tools, however). Then build the 718# necessary prerequisite libraries. 719# 720# This is mostly wrong. The build tools must run on the host system, 721# so they should use host libraries. We depend on the target being 722# similar enough to the host for new target libraries to work on the 723# host. 724# 725bootstrap-libraries: 726.for _lib in ${_csu} lib/libc lib/libncurses \ 727 gnu/lib/libregex gnu/lib/libreadline \ 728 lib/libedit ${_libm} \ 729 lib/libmd lib/libcrypt lib/libutil lib/libz usr.bin/lex/lib \ 730 ${_libperl} 731.if exists(${.CURDIR}/${_lib}) 732 cd ${.CURDIR}/${_lib}; \ 733 ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 734 ${MAKE} ${MK_FLAGS} all; \ 735 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 736.endif 737.endfor 738 739# 740# libraries - build all libraries, and install them under ${DESTDIR}. 741# 742# The ordering is not as special as for bootstrap-libraries. Build 743# the prerequisites first, then build almost everything else in 744# alphabetical order. 745# 746libraries: 747.for _lib in ${_csu} lib/libcom_err ${_libm} lib/libmd ${_libcrypt} \ 748 lib/libradius lib/libskey lib/libtacplus \ 749 ${_secure_lib} ${_kerberosIV_lib} \ 750 gnu/lib ${_libperl} lib usr.bin/lex/lib \ 751 usr.sbin/pcvt/keycap 752.if exists(${.CURDIR}/${_lib}) 753 cd ${.CURDIR}/${_lib}; ${MAKE} all; ${MAKE} -B install 754.endif 755.endfor 756 757# 758# Exclude unused tools from build-tools. 759# 760.if !defined(NOGAMES) && exists(${.CURDIR}/games) 761_adventure= games/adventure 762_caesar= games/caesar 763_hack= games/hack 764_phantasia= games/phantasia 765_strfile= games/fortune/strfile 766.endif 767.if !defined(NOPERL) 768_perl= gnu/usr.bin/perl/miniperl 769.endif 770.if !defined(NOSHARE) && exists(${.CURDIR}/share) 771_scrnmaps= share/syscons/scrnmaps 772.endif 773.if ${MACHINE_ARCH} == alpha 774_elf2exe= usr.sbin/elf2exe 775.endif 776.if ${MACHINE_ARCH} == i386 777_kldlinux= sys/modules/linux 778.endif 779.if ${OBJFORMAT} == "aout" 780_netboot= sys/${MACHINE}/boot/netboot 781.endif 782 783BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS 784 785# 786# build-tools - build and install any other tools needed to complete the 787# compile and install. 788# ifdef stale 789# bc and cpp are required to build groff. Otherwise, the order here is 790# mostly historical, i.e., bogus. 791# chmod is used to build gcc's tmpmultilib[2] at obscure times. 792# endif stale 793# XXX uname is a bug - the target should not depend on the host. 794# 795build-tools: 796.for d in \ 797 bin/cat \ 798 bin/chmod \ 799 bin/cp \ 800 bin/date \ 801 bin/dd \ 802 bin/echo \ 803 bin/expr \ 804 bin/hostname \ 805 bin/ln \ 806 bin/ls \ 807 bin/mkdir \ 808 bin/mv \ 809 bin/rm \ 810 bin/test \ 811 ${_caesar} \ 812 ${_strfile} \ 813 gnu/usr.bin/awk \ 814 gnu/usr.bin/bc \ 815 gnu/usr.bin/grep \ 816 gnu/usr.bin/groff \ 817 gnu/usr.bin/gzip \ 818 gnu/usr.bin/man/makewhatis \ 819 gnu/usr.bin/patch \ 820 ${_perl} \ 821 gnu/usr.bin/sort \ 822 gnu/usr.bin/texinfo \ 823 usr.bin/basename \ 824 usr.bin/cap_mkdb \ 825 usr.bin/chflags \ 826 usr.bin/cmp \ 827 usr.bin/col \ 828 usr.bin/colldef \ 829 usr.bin/cpp \ 830 usr.bin/expand \ 831 usr.bin/file2c \ 832 usr.bin/find \ 833 usr.bin/gencat \ 834 usr.bin/gensetdefs \ 835 usr.bin/id \ 836 usr.bin/join \ 837 usr.bin/lorder \ 838 usr.bin/m4 \ 839 usr.bin/mkdep \ 840 usr.bin/mklocale \ 841 usr.bin/paste \ 842 usr.bin/printf \ 843 usr.bin/sed \ 844 ${_aout_size} \ 845 usr.bin/soelim \ 846 usr.bin/symorder \ 847 usr.bin/touch \ 848 usr.bin/tr \ 849 usr.bin/true \ 850 usr.bin/uname \ 851 usr.bin/uuencode \ 852 usr.bin/vgrind \ 853 usr.bin/vi \ 854 usr.bin/wc \ 855 usr.bin/xargs \ 856 usr.bin/yacc \ 857 ${_btxld} \ 858 usr.sbin/chown \ 859 ${_elf2exe} \ 860 usr.sbin/mtree \ 861 usr.sbin/zic \ 862 bin/sh 863 cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} ${_DEPEND}; \ 864 ${MAKE} ${BTMAKEFLAGS} all; \ 865 ${MAKE} ${BTMAKEFLAGS} -B install ${CLEANDIR} ${OBJDIR} 866.endfor 867.if !defined(NOGAMES) && exists(${.CURDIR}/games) 868 cd ${DESTDIR}/usr/games; cp -p caesar strfile ${DESTDIR}/usr/bin 869.endif 870.for d in \ 871 bin/sh \ 872 ${_adventure} \ 873 ${_hack} \ 874 ${_phantasia} \ 875 gnu/usr.bin/cc/cc_tools \ 876 ${_linux} \ 877 ${_kldlinux} \ 878 ${_scrnmaps} \ 879 ${_netboot} 880 cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} build-tools 881.endfor 882 883# 884# Build aout versions of things that provide legacy support when all the 885# rest of the world is elf. 886# 887legacy-build: 888.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "aout" 889 @echo 890 @echo "--------------------------------------------------------------" 891 @echo ">>> Making hierarchy" 892 @echo "--------------------------------------------------------------" 893 mkdir -p ${WORLDTMP} 894 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 hierarchy 895 @echo 896 @echo "--------------------------------------------------------------" 897 @echo ">>> Rebuilding the ${OBJFORMAT} obj tree" 898 @echo "--------------------------------------------------------------" 899 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 par-${OBJDIR} 900 @echo 901 @echo "--------------------------------------------------------------" 902 @echo ">>> Rebuilding ${DESTDIR}/usr/include" 903 @echo "--------------------------------------------------------------" 904 cd ${.CURDIR}; SHARED=copies ${XMAKE} -f Makefile.inc1 includes 905 @echo 906 @echo "--------------------------------------------------------------" 907 @echo ">>> Building legacy libraries" 908 @echo "--------------------------------------------------------------" 909 cd ${.CURDIR}; \ 910 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 bootstrap-libraries 911 cd ${.CURDIR}; \ 912 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries 913 @echo 914 @echo "--------------------------------------------------------------" 915 @echo ">>> Building legacy rtld" 916 @echo "--------------------------------------------------------------" 917 cd ${.CURDIR}/libexec/rtld-aout; \ 918 ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all; 919 @echo 920 @echo "--------------------------------------------------------------" 921 @echo ">>> Building legacy boot" 922 @echo "--------------------------------------------------------------" 923 cd ${.CURDIR}/sys/${MACHINE}/boot && \ 924 ${XMAKE} -DNOMAN -B obj depend; ${XMAKE} -DNOMAN all; 925.endif 926 927# 928# Install aout versions of things that provide legacy support when all the 929# rest of the world is elf. 930# 931legacy-install: 932.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "aout" 933 @echo 934 @echo "--------------------------------------------------------------" 935 @echo ">>> Installing legacy libraries" 936 @echo "--------------------------------------------------------------" 937 cd ${.CURDIR}/lib; ${MAKE} -B -DNOMAN -DNOINFO install 938 cd ${.CURDIR}/gnu/lib; ${MAKE} -B -DNOMAN -DNOINFO install 939 cd ${.CURDIR}/gnu/lib/libgcc; \ 940 ${MAKE} -B -DNOMAN -DNOINFO install 941 cd ${.CURDIR}/usr.bin/lex/lib; \ 942 ${MAKE} -B -DNOMAN -DNOINFO install 943 cd ${.CURDIR}/usr.sbin/pcvt/keycap; \ 944 ${MAKE} -B -DNOMAN -DNOINFO install 945.if exists(${.CURDIR}/secure/lib) && !defined(NOCRYPT) && !defined(NOSECURE) 946 cd ${.CURDIR}/secure/lib; ${MAKE} -B -DNOMAN -DNOINFO install 947.endif 948.if exists(${.CURDIR}/kerberosIV/lib) && !defined(NOCRYPT) && \ 949 defined(MAKE_KERBEROS4) 950 cd ${.CURDIR}/kerberosIV/lib; ${MAKE} -B -DNOMAN -DNOINFO install 951.endif 952 @echo 953 @echo "--------------------------------------------------------------" 954 @echo ">>> Installing legacy rtld" 955 @echo "--------------------------------------------------------------" 956 cd ${.CURDIR}/libexec/rtld-aout; ${MAKE} -DNOMAN install 957 @echo 958.if ${MACHINE_ARCH} == "i386" 959 @echo "--------------------------------------------------------------" 960 @echo ">>> Installing legacy boot" 961 @echo "--------------------------------------------------------------" 962 cd ${.CURDIR}/sys/${MACHINE}/boot && ${MAKE} -DNOMAN install 963.endif 964.endif 965 966 967# Get the object format that the tools see. 968# 969# 970.if exists(/usr/bin/objformat) 971__OBJFORMAT!= objformat 972.else 973__OBJFORMAT= ${OBJFORMAT} 974.endif 975 976# 977# Check if the local /etc/make.conf or /etc/make.conf.local have attempted 978# to override the OBJFORMAT without updating the environment for the tools 979# to see. 980# 981check-objformat : 982.if ${__OBJFORMAT} != ${OBJFORMAT} 983 @/bin/sh -c "echo \"It looks like you set OBJFORMAT=${OBJFORMAT} in /etc/make.conf. Don't do that!\" " 984 @/bin/sh -c "echo \"If you want to override the installed object format, you must set OBJFORMAT\" " 985 @/bin/sh -c "echo \"in your environment.\" " 986 @exit 1 987.endif 988.if !defined(REALLY_WANT_DEPRECIATED_AOUT) && ${OBJFORMAT} == "aout" 989 @echo "==== NOTICE: a.out buildworld is depreciated and disabled! =====" 990 @echo "Read: http://www.freebsd.org/~peter/elfday.html for information." 991 @echo "You need to complete a 'make aout-to-elf' to bring your system" 992 @echo "up to date with ELF tools. This requires a fair amount of disk" 993 @echo "space to complete. Alternatively, you can do a binary upgrade" 994 @echo "using the 3.0-RELEASE binaries from CD or ftp.freebsd.org in" 995 @echo "/pub/FreeBSD/3.0-RELEASE/bin/ to convert your userland to ELF." 996 @exit 1 997.endif 998 999# 1000# cross toolchain 1001# 1002# This is a subset of the tools built in lib-tools, build-tools, etc. What 1003# we are looking for here is to build the cross compilers, etc, with 1004# the current host compiler. 1005# 1006cross-toolchain: 1007.for d in \ 1008 gnu/usr.bin/binutils \ 1009 gnu/usr.bin/bison \ 1010 gnu/usr.bin/cc \ 1011 usr.bin/objformat 1012 cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 1013 ${XTMAKE} ${MK_FLAGS} all; \ 1014 ${XTMAKE} ${MK_FLAGS} -B install; \ 1015 ${XTMAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR} 1016.endfor 1017 1018.for __target in clean cleandepend cleandir depend obj 1019.for entry in ${SUBDIR} 1020${entry}.${__target}__D: .PHONY 1021 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ 1022 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ 1023 edir=${entry}.${MACHINE_ARCH}; \ 1024 cd ${.CURDIR}/$${edir}; \ 1025 else \ 1026 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ 1027 edir=${entry}; \ 1028 cd ${.CURDIR}/$${edir}; \ 1029 fi; \ 1030 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ 1031.endfor 1032par-${__target}: ${SUBDIR:S/$/.${__target}__D/} 1033.endfor 1034 1035.include <bsd.subdir.mk> 1036