1# 2# $FreeBSD$ 3# 4# Make command line options: 5# -DNO_KERBEROS Do not build Heimdal (Kerberos 5) 6# -DNOCLEANDIR run ${MAKE} clean, instead of ${MAKE} cleandir 7# -DNOCLEAN do not clean at all 8# -DNOCRYPT will prevent building of crypt versions 9# -DNOMAN do not build the manual pages 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# TARGET_ARCH="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.if exists(${.CURDIR}/include) 48SUBDIR+= include 49.endif 50.if exists(${.CURDIR}/lib) 51SUBDIR+= lib 52.endif 53 54.if exists(${.CURDIR}/bin) 55SUBDIR+= bin 56.endif 57.if exists(${.CURDIR}/games) && !defined(NOGAMES) 58SUBDIR+= games 59.endif 60.if exists(${.CURDIR}/gnu) 61SUBDIR+= gnu 62.endif 63.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ 64 !defined(NOCRYPT) && !defined(NO_OPENSSL) && !defined(NO_KERBEROS) 65SUBDIR+= kerberos5 66.endif 67.if exists(${.CURDIR}/libexec) 68SUBDIR+= libexec 69.endif 70.if exists(${.CURDIR}/sbin) 71SUBDIR+= sbin 72.endif 73.if exists(${.CURDIR}/secure) && !defined(NOCRYPT) && !defined(NOSECURE) 74SUBDIR+= secure 75.endif 76.if exists(${.CURDIR}/share) && !defined(NOSHARE) 77SUBDIR+= share 78.endif 79.if exists(${.CURDIR}/sys) 80SUBDIR+= sys 81.endif 82.if exists(${.CURDIR}/usr.bin) 83SUBDIR+= usr.bin 84.endif 85.if exists(${.CURDIR}/usr.sbin) 86SUBDIR+= usr.sbin 87.endif 88 89# etc must be last for "distribute" to work 90.if exists(${.CURDIR}/etc) 91SUBDIR+= etc 92.endif 93 94# These are last, since it is nice to at least get the base system 95# rebuilt before you do them. 96.if defined(LOCAL_DIRS) 97.for _DIR in ${LOCAL_DIRS} 98.if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile) 99SUBDIR+= ${_DIR} 100.endif 101.endfor 102.endif 103 104.if defined(SUBDIR_OVERRIDE) 105SUBDIR= ${SUBDIR_OVERRIDE} 106.endif 107 108.if defined(NOCLEANDIR) 109CLEANDIR= clean cleandepend 110.else 111CLEANDIR= cleandir 112.endif 113 114CVS?= cvs 115SUP?= /usr/local/bin/cvsup 116SUPFLAGS?= -g -L 2 -P - 117.if defined(SUPHOST) 118SUPFLAGS+= -h ${SUPHOST} 119.endif 120 121MAKEOBJDIRPREFIX?= /usr/obj 122.if !defined(OSRELDATE) 123OSRELDATE!= sysctl -n kern.osreldate 124.endif 125TARGET_ARCH?= ${MACHINE_ARCH} 126.if ${TARGET_ARCH} == ${MACHINE_ARCH} 127TARGET?= ${MACHINE} 128TARGET_CPUTYPE?=${CPUTYPE} 129.else 130TARGET?= ${TARGET_ARCH} 131TARGET_CPUTYPE?= 132.endif 133.if !empty(TARGET_CPUTYPE) 134_TARGET_CPUTYPE=${TARGET_CPUTYPE} 135.else 136_TARGET_CPUTYPE=dummy 137.endif 138_CPUTYPE!= ${MAKE} -f /dev/null -m ${.CURDIR}/share/mk \ 139 CPUTYPE=${_TARGET_CPUTYPE} -V CPUTYPE 140.if ${_CPUTYPE} != ${_TARGET_CPUTYPE} 141.error CPUTYPE global should be set with ?=. 142.endif 143.if make(buildworld) 144BUILD_ARCH!= sysctl -n hw.machine_arch 145.if ${MACHINE_ARCH} != ${BUILD_ARCH} 146.error To cross-build, set TARGET_ARCH. 147.endif 148.endif 149.if ${MACHINE} == ${TARGET} 150OBJTREE= ${MAKEOBJDIRPREFIX} 151.else 152OBJTREE= ${MAKEOBJDIRPREFIX}/${TARGET} 153.endif 154WORLDTMP= ${OBJTREE}${.CURDIR}/${MACHINE_ARCH} 155# /usr/games added for fortune which depend on strfile 156BPATH= ${WORLDTMP}/legacy/usr/sbin:${WORLDTMP}/legacy/usr/bin:${WORLDTMP}/legacy/usr/games 157XPATH= ${WORLDTMP}/usr/sbin:${WORLDTMP}/usr/bin:${WORLDTMP}/usr/games 158STRICTTMPPATH= ${BPATH}:${XPATH} 159TMPPATH= ${STRICTTMPPATH}:${PATH} 160 161INSTALLTMP!= /usr/bin/mktemp -d -u -t install 162 163# 164# Building a world goes through the following stages 165# 166# 1. legacy stage [BMAKE] 167# This stage is responsible for creating compatibility 168# shims that are needed by the bootstrap-tools, 169# build-tools and cross-tools stages. 170# 1. bootstrap-tools stage [BMAKE] 171# This stage is responsible for creating programs that 172# are needed for backward compatibility reasons. They 173# are not built as cross-tools. 174# 2. build-tools stage [TMAKE] 175# This stage is responsible for creating the object 176# tree and building any tools that are needed during 177# the build process. 178# 3. cross-tools stage [XMAKE] 179# This stage is responsible for creating any tools that 180# are needed for cross-builds. A cross-compiler is one 181# of them. 182# 4. world stage [WMAKE] 183# This stage actually builds the world. 184# 5. install stage (optional) [IMAKE] 185# This stage installs a previously built world. 186# 187 188BOOTSTRAPPING?= 0 189 190# Common environment for world related stages 191CROSSENV= MAKEOBJDIRPREFIX=${OBJTREE} \ 192 MACHINE_ARCH=${TARGET_ARCH} \ 193 MACHINE=${TARGET} \ 194 CPUTYPE=${TARGET_CPUTYPE} \ 195 GROFF_BIN_PATH=${WORLDTMP}/legacy/usr/bin \ 196 GROFF_FONT_PATH=${WORLDTMP}/legacy/usr/share/groff_font \ 197 GROFF_TMAC_PATH=${WORLDTMP}/legacy/usr/share/tmac 198 199# bootstrap-tools stage 200BMAKEENV= DESTDIR= \ 201 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 202 PATH=${BPATH}:${PATH} \ 203 WORLDTMP=${WORLDTMP} \ 204 MAKEFLAGS="-m ${.CURDIR}/tools/build/mk ${.MAKEFLAGS}" 205BMAKE= MAKEOBJDIRPREFIX=${WORLDTMP} \ 206 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ 207 BOOTSTRAPPING=${OSRELDATE} \ 208 -DNOHTML -DNOINFO -DNOLINT -DNOMAN -DNOPIC -DNOPROFILE \ 209 -DNOSHARED -DNO_CPU_CFLAGS -DNO_WARNS 210 211# build-tools stage 212TMAKE= MAKEOBJDIRPREFIX=${OBJTREE} \ 213 ${BMAKEENV} ${MAKE} -f Makefile.inc1 \ 214 BOOTSTRAPPING=${OSRELDATE} -DNOLINT -DNO_CPU_CFLAGS -DNO_WARNS 215 216# cross-tools stage 217XMAKE= TOOLS_PREFIX=${WORLDTMP} ${BMAKE} -DNO_FORTRAN -DNO_GDB 218 219# world stage 220WMAKEENV= ${CROSSENV} \ 221 DESTDIR=${WORLDTMP} \ 222 INSTALL="sh ${.CURDIR}/tools/install.sh" \ 223 PATH=${TMPPATH} 224WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1 225 226# install stage 227IMAKEENV= ${CROSSENV} \ 228 PATH=${STRICTTMPPATH}:${INSTALLTMP} 229IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1 230 231# kernel stage 232KMAKEENV= ${WMAKEENV} 233 234# 235# buildworld 236# 237# Attempt to rebuild the entire system, with reasonable chance of 238# success, regardless of how old your existing system is. 239# 240_worldtmp: 241.if ${.CURDIR:C/[^,]//g} != "" 242# The m4 build of sendmail files doesn't like it if ',' is used 243# anywhere in the path of it's files. 244 @echo 245 @echo "*** Error: path to source tree contains a comma ','" 246 @echo 247 @false 248.endif 249 @echo 250 @echo "--------------------------------------------------------------" 251 @echo ">>> Rebuilding the temporary build tree" 252 @echo "--------------------------------------------------------------" 253.if !defined(NOCLEAN) 254 rm -rf ${WORLDTMP} 255.else 256 rm -rf ${WORLDTMP}/legacy/usr/include 257 # XXX - These two can depend on any header file. 258 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c 259 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c 260.endif 261.for _dir in \ 262 usr/bin usr/games usr/include/sys usr/lib \ 263 usr/libexec usr/sbin usr/share/dict \ 264 usr/share/groff_font/devX100 \ 265 usr/share/groff_font/devX100-12 \ 266 usr/share/groff_font/devX75 \ 267 usr/share/groff_font/devX75-12 \ 268 usr/share/groff_font/devascii \ 269 usr/share/groff_font/devcp1047 \ 270 usr/share/groff_font/devdvi \ 271 usr/share/groff_font/devhtml \ 272 usr/share/groff_font/devkoi8-r \ 273 usr/share/groff_font/devlatin1 \ 274 usr/share/groff_font/devlbp \ 275 usr/share/groff_font/devlj4 \ 276 usr/share/groff_font/devps \ 277 usr/share/groff_font/devutf8 \ 278 usr/share/tmac/mdoc usr/share/tmac/mm 279 mkdir -p ${WORLDTMP}/legacy/${_dir} 280.endfor 281.for _dir in \ 282 usr/bin usr/include usr/lib/compat/aout usr/libdata/ldscripts \ 283 usr/libexec usr/share/misc 284 mkdir -p ${WORLDTMP}/${_dir} 285.endfor 286 ln -sf ${.CURDIR}/sys ${WORLDTMP} 287_legacy: 288 @echo 289 @echo "--------------------------------------------------------------" 290 @echo ">>> stage 1: legacy release compatibility shims" 291 @echo "--------------------------------------------------------------" 292 cd ${.CURDIR}; ${BMAKE} legacy 293_bootstrap-tools: 294 @echo 295 @echo "--------------------------------------------------------------" 296 @echo ">>> stage 1: bootstrap tools" 297 @echo "--------------------------------------------------------------" 298 cd ${.CURDIR}; ${BMAKE} bootstrap-tools 299_cleanobj: 300.if !defined(NOCLEAN) 301 @echo 302 @echo "--------------------------------------------------------------" 303 @echo ">>> stage 2: cleaning up the object tree" 304 @echo "--------------------------------------------------------------" 305 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/} 306.endif 307_obj: 308 @echo 309 @echo "--------------------------------------------------------------" 310 @echo ">>> stage 2: rebuilding the object tree" 311 @echo "--------------------------------------------------------------" 312 cd ${.CURDIR}; ${WMAKE} par-obj 313_build-tools: 314 @echo 315 @echo "--------------------------------------------------------------" 316 @echo ">>> stage 2: build tools" 317 @echo "--------------------------------------------------------------" 318 cd ${.CURDIR}; ${TMAKE} build-tools 319_cross-tools: 320 @echo 321 @echo "--------------------------------------------------------------" 322 @echo ">>> stage 3: cross tools" 323 @echo "--------------------------------------------------------------" 324 cd ${.CURDIR}; ${XMAKE} cross-tools 325_includes: 326 @echo 327 @echo "--------------------------------------------------------------" 328 @echo ">>> stage 4: populating ${WORLDTMP}/usr/include" 329 @echo "--------------------------------------------------------------" 330 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes 331_libraries: 332 @echo 333 @echo "--------------------------------------------------------------" 334 @echo ">>> stage 4: building libraries" 335 @echo "--------------------------------------------------------------" 336 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries 337_depend: 338 @echo 339 @echo "--------------------------------------------------------------" 340 @echo ">>> stage 4: make dependencies" 341 @echo "--------------------------------------------------------------" 342 cd ${.CURDIR}; ${WMAKE} par-depend 343everything: 344 @echo 345 @echo "--------------------------------------------------------------" 346 @echo ">>> stage 4: building everything.." 347 @echo "--------------------------------------------------------------" 348 cd ${.CURDIR}; ${WMAKE} par-all 349 350 351WMAKE_TGTS= 352.if !defined(SUBDIR_OVERRIDE) 353WMAKE_TGTS+= _worldtmp _legacy _bootstrap-tools 354.endif 355WMAKE_TGTS+= _cleanobj _obj _build-tools 356.if !defined(SUBDIR_OVERRIDE) 357WMAKE_TGTS+= _cross-tools 358.endif 359WMAKE_TGTS+= _includes _libraries _depend everything 360 361buildworld: ${WMAKE_TGTS} 362.ORDER: ${WMAKE_TGTS} 363 364# 365# installcheck 366# 367# Checks to be sure system is ready for installworld 368# 369installcheck: 370.if !defined(NO_SENDMAIL) 371 @if ! `grep -q '^smmsp:' /etc/passwd`; then \ 372 echo "ERROR: Required smmsp user is missing, see /usr/src/UPDATING."; \ 373 false; \ 374 fi 375 @if ! `grep -q '^smmsp:' /etc/group`; then \ 376 echo "ERROR: Required smmsp group is missing, see /usr/src/UPDATING."; \ 377 false; \ 378 fi 379.endif 380.if ${TARGET_ARCH} == ${MACHINE_ARCH} && !defined(DISTDIR) && \ 381 (!defined(DESTDIR) || empty(DESTDIR) || ${DESTDIR} == "/") 382 @echo "Checking to see if your booted kernel is fresh enough.." 383 ${.OBJDIR}/bin/sh/sh -c \ 384 'echo "Testing installed kernel for new sigaction(2) syscall"' 385 @echo "Seems ok.." 386.endif 387 388# 389# distributeworld 390# 391# Distributes everything compiled by a `buildworld'. 392# 393# installworld 394# 395# Installs everything compiled by a 'buildworld'. 396# 397distributeworld installworld: installcheck 398 mkdir -p ${INSTALLTMP} 399 for prog in [ awk cap_mkdb cat chflags chmod chown \ 400 date echo egrep find grep \ 401 ln make mkdir mtree mv pwd_mkdb rm sed sh sysctl \ 402 test true uname wc zic; do \ 403 cp `which $$prog` ${INSTALLTMP}; \ 404 done 405 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//} 406 rm -rf ${INSTALLTMP} 407 408# 409# reinstall 410# 411# If you have a build server, you can NFS mount the source and obj directories 412# and do a 'make reinstall' on the *client* to install new binaries from the 413# most recent server build. 414# 415reinstall: 416 @echo "--------------------------------------------------------------" 417 @echo ">>> Making hierarchy" 418 @echo "--------------------------------------------------------------" 419 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy 420 @echo 421 @echo "--------------------------------------------------------------" 422 @echo ">>> Installing everything.." 423 @echo "--------------------------------------------------------------" 424 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install 425.if !defined(NOMAN) && !defined(NO_MAKEDB_RUN) 426 @echo 427 @echo "--------------------------------------------------------------" 428 @echo ">>> Rebuilding man page indices" 429 @echo "--------------------------------------------------------------" 430 cd ${.CURDIR}/share/man; ${MAKE} makedb 431.endif 432 433redistribute: 434 @echo "--------------------------------------------------------------" 435 @echo ">>> Distributing everything.." 436 @echo "--------------------------------------------------------------" 437 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute 438 439# 440# buildkernel and installkernel 441# 442# Which kernels to build and/or install is specified by setting 443# KERNCONF. If not defined a GENERIC kernel is built/installed. 444# Only the existing (depending TARGET) config files are used 445# for building kernels and only the first of these is designated 446# as the one being installed. 447# 448# Note that we have to use TARGET instead of TARGET_ARCH when 449# we're in kernel-land. Since only TARGET_ARCH is (expected) to 450# be set to cross-build, we have to make sure TARGET is set 451# properly. 452 453.if !defined(KERNCONF) && defined(KERNEL) 454KERNCONF= ${KERNEL} 455KERNWARN= yes 456.else 457KERNCONF?= GENERIC 458.endif 459INSTKERNNAME?= kernel 460 461KERNSRCDIR?= ${.CURDIR}/sys 462KRNLCONFDIR= ${KERNSRCDIR}/${TARGET}/conf 463KRNLOBJDIR= ${OBJTREE}${KERNSRCDIR} 464KERNCONFDIR?= ${KRNLCONFDIR} 465 466BUILDKERNELS= 467INSTALLKERNEL= 468.for _kernel in ${KERNCONF} 469.if exists(${KERNCONFDIR}/${_kernel}) 470BUILDKERNELS+= ${_kernel} 471.if empty(INSTALLKERNEL) 472INSTALLKERNEL= ${_kernel} 473.endif 474.endif 475.endfor 476 477# 478# buildkernel 479# 480# Builds all kernels defined by BUILDKERNELS. 481# 482buildkernel: 483.if empty(BUILDKERNELS) 484 @echo "ERROR: Missing kernel configuration file(s) (${KERNCONF})."; 485 @false 486.endif 487.if defined(KERNWARN) 488 @echo "--------------------------------------------------------------" 489 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF=" 490 @echo "--------------------------------------------------------------" 491 @sleep 3 492.endif 493 @echo 494.for _kernel in ${BUILDKERNELS} 495 @echo "--------------------------------------------------------------" 496 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`" 497 @echo "--------------------------------------------------------------" 498 @echo "===> ${_kernel}" 499 mkdir -p ${KRNLOBJDIR} 500.if !defined(NO_KERNELCONFIG) 501 cd ${KRNLCONFDIR}; \ 502 PATH=${TMPPATH} \ 503 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \ 504 ${KERNCONFDIR}/${_kernel} 505.endif 506.if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) 507 cd ${KRNLOBJDIR}/${_kernel}; \ 508 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} ${CLEANDIR} 509.endif 510 cd ${KRNLOBJDIR}/${_kernel}; \ 511 MAKESRCPATH=${KERNSRCDIR}/dev/aic7xxx/aicasm \ 512 ${MAKE} -DNO_CPU_CFLAGS -f ${KERNSRCDIR}/dev/aic7xxx/aicasm/Makefile 513 cd ${KRNLOBJDIR}/${_kernel}; \ 514 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} obj 515# XXX - Gratuitously builds aicasm in the ``makeoptions NO_MODULES'' case. 516.if !defined(MODULES_WITH_WORLD) && !defined(NO_MODULES) && exists(${KERNSRCDIR}/modules) 517.for target in obj depend all 518 cd ${.CURDIR}/sys/modules/aic7xxx/aicasm; \ 519 MAKEOBJDIRPREFIX=${KRNLOBJDIR}/${_kernel}/modules \ 520 ${MAKE} -DNO_CPU_CFLAGS ${target} 521.endfor 522.endif 523.if !defined(NO_KERNELDEPEND) 524 cd ${KRNLOBJDIR}/${_kernel}; \ 525 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend -DNO_MODULES_OBJ 526.endif 527 cd ${KRNLOBJDIR}/${_kernel}; \ 528 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all -DNO_MODULES_OBJ 529 @echo "--------------------------------------------------------------" 530 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`" 531 @echo "--------------------------------------------------------------" 532.endfor 533 534# 535# installkernel 536# 537# Install the kernel defined by INSTALLKERNEL 538# 539installkernel reinstallkernel: 540.if empty(INSTALLKERNEL) 541 @echo "ERROR: No kernel \"${KERNCONF}\" to install." 542 @false 543.endif 544 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \ 545 ${CROSSENV} PATH=${TMPPATH} \ 546 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//} 547 548# 549# update 550# 551# Update the source tree, by running sup and/or running cvs to update to the 552# latest copy. 553# 554update: 555.if defined(SUP_UPDATE) 556 @echo "--------------------------------------------------------------" 557 @echo ">>> Running ${SUP}" 558 @echo "--------------------------------------------------------------" 559.if defined(SUPFILE) 560 @${SUP} ${SUPFLAGS} ${SUPFILE} 561.endif 562.if defined(SUPFILE1) 563 @${SUP} ${SUPFLAGS} ${SUPFILE1} 564.endif 565.if defined(SUPFILE2) 566 @${SUP} ${SUPFLAGS} ${SUPFILE2} 567.endif 568.if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE) 569 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE} 570.endif 571.if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE) 572 @${SUP} ${SUPFLAGS} ${DOCSUPFILE} 573.endif 574.endif 575.if defined(CVS_UPDATE) 576 @echo "--------------------------------------------------------------" 577 @echo ">>> Updating ${.CURDIR} from cvs repository" ${CVSROOT} 578 @echo "--------------------------------------------------------------" 579 cd ${.CURDIR}; ${CVS} -R -q update -A -P -d 580.endif 581 582# 583# most 584# 585# Build most of the user binaries on the existing system libs and includes. 586# 587most: 588 @echo "--------------------------------------------------------------" 589 @echo ">>> Building programs only" 590 @echo "--------------------------------------------------------------" 591.for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin 592 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all 593.endfor 594 595# 596# installmost 597# 598# Install the binaries built by the 'most' target. This does not include 599# libraries or include files. 600# 601installmost: 602 @echo "--------------------------------------------------------------" 603 @echo ">>> Installing programs only" 604 @echo "--------------------------------------------------------------" 605.for _dir in bin sbin libexec usr.bin usr.sbin gnu/usr.bin gnu/usr.sbin 606 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install 607.endfor 608 609# 610# ------------------------------------------------------------------------ 611# 612# From here onwards are utility targets used by the 'make world' and 613# related targets. If your 'world' breaks, you may like to try to fix 614# the problem and manually run the following targets to attempt to 615# complete the build. Beware, this is *not* guaranteed to work, you 616# need to have a pretty good grip on the current state of the system 617# to attempt to manually finish it. If in doubt, 'make world' again. 618# 619 620# 621# legacy: Build compatibility shims for the next three targets 622# 623legacy: 624.for _tool in tools/build 625 @${ECHODIR} "===> ${_tool}"; \ 626 cd ${.CURDIR}/${_tool}; \ 627 ${MAKE} DIRPRFX=${_tool}/ obj; \ 628 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy includes; \ 629 ${MAKE} DIRPRFX=${_tool}/ depend; \ 630 ${MAKE} DIRPRFX=${_tool}/ all; \ 631 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 632.endfor 633 634# 635# bootstrap-tools: Build tools needed for compatibility 636# 637.if exists(${.CURDIR}/games) && !defined(NOGAMES) 638_strfile= games/fortune/strfile 639.endif 640 641.if ${BOOTSTRAPPING} < 500113 642_groff= gnu/usr.bin/groff 643.else 644_groff= gnu/usr.bin/groff/tmac 645.endif 646 647.if ( ${BOOTSTRAPPING} < 450005 || \ 648 ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500034 )) 649_uudecode= usr.bin/uudecode 650.endif 651 652.if ( ${BOOTSTRAPPING} < 430002 || \ 653 ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500019 )) 654_xargs= usr.bin/xargs 655.endif 656 657.if ( ${BOOTSTRAPPING} < 430002 || \ 658 ( ${BOOTSTRAPPING} >= 500000 && ${BOOTSTRAPPING} < 500018 )) 659_yacc= usr.bin/yacc 660.endif 661 662.if ${BOOTSTRAPPING} < 500019 663_kbdcontrol= usr.sbin/kbdcontrol 664.endif 665 666bootstrap-tools: 667.for _tool in ${_strfile} usr.bin/colldef \ 668 usr.bin/makewhatis usr.bin/rpcgen ${_uudecode} \ 669 ${_xargs} usr.bin/xinstall ${_yacc} \ 670 usr.sbin/config ${_kbdcontrol} \ 671 gnu/usr.bin/gperf ${_groff} gnu/usr.bin/texinfo 672 @${ECHODIR} "===> ${_tool}"; \ 673 cd ${.CURDIR}/${_tool}; \ 674 ${MAKE} DIRPRFX=${_tool}/ obj; \ 675 ${MAKE} DIRPRFX=${_tool}/ depend; \ 676 ${MAKE} DIRPRFX=${_tool}/ all; \ 677 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX}/legacy install 678.endfor 679 680# 681# build-tools: Build special purpose build tools 682# 683.if defined(MODULES_WITH_WORLD) && exists(${KERNSRCDIR}/modules) 684_aicasm= sys/modules/aic7xxx/aicasm 685.endif 686 687.if exists(${.CURDIR}/share) && !defined(NOSHARE) 688_share= share/syscons/scrnmaps 689.endif 690 691.if !defined(NO_FORTRAN) 692_fortran= gnu/usr.bin/cc/f771 693.endif 694 695.if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \ 696 !defined(NOCRYPT) && !defined(NO_KERBEROS) 697_libkrb5= kerberos5/lib/libroken kerberos5/lib/libvers \ 698 kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl 699.endif 700 701build-tools: 702.for _tool in bin/csh bin/sh gnu/usr.bin/cc/cc_tools ${_fortran} \ 703 ${_libkrb5} lib/libncurses ${_share} \ 704 ${_aicasm} usr.bin/awk usr.bin/file usr.sbin/sysinstall 705 @${ECHODIR} "===> ${_tool}"; \ 706 cd ${.CURDIR}/${_tool}; \ 707 ${MAKE} DIRPRFX=${_tool}/ obj; \ 708 ${MAKE} DIRPRFX=${_tool}/ build-tools 709.endfor 710 711# 712# cross-tools: Build cross-building tools 713# 714.if ${TARGET_ARCH} == "alpha" && ${TARGET_ARCH} != ${MACHINE_ARCH} 715_elf2exe= usr.sbin/elf2exe 716.endif 717 718.if ${TARGET_ARCH} == "i386" && ${TARGET_ARCH} != ${MACHINE_ARCH} 719_btxld= usr.sbin/btxld 720.if defined(RELEASEDIR) 721_kgzip= usr.sbin/kgzip 722.endif 723.endif 724 725.if ${TARGET_ARCH} == "sparc64" && ${TARGET_ARCH} != ${MACHINE_ARCH} && \ 726 ${BOOTSTRAPPING} < 500037 727_elf2aout= usr.bin/elf2aout 728.endif 729 730.if defined(RELEASEDIR) 731_crunchide= usr.sbin/crunch/crunchide 732.endif 733 734_xlint= usr.bin/xlint/lint1 usr.bin/xlint/lint2 usr.bin/xlint/xlint 735 736cross-tools: 737.for _tool in ${_btxld} ${_elf2aout} ${_elf2exe} \ 738 gnu/usr.bin/binutils ${_crunchide} \ 739 gnu/usr.bin/cc ${_xlint} ${_kgzip} 740 @${ECHODIR} "===> ${_tool}"; \ 741 cd ${.CURDIR}/${_tool}; \ 742 ${MAKE} DIRPRFX=${_tool}/ obj; \ 743 ${MAKE} DIRPRFX=${_tool}/ depend; \ 744 ${MAKE} DIRPRFX=${_tool}/ all; \ 745 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${MAKEOBJDIRPREFIX} install 746.endfor 747 748# 749# hierarchy - ensure that all the needed directories are present 750# 751hierarchy: 752 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs 753 754# 755# libraries - build all libraries, and install them under ${DESTDIR}. 756# 757# The list of libraries with dependents (${_prebuild_libs}) and their 758# interdependencies (__L) are built automatically by the 759# ${.CURDIR}/tools/make_libdeps.sh script. 760# 761libraries: 762 cd ${.CURDIR}; \ 763 ${MAKE} -f Makefile.inc1 _startup_libs; \ 764 ${MAKE} -f Makefile.inc1 _prebuild_libs; \ 765 ${MAKE} -f Makefile.inc1 _generic_libs; 766 767# These dependencies are not automatically generated: 768# 769# gnu/lib/csu, gnu/lib/libgcc and lib/csu must be built before all 770# shared libraries for ELF. 771# 772_startup_libs= gnu/lib/csu gnu/lib/libgcc 773.if exists(${.CURDIR}/lib/csu/${MACHINE_ARCH}-elf) 774_startup_libs+= lib/csu/${MACHINE_ARCH}-elf 775.else 776_startup_libs+= lib/csu/${MACHINE_ARCH} 777.endif 778 779_prebuild_libs= 780 781_generic_libs= gnu/lib 782 783.if !defined(NOCRYPT) && !defined(NO_KERBEROS) 784_prebuild_libs+= kerberos5/lib/libasn1 785_prebuild_libs+= kerberos5/lib/libgssapi 786_prebuild_libs+= kerberos5/lib/libkrb5 787_prebuild_libs+= kerberos5/lib/libroken 788_generic_libs+= kerberos5/lib 789.endif 790 791_prebuild_libs+= lib/libcom_err lib/libcrypt lib/libkvm lib/libmd \ 792 lib/libncurses lib/libopie lib/libpam lib/libradius \ 793 lib/librpcsvc \ 794 lib/libsbuf lib/libtacplus lib/libutil lib/libypclnt \ 795 lib/libz lib/msun 796 797lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L 798lib/libypclnt__L: lib/librpcsvc__L 799 800_generic_libs+= lib 801 802.if !defined(NOCRYPT) && !defined(NOSECURE) 803.if !defined(NO_OPENSSL) 804_prebuild_libs+= secure/lib/libcrypto secure/lib/libssl 805.if !defined(NO_OPENSSH) 806_prebuild_libs+= secure/lib/libssh 807secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L 808.endif 809.endif 810_generic_libs+= secure/lib 811.endif 812 813_generic_libs+= usr.bin/lex/lib 814 815.if ${MACHINE_ARCH} == "i386" 816_generic_libs+= usr.sbin/pcvt/keycap 817.endif 818 819.for _lib in ${_startup_libs} ${_prebuild_libs:Nlib/libpam} ${_generic_libs} 820${_lib}__L: .PHONY 821.if exists(${.CURDIR}/${_lib}) 822 @${ECHODIR} "===> ${_lib}"; \ 823 cd ${.CURDIR}/${_lib}; \ 824 ${MAKE} DIRPRFX=${_lib}/ depend; \ 825 ${MAKE} DIRPRFX=${_lib}/ all; \ 826 ${MAKE} DIRPRFX=${_lib}/ install 827.endif 828.endfor 829 830# libpam is special: we need to build static PAM modules before 831# static PAM library, and dynamic PAM library before dynamic PAM 832# modules. 833lib/libpam__L: .PHONY 834 @${ECHODIR} "===> lib/libpam"; \ 835 cd ${.CURDIR}/lib/libpam; \ 836 ${MAKE} DIRPRFX=lib/libpam/ depend; \ 837 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET all; \ 838 ${MAKE} DIRPRFX=lib/libpam/ -D_NO_LIBPAM_SO_YET install 839 840_startup_libs: ${_startup_libs:S/$/__L/} 841_prebuild_libs: ${_prebuild_libs:S/$/__L/} 842_generic_libs: ${_generic_libs:S/$/__L/} 843 844.for __target in all clean cleandepend cleandir depend includes obj 845.for entry in ${SUBDIR} 846${entry}.${__target}__D: .PHONY 847 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \ 848 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \ 849 edir=${entry}.${MACHINE_ARCH}; \ 850 cd ${.CURDIR}/$${edir}; \ 851 else \ 852 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \ 853 edir=${entry}; \ 854 cd ${.CURDIR}/$${edir}; \ 855 fi; \ 856 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/ 857.endfor 858par-${__target}: ${SUBDIR:S/$/.${__target}__D/} 859.endfor 860 861.include <bsd.subdir.mk> 862