1# 2# $FreeBSD$ 3# 4# Make command line options: 5# -DMAKE_KERBEROS4 to build KerberosIV 6# -DMAKE_KERBEROS5 to build Kerberos5 7# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir 8# -DNOCLEAN do not clean at all 9# -DNOCRYPT will prevent building of crypt versions 10# -DNOPROFILE do not build profiled libraries 11# -DNOSECURE do not go into secure subdir 12# -DNOGAMES do not go into games subdir 13# -DNOSHARE do not go into share subdir 14# -DNOINFO do not make or install info files 15# -DNOLIBC_R do not build libc_r. 16# -DNO_FORTRAN do not build g77 and related libraries. 17# -DNO_KERNELCONFIG do not run config in ${MAKE} buildkernel 18# -DNO_KERNELCLEAN do not run ${MAKE} clean in ${MAKE} buildkernel 19# -DNO_KERNELDEPEND do not run ${MAKE} depend in ${MAKE} buildkernel 20# -DNO_PORTSUPDATE do not update ports in ${MAKE} update 21# -DNO_DOCUPDATE do not update doc in ${MAKE} update 22# LOCAL_DIRS="list of dirs" to add additional dirs to the SUBDIR list 23# MACHINE_ARCH="machine arch" to crossbuild world to a different arch 24 25# 26# The intended user-driven targets are: 27# buildworld - rebuild *everything*, including glue to help do upgrades 28# installworld- install everything built by "buildworld" 29# update - convenient way to update your source tree (eg: sup/cvs) 30# most - build user commands, no libraries or include files 31# installmost - install user commands, no libraries or include files 32# 33# Standard targets (not defined here) are documented in the makefiles in 34# /usr/share/mk. These include: 35# obj depend all install clean cleandepend cleanobj 36 37# Put initial settings here. 38SUBDIR= 39 40# We must do share/info early so that installation of info `dir' 41# entries works correctly. Do it first since it is less likely to 42# grow dependencies on include and lib than vice versa. 43.if exists(${.CURDIR}/share/info) 44SUBDIR+= share/info 45.endif 46 47# We must do include and lib early so that the perl *.ph generation 48# works correctly as it uses the header files installed by this. 49.if exists(${.CURDIR}/include) 50SUBDIR+= include 51.endif 52.if exists(${.CURDIR}/lib) 53SUBDIR+= lib 54.endif 55 56.if exists(${.CURDIR}/bin) 57SUBDIR+= bin 58.endif 59.if exists(${.CURDIR}/games) && !defined(NOGAMES) 60SUBDIR+= games 61.endif 62.if exists(${.CURDIR}/gnu) 63SUBDIR+= gnu 64.endif 65.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ 66 !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS4) 67SUBDIR+= kerberosIV 68.endif 69.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ 70 !defined(NOCRYPT) && !defined(NO_OPENSSL) && defined(MAKE_KERBEROS5) 71SUBDIR+= kerberos5 72.endif 73.if exists(${.CURDIR}/libexec) 74SUBDIR+= libexec 75.endif 76.if exists(${.CURDIR}/sbin) 77SUBDIR+= sbin 78.endif 79.if exists(${.CURDIR}/share) && !defined(NOSHARE) 80SUBDIR+= share 81.endif 82.if exists(${.CURDIR}/sys) 83SUBDIR+= sys 84.endif 85.if exists(${.CURDIR}/usr.bin) 86SUBDIR+= usr.bin 87.endif 88.if exists(${.CURDIR}/usr.sbin) 89SUBDIR+= usr.sbin 90.endif 91.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE) 92SUBDIR+= secure 93.endif 94 95# etc must be last for "distribute" to work 96.if exists(${.CURDIR}/etc) 97SUBDIR+= etc 98.endif 99 100# These are last, since it is nice to at least get the base system 101# rebuilt before you do them. 102.if defined(LOCAL_DIRS) 103.for _DIR in ${LOCAL_DIRS} 104.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile) 105SUBDIR+= ${_DIR} 106.endif 107.endfor 108.endif 109 110.if defined(NOCLEANDIR) 111CLEANDIR= clean cleandepend 112.else 113CLEANDIR= cleandir 114.endif 115 116SUP?= cvsup 117SUPFLAGS?= -g -L 2 -P - 118.if defined(SUPHOST) 119SUPFLAGS+= -h ${SUPHOST} 120.endif 121 122MAKEOBJDIRPREFIX?= /usr/obj 123TARGET_ARCH?= ${MACHINE_ARCH} 124BUILD_ARCH!= sysctl -n hw.machine_arch 125.if ${BUILD_ARCH} == ${MACHINE_ARCH} 126OBJTREE= ${MAKEOBJDIRPREFIX} 127.else 128OBJTREE= ${MAKEOBJDIRPREFIX}/${MACHINE_ARCH} 129.endif 130WORLDTMP= ${OBJTREE}${.CURDIR}/${BUILD_ARCH} 131# /usr/games added for fortune which depend on strfile 132STRICTTMPPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games 133TMPPATH= ${STRICTTMPPATH}:${PATH} 134OBJFORMAT_PATH?= /usr/libexec 135 136TMPDIR?= /tmp 137TMPPID!= echo $$$$ 138INSTALLTMP= ${TMPDIR}/install.${TMPPID} 139 140# 141# Building a world goes through the following stages 142# 143# 1. bootstrap-tool stage [BMAKE] 144# This stage is responsible for creating programs that 145# are needed for backward compatibility reasons. They 146# are not built as cross-tools. 147# 2. build-tool stage [TMAKE] 148# This stage is responsible for creating the object 149# tree and building any tools that are needed during 150# the build process. 151# 3. cross-tool stage [XMAKE] 152# This stage is responsible for creating any tools that 153# are needed for cross-builds. A cross-compiler is one 154# of them. 155# 4. world stage [WMAKE] 156# This stage actually builds the world. 157# 5. install stage (optional) [IMAKE] 158# This stage installs a previously built world. 159# 160 161# Common environment for bootstrap related stages 162BOOTSTRAPENV= MAKEOBJDIRPREFIX=${WORLDTMP} \ 163 DESTDIR=${WORLDTMP} \ 164 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 165 MACHINE_ARCH=${BUILD_ARCH} \ 166 TOOLS_PREFIX=${WORLDTMP} \ 167 PATH=${TMPPATH} 168 169# Common environment for world related stages 170CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ 171 COMPILER_PATH=${WORLDTMP}/usr/libexec:${WORLDTMP}/usr/bin \ 172 LIBRARY_PATH=${WORLDTMP}${SHLIBDIR}:${WORLDTMP}/usr/lib \ 173 OBJFORMAT_PATH=${WORLDTMP}/usr/libexec \ 174 CFLAGS="-nostdinc ${CFLAGS}" \ 175 PERL5LIB=${WORLDTMP}/usr/libdata/perl/5.6.0 \ 176 GROFF_BIN_PATH=${WORLDTMP}/usr/bin \ 177 GROFF_FONT_PATH=${WORLDTMP}/usr/share/groff_font \ 178 GROFF_TMAC_PATH=${WORLDTMP}/usr/share/tmac 179 180# bootstrap-tool stage 181BMAKEENV= ${BOOTSTRAPENV} 182BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DNOHTML -DNOINFO \ 183 -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED 184 185# build-tool stage 186TMAKEENV= MAKEOBJDIRPREFIX=${OBJTREE} \ 187 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 188 PATH=${TMPPATH} 189TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 190 191# cross-tool stage 192XMAKEENV= ${BOOTSTRAPENV} \ 193 TARGET_ARCH=${MACHINE_ARCH} 194XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \ 195 -DNOHTML -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE \ 196 -DNOSHARED 197 198# world stage 199WMAKEENV= ${CROSSENV} \ 200 DESTDIR=${WORLDTMP} \ 201 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 202 PATH=${TMPPATH} 203WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 204 205# install stage 206IMAKEENV= ${CROSSENV} \ 207 PATH=${STRICTTMPPATH}:${INSTALLTMP} 208IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 209 210# kernel stage 211KMAKEENV= ${WMAKEENV} \ 212 OBJFORMAT_PATH=${WORLDTMP}/usr/libexec:${OBJFORMAT_PATH} 213 214USRDIRS= usr/bin usr/lib/compat/aout usr/games usr/libdata/ldscripts \ 215 usr/libexec/${OBJFORMAT} usr/sbin usr/share/misc \ 216 usr/share/dict \ 217 usr/share/groff_font/devX100 \ 218 usr/share/groff_font/devX100-12 \ 219 usr/share/groff_font/devX75 \ 220 usr/share/groff_font/devX75-12 \ 221 usr/share/groff_font/devascii \ 222 usr/share/groff_font/devcp1047 \ 223 usr/share/groff_font/devdvi \ 224 usr/share/groff_font/devhtml \ 225 usr/share/groff_font/devkoi8-r \ 226 usr/share/groff_font/devlatin1 \ 227 usr/share/groff_font/devlbp \ 228 usr/share/groff_font/devlj4 \ 229 usr/share/groff_font/devps \ 230 usr/share/groff_font/devutf8 \ 231 usr/share/tmac/mdoc usr/share/tmac/mm 232 233INCDIRS= arpa g++/std isc objc protocols readline rpc rpcsvc openssl \ 234 security ss 235 236# 237# buildworld 238# 239# Attempt to rebuild the entire system, with reasonable chance of 240# success, regardless of how old your existing system is. 241# 242buildworld: 243 @echo 244 @echo "--------------------------------------------------------------" 245 @echo ">>> Rebuilding the temporary build tree" 246 @echo "--------------------------------------------------------------" 247.if !defined(NOCLEAN) 248 rm -rf ${WORLDTMP} 249.else 250 for dir in bin games include lib sbin share; do \ 251 rm -rf ${WORLDTMP}/usr/$$dir; \ 252 done 253 # XXX - Work-around for broken cc/cc_tools/Makefile. 254 # This is beyond dirty... 255 rm -f ${OBJTREE}${.CURDIR}/gnu/usr.bin/cc/cc_tools/.depend 256.endif 257.for _dir in ${USRDIRS} 258 mkdir -p ${WORLDTMP}/${_dir} 259.endfor 260.for _dir in ${INCDIRS} 261 mkdir -p ${WORLDTMP}/usr/include/${_dir} 262.endfor 263 ln -sf ${.CURDIR}/sys ${WORLDTMP} 264 @echo 265 @echo "--------------------------------------------------------------" 266 @echo ">>> stage 1: bootstrap tools" 267 @echo "--------------------------------------------------------------" 268 cd ${.CURDIR}; ${BMAKE} bootstrap-tools 269.if !defined(NOCLEAN) 270 @echo 271 @echo "--------------------------------------------------------------" 272 @echo ">>> stage 2: cleaning up the object tree" 273 @echo "--------------------------------------------------------------" 274 cd ${.CURDIR}; ${TMAKE} ${CLEANDIR:S/^/par-/} 275.endif 276 @echo 277 @echo "--------------------------------------------------------------" 278 @echo ">>> stage 2: rebuilding the object tree" 279 @echo "--------------------------------------------------------------" 280 cd ${.CURDIR}; ${TMAKE} par-obj 281 @echo 282 @echo "--------------------------------------------------------------" 283 @echo ">>> stage 2: build tools" 284 @echo "--------------------------------------------------------------" 285 cd ${.CURDIR}; ${TMAKE} build-tools 286 @echo 287 @echo "--------------------------------------------------------------" 288 @echo ">>> stage 3: cross tools" 289 @echo "--------------------------------------------------------------" 290 cd ${.CURDIR}; ${XMAKE} cross-tools 291 @echo 292 @echo "--------------------------------------------------------------" 293 @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" 294 @echo "--------------------------------------------------------------" 295 cd ${.CURDIR}; ${WMAKE} SHARED=copies includes 296 @echo 297 @echo "--------------------------------------------------------------" 298 @echo ">>> stage 4: building libraries" 299 @echo "--------------------------------------------------------------" 300 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries 301 @echo 302 @echo "--------------------------------------------------------------" 303 @echo ">>> stage 4: make dependencies" 304 @echo "--------------------------------------------------------------" 305 cd ${.CURDIR}; ${WMAKE} par-depend 306 @echo 307 @echo "--------------------------------------------------------------" 308 @echo ">>> stage 4: building everything.." 309 @echo "--------------------------------------------------------------" 310 cd ${.CURDIR}; ${WMAKE} all 311 312everything: 313 @echo "--------------------------------------------------------------" 314 @echo ">>> Building everything.." 315 @echo "--------------------------------------------------------------" 316 cd ${.CURDIR}; ${WMAKE} all 317 318# 319# installworld 320# 321# Installs everything compiled by a 'buildworld'. 322# 323installworld: 324 mkdir -p ${INSTALLTMP} 325 for prog in [ awk cat chflags chmod chown date echo egrep find grep \ 326 ln make makewhatis mtree mv perl rm sed sh sysctl \ 327 test true uname wc zic; do \ 328 cp `which $$prog` ${INSTALLTMP}; \ 329 done 330 cd ${.CURDIR}; ${IMAKE} reinstall 331 rm -rf ${INSTALLTMP} 332 333# 334# reinstall 335# 336# If you have a build server, you can NFS mount the source and obj directories 337# and do a 'make reinstall' on the *client* to install new binaries from the 338# most recent server build. 339# 340reinstall: 341 @echo "--------------------------------------------------------------" 342 @echo ">>> Making hierarchy" 343 @echo "--------------------------------------------------------------" 344 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy 345 @echo 346 @echo "--------------------------------------------------------------" 347 @echo ">>> Installing everything.." 348 @echo "--------------------------------------------------------------" 349 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 350.if !defined(NOMAN) 351 @echo 352 @echo "--------------------------------------------------------------" 353 @echo ">>> Rebuilding man page indices" 354 @echo "--------------------------------------------------------------" 355 cd ${.CURDIR}/share/man; ${MAKE} makedb 356.endif 357 358# 359# distribworld 360# 361# Front-end to distribute to make sure the search path contains 362# the object directory. Needed for miniperl. 363# 364distribworld: 365 cd ${.CURDIR}; PATH=${TMPPATH} ${MAKE} -f Makefile.inc1 distribute 366 367# 368# buildkernel and installkernel 369# 370# Which kernels to build and/or install is specified by setting 371# KERNCONF. If not defined a GENERIC kernel is built/installed. 372# Only the existing (depending MACHINE) config files are used 373# for building kernels and only the first of these is designated 374# as the one being installed. 375# 376# Note that we have to use MACHINE instead of MACHINE_ARCH when 377# we're in kernel-land. Since only MACHINE_ARCH is (expected) to 378# be set to cross-build, we have to make sure MACHINE is set 379# properly. 380 381.if !defined(KERNCONF) && defined(KERNEL) 382KERNCONF= ${KERNEL} 383KERNWARN= yes 384.else 385KERNCONF?= GENERIC 386.endif 387INSTKERNNAME?= kernel 388 389# The only exotic MACHINE_ARCH/MACHINE combination valid at this 390# time is i386/pc98. In all other cases set MACHINE equal to 391# MACHINE_ARCH. 392.if ${MACHINE_ARCH} != "i386" || ${MACHINE} != "pc98" 393MACHINE= ${MACHINE_ARCH} 394.endif 395 396KRNLSRCDIR= ${.CURDIR}/sys 397KRNLCONFDIR= ${KRNLSRCDIR}/${MACHINE}/conf 398KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR} 399 400BUILDKERNELS= 401INSTALLKERNEL= 402.for _kernel in ${KERNCONF} 403.if exists(${KRNLCONFDIR}/${_kernel}) 404BUILDKERNELS+= ${_kernel} 405.if empty(INSTALLKERNEL) 406INSTALLKERNEL= ${_kernel} 407.endif 408.endif 409.endfor 410 411# 412# buildkernel 413# 414# Builds all kernels defined by BUILDKERNELS. 415# 416buildkernel: 417.if empty(BUILDKERNELS) 418 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})." 419 @false 420.endif 421.if defined(KERNWARN) 422 @echo "--------------------------------------------------------------" 423 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" 424 @echo "--------------------------------------------------------------" 425 @sleep 3 426.endif 427 @echo 428.for _kernel in ${BUILDKERNELS} 429 @echo "--------------------------------------------------------------" 430 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 431 @echo "--------------------------------------------------------------" 432 @echo "===> ${_kernel}" 433 mkdir -p ${KRNLOBJDIR} 434.if !defined(NO_KERNELCONFIG) 435 cd ${KRNLCONFDIR}; \ 436 PATH=${TMPPATH} \ 437 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} ${_kernel} 438.endif 439.if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) 440 cd ${KRNLOBJDIR}/${_kernel}; \ 441 ${KMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} clean 442.endif 443 cd ${KRNLOBJDIR}/${_kernel}; \ 444 MAKESRCPATH=${KRNLSRCDIR}/dev/aic7xxx/aicasm \ 445 ${MAKE} -f ${KRNLSRCDIR}/dev/aic7xxx/aicasm/Makefile 446.if !defined(NO_KERNELDEPEND) 447 cd ${KRNLOBJDIR}/${_kernel}; \ 448 ${KMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} depend 449.endif 450 cd ${KRNLOBJDIR}/${_kernel}; \ 451 ${KMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} all 452 @echo "--------------------------------------------------------------" 453 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 454 @echo "--------------------------------------------------------------" 455.endfor 456 457# 458# installkernel 459# 460# Install the kernel defined by INSTALLKERNEL 461# 462installkernel: 463 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 464 ${CROSSENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} install 465reinstallkernel: 466 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 467 ${CROSSENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} reinstall 468 469# 470# kernel 471# 472# Short hand for `make buildkernel installkernel' 473# 474kernel: buildkernel installkernel 475 476# 477# update 478# 479# Update the source tree, by running sup and/or running cvs to update to the 480# latest copy. 481# 482update: 483.if defined(SUP_UPDATE) 484 @echo "--------------------------------------------------------------" 485 @echo ">>> Running ${SUP}" 486 @echo "--------------------------------------------------------------" 487.if defined(SUPFILE) 488 @${SUP} ${SUPFLAGS} ${SUPFILE} 489.endif 490.if defined(SUPFILE1) 491 @${SUP} ${SUPFLAGS} ${SUPFILE1} 492.endif 493.if defined(SUPFILE2) 494 @${SUP} ${SUPFLAGS} ${SUPFILE2} 495.endif 496.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE) 497 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} 498.endif 499.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) 500 @${SUP} ${SUPFLAGS} ${DOCSUPFILE} 501.endif 502.endif 503.if defined(CVS_UPDATE) 504 @echo "--------------------------------------------------------------" 505 @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} 506 @echo "--------------------------------------------------------------" 507 cd ${.CURDIR}; cvs -q update -A -P -d 508.endif 509 510# 511# most 512# 513# Build most of the user binaries on the existing system libs and includes. 514# 515most: 516 @echo "--------------------------------------------------------------" 517 @echo ">>> Building programs only" 518 @echo "--------------------------------------------------------------" 519 cd ${.CURDIR}/bin; ${MAKE} all 520 cd ${.CURDIR}/sbin; ${MAKE} all 521 cd ${.CURDIR}/libexec; ${MAKE} all 522 cd ${.CURDIR}/usr.bin; ${MAKE} all 523 cd ${.CURDIR}/usr.sbin; ${MAKE} all 524 cd ${.CURDIR}/gnu/libexec; ${MAKE} all 525 cd ${.CURDIR}/gnu/usr.bin; ${MAKE} all 526 cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} all 527 528# 529# installmost 530# 531# Install the binaries built by the 'most' target. This does not include 532# libraries or include files. 533# 534installmost: 535 @echo "--------------------------------------------------------------" 536 @echo ">>> Installing programs only" 537 @echo "--------------------------------------------------------------" 538 cd ${.CURDIR}/bin; ${MAKE} install 539 cd ${.CURDIR}/sbin; ${MAKE} install 540 cd ${.CURDIR}/libexec; ${MAKE} install 541 cd ${.CURDIR}/usr.bin; ${MAKE} install 542 cd ${.CURDIR}/usr.sbin; ${MAKE} install 543 cd ${.CURDIR}/gnu/libexec; ${MAKE} install 544 cd ${.CURDIR}/gnu/usr.bin; ${MAKE} install 545 cd ${.CURDIR}/gnu/usr.sbin; ${MAKE} install 546 547# 548# ------------------------------------------------------------------------ 549# 550# From here onwards are utility targets used by the 'make world' and 551# related targets. If your 'world' breaks, you may like to try to fix 552# the problem and manually run the following targets to attempt to 553# complete the build. Beware, this is *not* guaranteed to work, you 554# need to have a pretty good grip on the current state of the system 555# to attempt to manually finish it. If in doubt, 'make world' again. 556# 557 558# 559# bootstrap-tools: Build tools needed for compatibility 560# 561.if exists(${.CURDIR}/games) && !defined(NOGAMES) 562_strfile= games/fortune/strfile 563.endif 564 565bootstrap-tools: 566.for _tool in ${_strfile} usr.bin/yacc usr.bin/colldef usr.bin/xinstall \ 567 usr.sbin/config usr.sbin/kbdcontrol \ 568 gnu/usr.bin/gperf gnu/usr.bin/groff gnu/usr.bin/texinfo 569 cd ${.CURDIR}/${_tool}; \ 570 ${MAKE} obj; \ 571 ${MAKE} depend; \ 572 ${MAKE} all; \ 573 ${MAKE} install 574.endfor 575 576# 577# build-tools: Build special purpose build tools 578# 579.if exists(${.CURDIR}/games) && !defined(NOGAMES) 580_games= games/adventure games/hack games/phantasia 581.endif 582 583.if exists(${.CURDIR}/share) && !defined(NOSHARE) 584_share= share/syscons/scrnmaps 585.endif 586 587.if !defined(NO_FORTRAN) 588_fortran= gnu/usr.bin/cc/f771 589.endif 590 591.if exists(${.CURDIR}/kerberosIV) && exists(${.CURDIR}/crypto) && \ 592 !defined(NOCRYPT) && defined(MAKE_KERBEROS4) 593_libroken4= kerberosIV/lib/libroken 594.endif 595 596.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ 597 !defined(NOCRYPT) && defined(MAKE_KERBEROS5) 598_libkrb5= kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl 599.endif 600 601build-tools: 602.for _tool in bin/csh bin/sh ${_games} gnu/usr.bin/cc/cc_tools ${_fortran} \ 603 ${_libroken4} ${_libkrb5} lib/libncurses ${_share} usr.sbin/sysinstall 604 cd ${.CURDIR}/${_tool}; ${MAKE} build-tools 605.endfor 606 607# 608# cross-tools: Build cross-building tools 609# 610# WARNING: Because the bootstrap tools are expected to run on the 611# build-machine, MACHINE_ARCH is *always* set to BUILD_ARCH when this 612# target is being made. TARGET_ARCH is *always* set to reflect the 613# target-machine (which you can set by specifying MACHINE_ARCH on 614# make's command-line, get it?). 615# The reason is simple: we build these tools not to be run on the 616# architecture we're cross-building, but on the architecture we're 617# currently building on (ie the host-machine) and we expect these 618# tools to produce output for the architecture we're trying to 619# cross-build. 620# 621.if ${TARGET_ARCH} == "alpha" && ${MACHINE_ARCH} != "alpha" 622_elf2exe= usr.sbin/elf2exe 623.endif 624 625.if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386" 626_btxld= usr.sbin/btxld 627.endif 628 629.if !defined(NOPERL) 630_perl= gnu/usr.bin/perl/libperl gnu/usr.bin/perl/miniperl 631.endif 632 633cross-tools: 634.for _tool in ${_btxld} ${_elf2exe} ${_perl} \ 635 gnu/usr.bin/binutils usr.bin/objformat gnu/usr.bin/cc 636 cd ${.CURDIR}/${_tool}; \ 637 ${MAKE} obj; \ 638 ${MAKE} depend; \ 639 ${MAKE} all; \ 640 ${MAKE} install 641.endfor 642 643# 644# hierarchy - ensure that all the needed directories are present 645# 646hierarchy: 647 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs 648 649# 650# includes - possibly generate and install the include files. 651# 652includes: 653 cd ${.CURDIR}/include; ${MAKE} -B all install 654 cd ${.CURDIR}/gnu/include; ${MAKE} install 655 cd ${.CURDIR}/gnu/lib/libmp; ${MAKE} beforeinstall 656 cd ${.CURDIR}/gnu/lib/libobjc; ${MAKE} beforeinstall 657 cd ${.CURDIR}/gnu/lib/libreadline/readline; ${MAKE} beforeinstall 658 cd ${.CURDIR}/gnu/lib/libregex; ${MAKE} beforeinstall 659 cd ${.CURDIR}/gnu/lib/libstdc++; ${MAKE} beforeinstall 660 cd ${.CURDIR}/gnu/lib/libdialog; ${MAKE} beforeinstall 661 cd ${.CURDIR}/gnu/lib/libgmp; ${MAKE} beforeinstall 662 cd ${.CURDIR}/gnu/usr.bin/cc/cc1plus; ${MAKE} beforeinstall 663.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE) 664.if exists(${.CURDIR}/secure/lib/libcrypto) 665 cd ${.CURDIR}/secure/lib/libcrypto; ${MAKE} beforeinstall 666.endif 667.if exists(${.CURDIR}/secure/lib/libssl) 668 cd ${.CURDIR}/secure/lib/libssl; ${MAKE} beforeinstall 669.endif 670.endif 671.if exists(${.CURDIR}/kerberosIV) && !defined(NOCRYPT) && \ 672 defined(MAKE_KERBEROS4) 673 cd ${.CURDIR}/kerberosIV/lib/libacl; ${MAKE} beforeinstall 674 cd ${.CURDIR}/kerberosIV/lib/libkadm; ${MAKE} beforeinstall 675 cd ${.CURDIR}/kerberosIV/lib/libkafs; ${MAKE} beforeinstall 676 cd ${.CURDIR}/kerberosIV/lib/libkdb; ${MAKE} beforeinstall 677 cd ${.CURDIR}/kerberosIV/lib/libkrb; ${MAKE} beforeinstall 678 cd ${.CURDIR}/kerberosIV/lib/libtelnet; ${MAKE} beforeinstall 679.else 680 cd ${.CURDIR}/lib/libtelnet; ${MAKE} beforeinstall 681.endif 682.if exists(${.CURDIR}/kerberos5) && !defined(NOCRYPT) && \ 683 defined(MAKE_KERBEROS5) 684 cd ${.CURDIR}/kerberos5/lib/libasn1; ${MAKE} beforeinstall 685 cd ${.CURDIR}/kerberos5/lib/libhdb; ${MAKE} beforeinstall 686 cd ${.CURDIR}/kerberos5/lib/libkadm5clnt; ${MAKE} beforeinstall 687 cd ${.CURDIR}/kerberos5/lib/libkadm5srv; ${MAKE} beforeinstall 688 cd ${.CURDIR}/kerberos5/lib/libkafs5; ${MAKE} beforeinstall 689 cd ${.CURDIR}/kerberos5/lib/libkrb5; ${MAKE} beforeinstall 690 cd ${.CURDIR}/kerberos5/lib/libsl; ${MAKE} beforeinstall 691.endif 692.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}) 693 cd ${.CURDIR}/lib/csu/${MACHINE_ARCH}; ${MAKE} beforeinstall 694.endif 695 cd ${.CURDIR}/gnu/lib/csu; ${MAKE} beforeinstall 696 cd ${.CURDIR}/lib/libalias; ${MAKE} beforeinstall 697 cd ${.CURDIR}/lib/libatm; ${MAKE} beforeinstall 698 cd ${.CURDIR}/lib/libdevstat; ${MAKE} beforeinstall 699 cd ${.CURDIR}/lib/libc; ${MAKE} beforeinstall 700 cd ${.CURDIR}/lib/libcalendar; ${MAKE} beforeinstall 701 cd ${.CURDIR}/lib/libcam; ${MAKE} beforeinstall 702 cd ${.CURDIR}/lib/libdisk; ${MAKE} beforeinstall 703 cd ${.CURDIR}/lib/libedit; ${MAKE} beforeinstall 704 cd ${.CURDIR}/lib/libfetch; ${MAKE} beforeinstall 705 cd ${.CURDIR}/lib/libftpio; ${MAKE} beforeinstall 706 cd ${.CURDIR}/lib/libkvm; ${MAKE} beforeinstall 707 cd ${.CURDIR}/lib/libmd; ${MAKE} beforeinstall 708.if !defined(WANT_CSRG_LIBM) 709 cd ${.CURDIR}/lib/msun; ${MAKE} beforeinstall 710.endif 711 cd ${.CURDIR}/lib/libncp; ${MAKE} beforeinstall 712 cd ${.CURDIR}/lib/libncurses; ${MAKE} beforeinstall 713 cd ${.CURDIR}/lib/libnetgraph; ${MAKE} beforeinstall 714 cd ${.CURDIR}/lib/libopie; ${MAKE} beforeinstall 715 cd ${.CURDIR}/lib/libpam/libpam; ${MAKE} beforeinstall 716 cd ${.CURDIR}/lib/libpcap; ${MAKE} beforeinstall 717 cd ${.CURDIR}/lib/libradius; ${MAKE} beforeinstall 718 cd ${.CURDIR}/lib/librpcsvc; ${MAKE} beforeinstall 719 cd ${.CURDIR}/lib/libsbuf; ${MAKE} beforeinstall 720 cd ${.CURDIR}/lib/libskey; ${MAKE} beforeinstall 721 cd ${.CURDIR}/lib/libstand; ${MAKE} beforeinstall 722 cd ${.CURDIR}/lib/libtacplus; ${MAKE} beforeinstall 723 cd ${.CURDIR}/lib/libcom_err; ${MAKE} beforeinstall 724 cd ${.CURDIR}/lib/libss; ${MAKE} -B hdrs beforeinstall 725 cd ${.CURDIR}/lib/libutil; ${MAKE} beforeinstall 726 cd ${.CURDIR}/lib/libvgl; ${MAKE} beforeinstall 727 cd ${.CURDIR}/lib/libwrap; ${MAKE} beforeinstall 728 cd ${.CURDIR}/lib/libz; ${MAKE} beforeinstall 729 cd ${.CURDIR}/usr.bin/lex; ${MAKE} beforeinstall 730 731# 732# libraries - build all libraries, and install them under ${DESTDIR}. 733# 734# The following dependencies exist between the libraries: 735# 736# lib*: csu libgcc_pic 737# libatm: libmd 738# libcam: libsbuf 739# libcrypt: libmd 740# libdialog: libncurses 741# libedit: libncurses 742# libg++: libm 743# libkrb: libcrypt 744# libopie: libmd 745# libpam: libcom_err libcrypt libcrypto libkrb libopie libradius \ 746# libskey libtacplus libutil libz libssh 747# libradius: libmd 748# libreadline: libncurses 749# libskey: libcrypt libmd 750# libss: libcom_err 751# libstc++: libm 752# libtacplus: libmd 753# 754# Across directories this comes down to (rougly): 755# 756# gnu/lib: lib/libm lib/libncurses 757# kerberosIV/lib kerberos5/lib: lib/libcrypt 758# lib/libpam: secure/lib/libcrypto kerberosIV/lib/libkrb \ 759# secure/lib/libssh lib/libz 760# secure/lib: lib/libmd 761# 762.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}.pcc) 763_csu= lib/csu/${MACHINE_ARCH}.pcc 764.elif ${MACHINE_ARCH} == "i386" && ${OBJFORMAT} == "elf" 765_csu= lib/csu/i386-elf 766.else 767_csu= lib/csu/${MACHINE_ARCH} 768.endif 769 770.if !defined(NOSECURE) && !defined(NOCRYPT) 771_secure_lib= secure/lib 772.endif 773 774.if !defined(NOCRYPT) && defined(MAKE_KERBEROS4) 775_kerberosIV_lib= kerberosIV/lib 776.endif 777 778.if !defined(NOCRYPT) && defined(MAKE_KERBEROS5) 779_kerberos5_lib= kerberos5/lib 780.endif 781 782.if defined(WANT_CSRG_LIBM) 783_libm= lib/libm 784.else 785_libm= lib/msun 786.endif 787 788.if ${MACHINE_ARCH} == "i386" 789_libkeycap= usr.sbin/pcvt/keycap 790.endif 791 792.if !defined(NOPERL) 793_libperl= gnu/usr.bin/perl/libperl 794.endif 795 796libraries: 797.for _lib in ${_csu} gnu/lib/csu gnu/lib/libgcc lib/libmd lib/libcrypt \ 798 ${_secure_lib} ${_kerberosIV_lib} \ 799 ${_kerberos5_lib} lib/libcom_err ${_libm} lib/libncurses \ 800 lib/libopie lib/libradius lib/libsbuf lib/libskey lib/libtacplus \ 801 lib/libutil lib/libz lib gnu/lib ${_libperl} usr.bin/lex/lib ${_libkeycap} 802.if exists(${.CURDIR}/${_lib}) 803 cd ${.CURDIR}/${_lib}; \ 804 ${MAKE} depend; \ 805 ${MAKE} all; \ 806 ${MAKE} install 807.endif 808.endfor 809 810.for __target in clean cleandepend cleandir depend obj 811.for entry in ${SUBDIR} 812${entry}.${__target}__D: .PHONY 813 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ 814 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ 815 edir=${entry}.${MACHINE_ARCH}; \ 816 cd ${.CURDIR}/$${edir}; \ 817 else \ 818 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ 819 edir=${entry}; \ 820 cd ${.CURDIR}/$${edir}; \ 821 fi; \ 822 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ 823.endfor 824par-${__target}: ${SUBDIR:S/$/.${__target}__D/} 825.endfor 826 827.include <bsd.subdir.mk> 828