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