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