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/libncurses; ${MAKE} beforeinstall 591 cd ${.CURDIR}/lib/libedit; ${MAKE} beforeinstall 592 cd ${.CURDIR}/lib/libftpio; ${MAKE} beforeinstall 593 cd ${.CURDIR}/lib/libkvm; ${MAKE} beforeinstall 594 cd ${.CURDIR}/lib/libmd; ${MAKE} beforeinstall 595.if !defined(WANT_CSRG_LIBM) 596 cd ${.CURDIR}/lib/msun; ${MAKE} beforeinstall 597.endif 598 cd ${.CURDIR}/lib/libopie; ${MAKE} beforeinstall 599 cd ${.CURDIR}/lib/libpam/libpam; ${MAKE} beforeinstall 600 cd ${.CURDIR}/lib/libpcap; ${MAKE} beforeinstall 601 cd ${.CURDIR}/lib/libradius; ${MAKE} beforeinstall 602 cd ${.CURDIR}/lib/librpcsvc; ${MAKE} beforeinstall 603 cd ${.CURDIR}/lib/libskey; ${MAKE} beforeinstall 604 cd ${.CURDIR}/lib/libstand; ${MAKE} beforeinstall 605 cd ${.CURDIR}/lib/libtacplus; ${MAKE} beforeinstall 606 cd ${.CURDIR}/lib/libcom_err; ${MAKE} beforeinstall 607 cd ${.CURDIR}/lib/libss; ${MAKE} -B hdrs beforeinstall 608 cd ${.CURDIR}/lib/libutil; ${MAKE} beforeinstall 609 cd ${.CURDIR}/lib/libvgl; ${MAKE} beforeinstall 610 cd ${.CURDIR}/lib/libwrap; ${MAKE} beforeinstall 611 cd ${.CURDIR}/lib/libz; ${MAKE} beforeinstall 612 cd ${.CURDIR}/usr.bin/lex; ${MAKE} beforeinstall 613 614# 615# Declare tools if they are not required on all architectures. 616# 617.if ${MACHINE_ARCH} == "i386" 618# aout tools: 619_aout_ar = usr.bin/ar 620_aout_as = gnu/usr.bin/as 621_aout_ld = gnu/usr.bin/ld 622_aout_nm = usr.bin/nm 623_aout_ranlib = usr.bin/ranlib 624_aout_size = usr.bin/size 625_aout_strip = usr.bin/strip 626# boot block/loader tools: 627_btxld = usr.sbin/btxld 628.endif 629 630# 631# lib-tools - build tools to compile and install the libraries. 632# 633# XXX gperf is required for cc 634# XXX a new ld and tsort is required for cc 635lib-tools: 636.for d in \ 637 gnu/usr.bin/gperf \ 638 ${_aout_ld} \ 639 usr.bin/tsort \ 640 ${_aout_as} \ 641 gnu/usr.bin/bison \ 642 gnu/usr.bin/cc \ 643 gnu/lib/libgcc \ 644 ${_aout_ar} \ 645 usr.bin/env \ 646 usr.bin/lex/lib \ 647 usr.bin/mk_cmds \ 648 ${_aout_nm} \ 649 ${_aout_ranlib} \ 650 ${_aout_strip} \ 651 gnu/usr.bin/binutils \ 652 usr.bin/uudecode \ 653 usr.bin/objformat 654 cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 655 ${MAKE} ${MK_FLAGS} all; \ 656 ${MAKE} ${MK_FLAGS} -B install; \ 657 ${MAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR} 658.endfor 659 660# 661# We have to know too much about ordering and subdirs in the lib trees: 662# 663# To satisfy shared library linkage when only the libraries being built 664# are visible: 665# 666# csu must be built before all shared libaries for ELF. 667# libcom_err must be built before libss and libkrb. 668# libcrypt must be built before libkrb and libskey. 669# libdes must be built before libpam. 670# libkrb must be built before libpam. 671# libm must be built before libstdc++. 672# libmd must be built before libatm, libcrypt, libopie, libradius, libskey, 673# and libtacplus. 674# libncurses must be built before libdialog, libedit and libreadline. 675# libradius must be built before libpam. 676# libskey must be built before libpam. 677# libtacplus must be built before libpam. 678# 679# Some libraries are built conditionally and/or are in inconsistently 680# named directories: 681# 682.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc) 683_csu=lib/csu/${MACHINE_ARCH}.pcc 684.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" 685_csu=lib/csu/i386-elf 686.else 687_csu=lib/csu/${MACHINE_ARCH} 688.endif 689 690.if !defined(NOSECURE) && !defined(NOCRYPT) 691_libcrypt= lib/libcrypt secure/lib/libcrypt 692_secure_lib= secure/lib 693.else 694_libcrypt= lib/libcrypt 695.endif 696 697.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4) 698_kerberosIV_lib=kerberosIV/lib 699.endif 700 701.if defined(WANT_CSRG_LIBM) 702_libm= lib/libm 703.else 704_libm= lib/msun 705.endif 706 707.if !defined(NOPERL) 708_libperl= gnu/usr.bin/perl/libperl 709.endif 710 711# 712# bootstrap-libraries - build just enough libraries for the bootstrap 713# tools, and install them under ${WORLDTMP}. 714# 715# Build csu early so that some tools get linked to the new 716# version (too late for the main tools, however). Then build the 717# necessary prerequisite libraries. 718# 719# This is mostly wrong. The build tools must run on the host system, 720# so they should use host libraries. We depend on the target being 721# similar enough to the host for new target libraries to work on the 722# host. 723# 724bootstrap-libraries: 725.for _lib in ${_csu} lib/libc lib/libncurses \ 726 gnu/lib/libregex gnu/lib/libreadline \ 727 lib/libedit ${_libm} \ 728 lib/libmd lib/libcrypt lib/libutil lib/libz usr.bin/lex/lib \ 729 ${_libperl} 730.if exists(${.CURDIR}/${_lib}) 731 cd ${.CURDIR}/${_lib}; \ 732 ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 733 ${MAKE} ${MK_FLAGS} all; \ 734 ${MAKE} ${MK_FLAGS} -B install ${CLEANDIR} ${OBJDIR} 735.endif 736.endfor 737 738# 739# libraries - build all libraries, and install them under ${DESTDIR}. 740# 741# The ordering is not as special as for bootstrap-libraries. Build 742# the prerequisites first, then build almost everything else in 743# alphabetical order. 744# 745libraries: 746.for _lib in ${_csu} lib/libcom_err ${_libm} lib/libmd ${_libcrypt} \ 747 lib/libradius lib/libskey lib/libtacplus \ 748 ${_secure_lib} ${_kerberosIV_lib} \ 749 gnu/lib ${_libperl} lib usr.bin/lex/lib \ 750 usr.sbin/pcvt/keycap 751.if exists(${.CURDIR}/${_lib}) 752 cd ${.CURDIR}/${_lib}; ${MAKE} all; ${MAKE} -B install 753.endif 754.endfor 755 756# 757# Exclude unused tools from build-tools. 758# 759.if !defined(NOGAMES) && exists(${.CURDIR}/games) 760_adventure= games/adventure 761_caesar= games/caesar 762_hack= games/hack 763_phantasia= games/phantasia 764_strfile= games/fortune/strfile 765.endif 766.if !defined(NOPERL) 767_perl= gnu/usr.bin/perl/miniperl 768.endif 769.if !defined(NOSHARE) && exists(${.CURDIR}/share) 770_scrnmaps= share/syscons/scrnmaps 771.endif 772.if ${MACHINE_ARCH} == alpha 773_elf2exe= usr.sbin/elf2exe 774.endif 775.if ${MACHINE_ARCH} == i386 776_kldlinux= sys/modules/linux 777.endif 778.if ${OBJFORMAT} == "aout" 779_netboot= sys/${MACHINE}/boot/netboot 780.endif 781 782BTMAKEFLAGS= ${MK_FLAGS} -D_BUILD_TOOLS 783 784# 785# build-tools - build and install any other tools needed to complete the 786# compile and install. 787# ifdef stale 788# bc and cpp are required to build groff. Otherwise, the order here is 789# mostly historical, i.e., bogus. 790# chmod is used to build gcc's tmpmultilib[2] at obscure times. 791# endif stale 792# XXX uname is a bug - the target should not depend on the host. 793# 794build-tools: 795.for d in \ 796 bin/cat \ 797 bin/chmod \ 798 bin/cp \ 799 bin/date \ 800 bin/dd \ 801 bin/echo \ 802 bin/expr \ 803 bin/hostname \ 804 bin/ln \ 805 bin/ls \ 806 bin/mkdir \ 807 bin/mv \ 808 bin/rm \ 809 bin/test \ 810 ${_caesar} \ 811 ${_strfile} \ 812 gnu/usr.bin/awk \ 813 gnu/usr.bin/bc \ 814 gnu/usr.bin/grep \ 815 gnu/usr.bin/groff \ 816 gnu/usr.bin/gzip \ 817 gnu/usr.bin/man/makewhatis \ 818 gnu/usr.bin/patch \ 819 ${_perl} \ 820 gnu/usr.bin/sort \ 821 gnu/usr.bin/texinfo \ 822 usr.bin/basename \ 823 usr.bin/cap_mkdb \ 824 usr.bin/chflags \ 825 usr.bin/cmp \ 826 usr.bin/col \ 827 usr.bin/colldef \ 828 usr.bin/cpp \ 829 usr.bin/expand \ 830 usr.bin/file2c \ 831 usr.bin/find \ 832 usr.bin/gencat \ 833 usr.bin/gensetdefs \ 834 usr.bin/id \ 835 usr.bin/join \ 836 usr.bin/lorder \ 837 usr.bin/m4 \ 838 usr.bin/mkdep \ 839 usr.bin/mklocale \ 840 usr.bin/paste \ 841 usr.bin/printf \ 842 usr.bin/sed \ 843 ${_aout_size} \ 844 usr.bin/soelim \ 845 usr.bin/symorder \ 846 usr.bin/touch \ 847 usr.bin/tr \ 848 usr.bin/true \ 849 usr.bin/uname \ 850 usr.bin/uuencode \ 851 usr.bin/vgrind \ 852 usr.bin/vi \ 853 usr.bin/wc \ 854 usr.bin/xargs \ 855 usr.bin/yacc \ 856 ${_btxld} \ 857 usr.sbin/chown \ 858 ${_elf2exe} \ 859 usr.sbin/mtree \ 860 usr.sbin/zic \ 861 bin/sh 862 cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} ${_DEPEND}; \ 863 ${MAKE} ${BTMAKEFLAGS} all; \ 864 ${MAKE} ${BTMAKEFLAGS} -B install ${CLEANDIR} ${OBJDIR} 865.endfor 866.if !defined(NOGAMES) && exists(${.CURDIR}/games) 867 cd ${DESTDIR}/usr/games; cp -p caesar strfile ${DESTDIR}/usr/bin 868.endif 869.for d in \ 870 bin/sh \ 871 ${_adventure} \ 872 ${_hack} \ 873 ${_phantasia} \ 874 gnu/usr.bin/cc/cc_tools \ 875 ${_linux} \ 876 ${_kldlinux} \ 877 ${_scrnmaps} \ 878 ${_netboot} 879 cd ${.CURDIR}/$d; ${MAKE} ${BTMAKEFLAGS} build-tools 880.endfor 881 882# 883# Build aout versions of things that provide legacy support when all the 884# rest of the world is elf. 885# 886legacy-build: 887.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "aout" 888 @echo 889 @echo "--------------------------------------------------------------" 890 @echo ">>> Making hierarchy" 891 @echo "--------------------------------------------------------------" 892 mkdir -p ${WORLDTMP} 893 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 hierarchy 894 @echo 895 @echo "--------------------------------------------------------------" 896 @echo ">>> Rebuilding the ${OBJFORMAT} obj tree" 897 @echo "--------------------------------------------------------------" 898 cd ${.CURDIR}; ${XMAKE} -f Makefile.inc1 par-${OBJDIR} 899 @echo 900 @echo "--------------------------------------------------------------" 901 @echo ">>> Rebuilding ${DESTDIR}/usr/include" 902 @echo "--------------------------------------------------------------" 903 cd ${.CURDIR}; SHARED=copies ${XMAKE} -f Makefile.inc1 includes 904 @echo 905 @echo "--------------------------------------------------------------" 906 @echo ">>> Building legacy libraries" 907 @echo "--------------------------------------------------------------" 908 cd ${.CURDIR}; \ 909 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 bootstrap-libraries 910 cd ${.CURDIR}; \ 911 ${XMAKE} -DNOINFO -DNOMAN -f Makefile.inc1 libraries 912 @echo 913 @echo "--------------------------------------------------------------" 914 @echo ">>> Building legacy rtld" 915 @echo "--------------------------------------------------------------" 916 cd ${.CURDIR}/libexec/rtld-aout; \ 917 ${XMAKE} -DNOMAN depend; ${XMAKE} -DNOMAN all; 918 @echo 919 @echo "--------------------------------------------------------------" 920 @echo ">>> Building legacy boot" 921 @echo "--------------------------------------------------------------" 922 cd ${.CURDIR}/sys/${MACHINE}/boot && \ 923 ${XMAKE} -DNOMAN -B obj depend; ${XMAKE} -DNOMAN all; 924.endif 925 926# 927# Install aout versions of things that provide legacy support when all the 928# rest of the world is elf. 929# 930legacy-install: 931.if ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "aout" 932 @echo 933 @echo "--------------------------------------------------------------" 934 @echo ">>> Installing legacy libraries" 935 @echo "--------------------------------------------------------------" 936 cd ${.CURDIR}/lib; ${MAKE} -B -DNOMAN -DNOINFO install 937 cd ${.CURDIR}/gnu/lib; ${MAKE} -B -DNOMAN -DNOINFO install 938 cd ${.CURDIR}/gnu/lib/libgcc; \ 939 ${MAKE} -B -DNOMAN -DNOINFO install 940 cd ${.CURDIR}/usr.bin/lex/lib; \ 941 ${MAKE} -B -DNOMAN -DNOINFO install 942 cd ${.CURDIR}/usr.sbin/pcvt/keycap; \ 943 ${MAKE} -B -DNOMAN -DNOINFO install 944.if exists(${.CURDIR}/secure/lib) && !defined(NOCRYPT) && !defined(NOSECURE) 945 cd ${.CURDIR}/secure/lib; ${MAKE} -B -DNOMAN -DNOINFO install 946.endif 947.if exists(${.CURDIR}/kerberosIV/lib) && !defined(NOCRYPT) && \ 948 defined(MAKE_KERBEROS4) 949 cd ${.CURDIR}/kerberosIV/lib; ${MAKE} -B -DNOMAN -DNOINFO install 950.endif 951 @echo 952 @echo "--------------------------------------------------------------" 953 @echo ">>> Installing legacy rtld" 954 @echo "--------------------------------------------------------------" 955 cd ${.CURDIR}/libexec/rtld-aout; ${MAKE} -DNOMAN install 956 @echo 957.if ${MACHINE_ARCH} == "i386" 958 @echo "--------------------------------------------------------------" 959 @echo ">>> Installing legacy boot" 960 @echo "--------------------------------------------------------------" 961 cd ${.CURDIR}/sys/${MACHINE}/boot && ${MAKE} -DNOMAN install 962.endif 963.endif 964 965 966# Get the object format that the tools see. 967# 968# 969.if exists(/usr/bin/objformat) 970__OBJFORMAT!= objformat 971.else 972__OBJFORMAT= ${OBJFORMAT} 973.endif 974 975# 976# Check if the local /etc/make.conf or /etc/make.conf.local have attempted 977# to override the OBJFORMAT without updating the environment for the tools 978# to see. 979# 980check-objformat : 981.if ${__OBJFORMAT} != ${OBJFORMAT} 982 @/bin/sh -c "echo \"It looks like you set OBJFORMAT=${OBJFORMAT} in /etc/make.conf. Don't do that!\" " 983 @/bin/sh -c "echo \"If you want to override the installed object format, you must set OBJFORMAT\" " 984 @/bin/sh -c "echo \"in your environment.\" " 985 @exit 1 986.endif 987.if !defined(REALLY_WANT_DEPRECIATED_AOUT) && ${OBJFORMAT} == "aout" 988 @echo "==== NOTICE: a.out buildworld is depreciated and disabled! =====" 989 @echo "Read: http://www.freebsd.org/~peter/elfday.html for information." 990 @echo "You need to complete a 'make aout-to-elf' to bring your system" 991 @echo "up to date with ELF tools. This requires a fair amount of disk" 992 @echo "space to complete. Alternatively, you can do a binary upgrade" 993 @echo "using the 3.0-RELEASE binaries from CD or ftp.freebsd.org in" 994 @echo "/pub/FreeBSD/3.0-RELEASE/bin/ to convert your userland to ELF." 995 @exit 1 996.endif 997 998# 999# cross toolchain 1000# 1001# This is a subset of the tools built in lib-tools, build-tools, etc. What 1002# we are looking for here is to build the cross compilers, etc, with 1003# the current host compiler. 1004# 1005cross-toolchain: 1006.for d in \ 1007 gnu/usr.bin/binutils \ 1008 gnu/usr.bin/bison \ 1009 gnu/usr.bin/cc \ 1010 usr.bin/objformat 1011 cd ${.CURDIR}/$d; ${MAKE} ${MK_FLAGS} ${_DEPEND}; \ 1012 ${XTMAKE} ${MK_FLAGS} all; \ 1013 ${XTMAKE} ${MK_FLAGS} -B install; \ 1014 ${XTMAKE} ${MK_FLAGS:S/-DNOPIC//} -B ${CLEANDIR} ${OBJDIR} 1015.endfor 1016 1017.for __target in clean cleandepend cleandir depend obj 1018.for entry in ${SUBDIR} 1019${entry}.${__target}__D: .PHONY 1020 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ 1021 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ 1022 edir=${entry}.${MACHINE_ARCH}; \ 1023 cd ${.CURDIR}/$${edir}; \ 1024 else \ 1025 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ 1026 edir=${entry}; \ 1027 cd ${.CURDIR}/$${edir}; \ 1028 fi; \ 1029 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ 1030.endfor 1031par-${__target}: ${SUBDIR:S/$/.${__target}__D/} 1032.endfor 1033 1034.include <bsd.subdir.mk> 1035