2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
4 # This file defines the user-driven targets.
6 # Standard targets are documented in the makefiles in /usr/share/mk and include:
7 # obj depend all install clean cleandepend cleanobj
9 # Build-time options are documented in make.conf(5).
12 # Put initial settings here.
15 # /libexec/ld-elf.so.2 needs to be installed first
16 # Otherwise, install(1) beeing a dynamically linked binary will fail
17 # during the first upgrade from a static to a dynamic world
18 .if exists(${.CURDIR}/libexec)
22 # We need to do include and lib early.
24 .if exists(${.CURDIR}/include)
27 .if exists(${.CURDIR}/lib)
30 # This exists simply to ensure that the obj dir hierarchy is
31 # intact for nrelease, allowing the nrelease Makefile's to
32 # reference ${.OBJDIR}.
34 .if exists(${.CURDIR}/nrelease)
38 .if exists(${.CURDIR}/bin)
41 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
44 .if exists(${.CURDIR}/gnu)
47 .if exists(${.CURDIR}/sbin)
50 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
53 .if exists(${.CURDIR}/sys)
56 .if exists(${.CURDIR}/usr.bin)
59 .if exists(${.CURDIR}/usr.sbin)
62 #.if exists(${.CURDIR}/llvm_clang)
66 .if exists(${.CURDIR}/etc)
70 # These are last, since it is nice to at least get the base system
71 # rebuilt before you do them.
72 .if defined(LOCAL_DIRS)
73 .for _DIR in ${LOCAL_DIRS}
74 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
80 .if defined(SUBDIR_OVERRIDE)
81 SUBDIR= ${SUBDIR_OVERRIDE}
84 .if defined(NOCLEANDIR)
85 CLEANDIR= clean cleandepend
94 # Object directory base in primary make. Note that when we rerun make
95 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
96 # subdirectory because the rest of the build system needs it that way.
97 # The original object directory base is saved in OBJTREE.
99 MAKEOBJDIRPREFIX?= /usr/obj
100 OBJTREE?= ${MAKEOBJDIRPREFIX}
102 # Used for stage installs and pathing
104 DESTDIRBASE:= ${OBJTREE}${.CURDIR}
106 # Remove DESTDIR from MAKEFLAGS. It is present in the environment
107 # anyhow, and we need to be able to override it for stage installs
108 .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*}
110 # This section sets the tools used to build the world/kernel
112 WORLD_LDVER?= ld.gold
113 WORLD_BINUTILSVER?= binutils227
115 # Set the backup parameters if they are not already defined
117 WORLD_BACKUP?= /var/backups/world_backup
118 AUTO_BACKUP?= ${OBJTREE}/world_backup/${DESTDIR}
120 TARGET_ARCH?= ${MACHINE_ARCH}
121 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
124 TARGET?= ${TARGET_ARCH}
127 BUILD_ARCH!= sysctl -n hw.machine_arch
129 # temporary until everybody has converted to x86_64
130 .if ${BUILD_ARCH} == "amd64"
134 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
135 .error To cross-build, set TARGET_ARCH.
139 # XXX this is ugly and we need to come up with a nicer solution
140 .if !defined(TARGET_PLATFORM)
141 .if ${TARGET_ARCH} == "x86_64"
142 TARGET_PLATFORM= pc64
144 .error Unknown target architecture.
148 THREAD_LIB?= thread_xu
149 .if ${THREAD_LIB} == "c_r"
150 .if defined(NO_LIBC_R)
151 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
155 # BTOOLS (Natively built) All non-cross-development tools that the
156 # main build needs. This includes things like 'mkdir' and 'rm'.
157 # We will not use the native system's exec path once we start
158 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
160 # CTOOLS (Natively built) Cross development tools which are specific
161 # to the target architecture.
163 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
166 # MACHINE_PLATFORM Platform Architecture we are building on
167 # MACHINE Machine Architecture (usually the same as MACHINE_ARCH)
168 # MACHINE_ARCH CPU Architecture we are building on
170 # TARGET_PLATFORM Platform Architecture we are building for
171 # TARGET Machine Architecture we are building for
172 # TARGET_ARCH CPU Architecture we are building for
174 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
175 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
176 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
178 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
179 # cross-tools stages to augment the existing command path to access newer
180 # versions of certain utilities such as 'patch' that the cross-tools stage
183 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/sbin:${BTOOLSDEST}/bin
185 # The cross-tools path containing the cross-tools to cross build the
188 CTOOLSPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/sbin:${CTOOLSDEST}/bin
190 # The strict temporary command path contains all binaries required
191 # by the buildworld system after the cross-tools stage.
193 # NOTE: Append '/usr/local/bin:/usr/pkg/bin' to support external compilers.
194 # See compilers.conf(5) man page for more info.
196 STRICTTMPPATH= ${CTOOLSPATH}:${BTOOLSPATH}:/usr/local/bin:/usr/pkg/bin
202 # Building a world goes through the following stages
204 # 1. bootstrap-tool stage [BMAKE]
205 # This stage is responsible for creating programs that
206 # are needed for backward compatibility reasons. They
207 # are not built as cross-tools.
208 # 2. build-tool stage [TMAKE]
209 # This stage is responsible for creating the object
210 # tree and building any tools that are needed during
212 # 3. cross-tool stage [XMAKE]
213 # This stage is responsible for creating any tools that
214 # are needed for cross-builds. A cross-compiler is one
216 # 4. world stage [WMAKE]
217 # This stage actually builds the world.
218 # 5. install stage (optional) [IMAKE]
219 # This stage installs a previously built world.
221 # In all cases we must carefully adjust the environment so the proper
222 # tools and header files are used.
224 # NOTE: The M4 environment variable is used by the [f]lex binary to
225 # override the location of the 'm4' binary. The override is
226 # needed for certain buildworld version transitions, specifically
227 # past a certain point in 3.3 because the older /usr/bin/m4 will
228 # generate output that will blow up the newer [f]lex/yacc/bison
232 # bootstrap-tool stage
234 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
236 DESTDIR=${BTOOLSDEST} \
238 PATH=${BTOOLSPATH}:${PATH} \
239 M4=${BTOOLSDEST}/usr/bin/m4 \
240 INSTALL="sh ${.CURDIR}/tools/install.sh"
242 BMAKE= ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
243 -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
244 -DNO_WERROR -DNO_NLS -DSYSBUILD
248 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
252 PATH=${BTOOLSPATH}:${PATH} \
253 M4=${BTOOLSDEST}/usr/bin/m4 \
254 INSTALL="sh ${.CURDIR}/tools/install.sh"
256 TMAKE= ${TMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
257 -DNOSHARED -DSYSBUILD
261 # note: TOOLS_PREFIX points to the obj root holding the cross
262 # compiler binaries, while USRDATA_PREFIX points to the obj root
263 # holding the target environment (and also determines where cross-built
264 # libraries, crt*.o, and include files are installed).
266 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
268 DESTDIR=${CTOOLSDEST} \
270 _SHLIBDIRPREFIX=${CTOOLSDEST} \
271 INSTALL="sh ${.CURDIR}/tools/install.sh" \
272 TOOLS_PREFIX=${CTOOLSDEST} \
273 USRDATA_PREFIX=${WORLDDEST} \
274 SELECT_LINKER=${WORLD_LDVER} \
275 M4=${BTOOLSDEST}/usr/bin/m4 \
276 PATH=${BTOOLSPATH}:${PATH}
278 XMAKE= ${XMAKEENV} make -f Makefile.inc1 -DNO_GDB \
279 -DBOOTSTRAPPING -DNOSHARED -DSYSBUILD
281 # world stage, note the strict path and note that TOOLS_PREFIX is left
282 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
283 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
284 # for both binary and library paths, even though it is being compiled to
285 # WORLDDEST. None of the programs in the world stage are ever actually
286 # executed during the buildworld/installworld.
288 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
290 MACHINE_ARCH=${TARGET_ARCH} \
292 MACHINE_PLATFORM=${TARGET_PLATFORM} \
294 OBJFORMAT_PATH=${CTOOLSDEST} \
295 HOST_CCVER=${HOST_CCVER} \
296 CCVER=${WORLD_CCVER} \
297 LDVER=${WORLD_LDVER} \
298 BINUTILSVER=${WORLD_BINUTILSVER}
300 WMAKEENV= ${CROSSENV} \
301 DESTDIR=${WORLDDEST} \
302 _SHLIBDIRPREFIX=${WORLDDEST} \
303 INSTALL="sh ${.CURDIR}/tools/install.sh" \
304 M4=${BTOOLSDEST}/usr/bin/m4 \
305 PATH=${STRICTTMPPATH}
307 WMAKE= ${WMAKEENV} make -f Makefile.inc1 -DSYSBUILD
311 IMAKEENV= ${CROSSENV} \
312 PATH=${STRICTTMPPATH}
313 IMAKE= ${IMAKEENV} make -f Makefile.inc1 -DSYSBUILD
317 KMAKEENV= ${WMAKEENV}
321 # Attempt to rebuild the entire system, with reasonable chance of
322 # success, regardless of how old your existing system is.
324 _worldtmp: _cleantmp _mtreetmp
325 .ORDER: _cleantmp _mtreetmp
329 @echo "--------------------------------------------------------------"
330 @echo ">>> Rebuilding the temporary build tree"
331 @echo "--------------------------------------------------------------"
332 .if !defined(NOCLEAN)
333 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
335 # XXX - These two can depend on any header file.
336 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
337 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
341 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
342 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
343 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
344 -p ${_dir}/ > /dev/null
345 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
346 -p ${_dir}/usr > /dev/null
348 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
349 -p ${WORLDDEST}/usr/include > /dev/null
350 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
354 @echo "--------------------------------------------------------------"
355 @echo ">>> stage 1: bootstrap tools"
356 @echo "--------------------------------------------------------------"
357 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
360 @echo "--------------------------------------------------------------"
361 @echo ">>> stage 2a: cleaning up the object tree"
362 @echo "--------------------------------------------------------------"
363 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
366 @echo "--------------------------------------------------------------"
367 @echo ">>> stage 2b: rebuilding the object tree"
368 @echo "--------------------------------------------------------------"
369 cd ${.CURDIR}; ${WMAKE} par-obj
372 @echo "--------------------------------------------------------------"
373 @echo ">>> stage 2c: build tools"
374 @echo "--------------------------------------------------------------"
375 cd ${.CURDIR}; ${TMAKE} build-tools
378 @echo "--------------------------------------------------------------"
379 @echo ">>> stage 3: cross tools"
380 @echo "--------------------------------------------------------------"
381 cd ${.CURDIR}; ${XMAKE} cross-tools
384 @echo "--------------------------------------------------------------"
385 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
386 @echo "--------------------------------------------------------------"
387 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
390 @echo "--------------------------------------------------------------"
391 @echo ">>> stage 4b: building libraries"
392 @echo "--------------------------------------------------------------"
393 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOMAN -DNOFSCHG libraries
396 @echo "--------------------------------------------------------------"
397 @echo ">>> stage 4c: make dependencies"
398 @echo "--------------------------------------------------------------"
399 cd ${.CURDIR}; ${WMAKE} par-depend
402 @echo "--------------------------------------------------------------"
403 @echo ">>> stage 4d: building everything.."
404 @echo "--------------------------------------------------------------"
405 cd ${.CURDIR}; ${WMAKE} all
407 @echo "--------------------------------------------------------------"
408 @echo ">>> starting buildworld target"
409 @echo "--------------------------------------------------------------"
411 @echo "--------------------------------------------------------------"
412 @echo ">>> buildworld target complete"
413 @echo "--------------------------------------------------------------"
415 @echo "--------------------------------------------------------------"
416 @echo ">>> starting quickworld target"
417 @echo "--------------------------------------------------------------"
419 @echo "--------------------------------------------------------------"
420 @echo ">>> quickworld target complete"
421 @echo "--------------------------------------------------------------"
423 @echo "--------------------------------------------------------------"
424 @echo ">>> starting installworld target"
425 @echo "--------------------------------------------------------------"
427 # note: buildworld no longer depends on _cleanobj because we rm -rf the
428 # entire object tree and built the bootstrap tools in a different location.
430 # buildworld - build everything from scratch
431 # quickworld - skip the bootstrap, build, and cross-build steps
432 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
434 # note: we include _obj in realquickworld to prevent accidental creation
435 # of files in /usr/src.
438 .if !defined(SUBDIR_OVERRIDE)
439 WMAKE_TGTS+= _worldtmp _bootstrap-tools
441 WMAKE_TGTS+= _obj _build-tools
442 .if !defined(SUBDIR_OVERRIDE)
443 WMAKE_TGTS+= _cross-tools
445 WMAKE_TGTS+= _includes _libraries _depend everything
447 buildworld: _bwinit ${WMAKE_TGTS} _bwdone
449 quickworld: _qwinit _mtreetmp _obj _includes _libraries _depend everything _qwdone
451 realquickworld: _qwinit _mtreetmp _obj _includes _libraries everything _qwdone
453 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
455 .ORDER: _bwinit ${WMAKE_TGTS} _bwdone
456 .ORDER: _obj _includes
457 .ORDER: _qwinit _mtreetmp _obj
458 .ORDER: installcheck backupworld-auto
459 .ORDER: everything _qwdone
464 # Checks to be sure system is ready for installworld
466 installcheck: _iwinit
467 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
468 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
469 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
470 .if !defined(OVERRIDE_CHECKS)
471 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
472 @case `uname -r` in 1.2*|1.3-*|1.3.*|1.4.*|1.5.0-*|1.5.1-*|1.5.2-*|1.5.3-*) echo "You must upgrade your kernel to at least 1.5.4 and reboot before you can safely installworld, due to libc/system call ABI changes" ; /usr/bin/false ; esac
473 @case `uname -r` in 1.*|2.*|3.0*|3.1*|3.2*|3.3*|3.4*|3.5*|3.6*) echo "Base is too old for a normal installworld, you need to use installworld-force" ; /usr/bin/false ; esac
480 # Backs up the current world if ${AUTO_BACKUP} is writable.
481 # Installs everything compiled by a 'buildworld'.
483 installworld: installcheck
484 -@mkdir -p ${AUTO_BACKUP} > /dev/null 2>&1
486 (touch ${AUTO_BACKUP}/.updating > /dev/null 2>&1 && \
487 ${IMAKE} backupworld-auto) || \
488 echo "Cannot write to ${AUTO_BACKUP} - world not backed up"
490 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
491 ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc \
492 ${DESTDIR}/etc/upgrade/
494 .if !exists(/rescue/rescue) && \
495 (!defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/")
496 # Do not leave an empty '/rescue' directory when switching the rescue
497 # tools from '/usr/share/initrd' to '/rescue'.
498 @echo "--------------------------------------------------------------"
499 @echo ">>> we have to run make upgrade to transition rescue tools"
500 @echo "--------------------------------------------------------------"
501 (cd ${.CURDIR} && make upgrade)
502 @echo "--------------------------------------------------------------"
503 @echo ">>> build and install rescue tools"
504 @echo "--------------------------------------------------------------"
505 (cd ${.CURDIR} && make rescue)
509 @echo "--------------------------------------------------------------"
510 @echo ">>> installworld target complete"
511 @echo "--------------------------------------------------------------"
514 @echo "Doing a forced installworld. This will install to a temporary directory,"
515 @echo "then copy the main binaries and libraries with a static cpdup to ${DESTDIR}/"
516 @echo "and finally will issue a normal installworld. Starting in 5 seconds.".
519 rm -rf /usr/obj/temp > /dev/null 2>& 1 || chflags -R noschg /usr/obj/temp
521 mkdir -p /usr/obj/temp/cpdup/bin
522 (cd ${.CURDIR}/bin/cpdup; make clean && make obj && make clean && make CFLAGS=-static all install DESTDIR=/usr/obj/temp/cpdup NOMAN=TRUE)
523 @echo "XXXXXXXXX Installing to temporary XXXXXXXXX"
525 (cd ${.CURDIR}; ${MAKE} installworld DESTDIR=/usr/obj/temp > /dev/null 2>&1)
526 @echo "XXXXXXXXX Blasting binaries and libraries XXXXXXXXX"
528 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/bin /bin
529 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/sbin /sbin
530 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/lib /lib
531 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/bin /usr/bin
532 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/sbin /usr/sbin
533 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/lib /usr/lib
534 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/libexec /libexec
535 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/libexec /usr/libexec
536 @echo "XXXXXXXXX Doing final installworld XXXXXXXX"
538 (cd ${.CURDIR}; ${MAKE} installworld OVERRIDE_CHECKS=TRUE)
539 (cd ${.CURDIR}; ${MAKE} upgrade OVERRIDE_CHECKS=TRUE)
544 # If you have a build server, you can NFS mount the source and obj directories
545 # and do a 'make reinstall' on the *client* to install new binaries from the
546 # most recent server build.
549 @echo "--------------------------------------------------------------"
550 @echo ">>> Making hierarchy"
551 @echo "--------------------------------------------------------------"
552 cd ${.CURDIR}; make -f Makefile.inc1 hierarchy
554 @echo "--------------------------------------------------------------"
555 @echo ">>> Installing everything.."
556 @echo "--------------------------------------------------------------"
557 cd ${.CURDIR}; make -f Makefile.inc1 install
560 # buildkernel, nativekernel, quickkernel, realquickkernel, and installkernel
562 # Which kernels to build and/or install is specified by setting
563 # KERNCONF. If not defined an X86_64_GENERIC kernel is built/installed.
564 # Only the existing (depending TARGET) config files are used
565 # for building kernels and only the first of these is designated
566 # as the one being installed.
568 # You can specify INSTALLSTRIPPED=1 if you wish the installed
569 # kernel and modules to be stripped of its debug info (required
570 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
571 # if you only want to strip the modules of their debug info. These
572 # only apply if you have DEBUG=-g in your kernel config or make line.
574 # Note that we have to use TARGET instead of TARGET_ARCH when
575 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
576 # be set to cross-build, we have to make sure TARGET is set
579 .if !defined(KERNCONF) && defined(KERNEL)
583 # XXX makeshift fix to build the right kernel for the (target) architecture
584 # We should configure this in the platform files somehow
585 .if ${TARGET_ARCH} == "x86_64"
586 KERNCONF?= X86_64_GENERIC
589 INSTKERNNAME?= kernel
591 KRNLSRCDIR= ${.CURDIR}/sys
592 KRNLCONFDIR= ${KRNLSRCDIR}/config
593 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
594 KERNCONFDIR?= ${KRNLCONFDIR}
598 .for _kernel in ${KERNCONF}
599 .if exists(${KERNCONFDIR}/${_kernel})
600 BUILDKERNELS+= ${_kernel}
601 .if empty(INSTALLKERNEL)
602 INSTALLKERNEL= ${_kernel}
607 # kernel version numbers survive rm -rf
609 .for _kernel in ${BUILDKERNELS}
610 .if exists(${KRNLOBJDIR}/${_kernel}/version)
611 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
618 # Builds all kernels defined by BUILDKERNELS.
621 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
622 echo "You must buildworld before buildkernel. If you wish"; \
623 echo "to build a kernel using native tools, config it manually"; \
624 echo "or use the nativekernel target if you are in a rush"; \
629 .for _kernel in ${BUILDKERNELS}
630 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
631 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
632 echo "The kernel was build using buildworld tools which no" ; \
633 echo "longer appear to exist, (real)quickkernel failed!" ; \
640 .if empty(BUILDKERNELS)
641 @echo ">>> ERROR: Missing kernel configuration file(s)."
642 @echo ">>> ${KERNCONF} not found in ${KERNCONFDIR}."
647 .if defined(KERNWARN)
648 @echo "--------------------------------------------------------------"
649 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
650 @echo "--------------------------------------------------------------"
655 # The buildkernel target rebuilds the specified kernels from scratch
656 # using the crossbuild tools generated by the last buildworld. It is
657 # the safest (but also the most time consuming) way to build a new kernel.
659 buildkernel: bk_tools bk_build_list bk_kernwarn
660 .for _kernel in ${BUILDKERNELS}
661 @echo "--------------------------------------------------------------"
662 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
663 @echo "--------------------------------------------------------------"
664 @echo "===> ${_kernel}"
665 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
666 rm -rf ${KRNLOBJDIR}/${_kernel}
668 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
669 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
670 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
672 mkdir -p ${KRNLOBJDIR}
673 .if !defined(NO_KERNELCONFIG)
675 PATH=${STRICTTMPPATH} \
676 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
677 ${KERNCONFDIR}/${_kernel}
679 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
680 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
682 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
683 .if !defined(NO_KERNELDEPEND)
684 cd ${KRNLOBJDIR}/${_kernel}; \
685 ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
687 cd ${KRNLOBJDIR}/${_kernel}; \
688 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
689 @echo "--------------------------------------------------------------"
690 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
691 @echo "--------------------------------------------------------------"
694 # The nativekernel target rebuilds the specified kernels from scratch
695 # using the system's standard compiler rather than using the crossbuild
696 # tools generated by the last buildworld. This is fairly safe if your
697 # system is reasonable up-to-date.
699 nativekernel: bk_build_list bk_kernwarn
700 .for _kernel in ${BUILDKERNELS}
701 @echo "--------------------------------------------------------------"
702 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
703 @echo "--------------------------------------------------------------"
704 @echo "===> ${_kernel}"
705 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
706 rm -rf ${KRNLOBJDIR}/${_kernel}
708 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
709 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
710 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
712 mkdir -p ${KRNLOBJDIR}
713 .if !defined(NO_KERNELCONFIG)
715 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
716 ${KERNCONFDIR}/${_kernel}
718 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
719 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
721 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
722 .if !defined(NO_KERNELDEPEND)
723 cd ${KRNLOBJDIR}/${_kernel}; \
724 make KERNEL=${INSTKERNNAME} depend
726 cd ${KRNLOBJDIR}/${_kernel}; \
727 make KERNEL=${INSTKERNNAME} all
728 @echo "--------------------------------------------------------------"
729 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
730 @echo "--------------------------------------------------------------"
733 # The (real)quickkernel target rebuilds the specified kernels as quickly
734 # as possible. It will use the native tools or the buildworld cross tools
735 # based on whether the kernel was originally generated via buildkernel or
736 # nativekernel. Config is rerun but the object hierarchy is not rebuilt.
737 # realquickkernel skips the depend step (analogous to realquickworld).
739 quickkernel realquickkernel: maybe_bk_tools bk_build_list bk_kernwarn
740 .for _kernel in ${BUILDKERNELS}
741 @echo "--------------------------------------------------------------"
742 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
743 @echo "--------------------------------------------------------------"
744 @echo "===> ${_kernel}"
745 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
746 .if !defined(NO_KERNELCONFIG)
748 PATH=${STRICTTMPPATH} \
749 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
750 ${KERNCONFDIR}/${_kernel}
752 .if !defined(NO_KERNELDEPEND) && !make(realquickkernel)
753 cd ${KRNLOBJDIR}/${_kernel}; \
754 ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
756 cd ${KRNLOBJDIR}/${_kernel}; \
757 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
759 .if !defined(NO_KERNELCONFIG)
761 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
762 ${KERNCONFDIR}/${_kernel}
764 .if !defined(NO_KERNELDEPEND) && !make(realquickkernel)
765 cd ${KRNLOBJDIR}/${_kernel}; \
766 make KERNEL=${INSTKERNNAME} depend
768 cd ${KRNLOBJDIR}/${_kernel}; \
769 make KERNEL=${INSTKERNNAME} all
771 @echo "--------------------------------------------------------------"
772 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
773 @echo "--------------------------------------------------------------"
779 # Install the kernel defined by INSTALLKERNEL
781 installkernel reinstallkernel:
782 @echo "--------------------------------------------------------------"
783 @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
784 @echo "--------------------------------------------------------------"
785 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
786 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
787 ${IMAKEENV} make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
789 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
790 make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
792 @echo "--------------------------------------------------------------"
793 @echo ">>> Kernel install for ${INSTALLKERNEL} completed on `LC_ALL=C date`"
794 @echo "--------------------------------------------------------------"
797 # ------------------------------------------------------------------------
799 # From here onwards are utility targets used by the 'make world' and
800 # related targets. If your 'world' breaks, you may like to try to fix
801 # the problem and manually run the following targets to attempt to
802 # complete the build. Beware, this is *not* guaranteed to work, you
803 # need to have a pretty good grip on the current state of the system
804 # to attempt to manually finish it. If in doubt, 'make world' again.
807 # bootstrap-tools: Build all tools required to build all tools. Note that
808 # order is important in a number of cases and also note that the bootstrap
809 # and build tools stages have access to earlier binaries they themselves
812 # patch: older patch's do not have -i. This program must be built
813 # first so other bootstrap tools that need to apply patches
815 # [x]install: dependancies on various new install features
816 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
817 # envs are not compatible with older objformat binaries.
820 # BSTRAPDIRS1 - must be built in strict order, no parallelism
822 # order is very important. yacc before m4 before flex. flex exec's m4,
823 # m4's parser file needs the latest byacc (insanity!).
827 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo \
828 bin/test bin/cat bin/ln bin/mv bin/expr bin/sh \
829 bin/hostname bin/kill \
830 usr.bin/yacc usr.bin/m4 usr.bin/localedef \
831 usr.bin/uudecode usr.bin/xinstall \
832 usr.bin/rpcgen usr.bin/bmake usr.bin/awk usr.bin/stat \
833 usr.bin/find usr.bin/flex
835 # BSTRAPDIRS2 - may built in parallel
838 usr.bin/sed usr.bin/uname usr.bin/touch \
839 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
840 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
841 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
842 usr.bin/uuencode usr.bin/cap_mkdb usr.bin/true usr.bin/false \
843 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
844 usr.bin/tail usr.bin/unifdef \
845 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
846 usr.sbin/zic usr.sbin/makewhatis \
847 gnu/usr.bin/grep usr.bin/sort usr.bin/gzip \
848 usr.bin/mkcsmapper usr.bin/mkesdb
850 bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
851 touch ${BTOOLSDEST}/.bootstrap_done
853 bootstrap-tools-before:
854 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
856 bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
858 bootstrap-tools-targets2: ${BSTRAPDIRS2:S/^/bstrap-/}
860 .ORDER: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
862 .ORDER: ${BSTRAPDIRS1:S/^/bstrap-/}
864 .for _tool in ${BSTRAPDIRS1} ${BSTRAPDIRS2}
866 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
867 cd ${.CURDIR}/${_tool}; \
868 make DIRPRFX=${_tool}/ obj && \
869 make DIRPRFX=${_tool}/ depend && \
870 make DIRPRFX=${_tool}/ all && \
871 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
874 # build-tools: Build special purpose build tools.
876 # XXX we may be able to remove or consolidate this into bootstrap-tools
877 # now that we have the native helper (.nx/.no) infrastructure.
879 # XXX we should separate this into new Makefile.inc2.
880 # Just to prepare for reduction of ORDER: that slows down parallel crossworld.
882 # Make sure Makefile.inc1 logic is intact.
883 .if !defined(WORLD_ALTCOMPILER)
884 .warning undefined WORLD_ALTCOMPILER
887 # gcc80 is now the default compiler. See sys.mk for WORLD_ALTCOMPILER default
888 # and this file for WORLD_CCVER.
890 _gcc47_cross= gnu/usr.bin/cc47
891 _gcc47_tools= gnu/usr.bin/cc47/cc_prep gnu/usr.bin/cc47/cc_tools
893 _gcc50_cross= gnu/usr.bin/cc50
894 _gcc50_tools= gnu/usr.bin/cc50/cc_prep gnu/usr.bin/cc50/cc_tools
896 _gcc80_cross= gnu/usr.bin/cc80
897 _gcc80_tools= gnu/usr.bin/cc80/cc_prep gnu/usr.bin/cc80/cc_tools
899 _gcc_common_cross= lib/libz gnu/usr.bin/gmp gnu/usr.bin/mpfr gnu/usr.bin/mpc
901 .if !defined(NO_ALTCOMPILER)
902 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
903 _altcompiler_cross+= ${_gcc47_cross}
907 .if !defined(NO_ALTCOMPILER)
908 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc50})
909 _altcompiler_cross+= ${_gcc50_cross}
913 #.if !defined(NO_ALTCOMPILER)
914 #. if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc80})
915 #_altcompiler_cross+= ${_gcc80_cross}
916 _basecompiler_cross+= ${_gcc80_cross}
920 _custom_cross= libexec/customcc
921 _binutils= gnu/usr.bin/${WORLD_BINUTILSVER}
923 build-tools: build-tools-targets
924 touch ${BTOOLSDEST}/.build_done
926 build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
929 # cross-tools: Build cross-building tools
932 CTOOLSDIRS= usr.bin/objformat
934 CTOOLSDIRS+= ${_binutils} \
935 ${_gcc_common_cross} \
936 ${_altcompiler_cross} \
937 ${_basecompiler_cross} ${_custom_cross}
939 cross-tools: cross-tools-targets
940 touch ${CTOOLSDEST}/.cross_done
942 cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
944 .for _tool in ${CTOOLSDIRS}
946 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
947 cd ${.CURDIR}/${_tool}; \
948 make DIRPRFX=${_tool}/ obj && \
949 make DIRPRFX=${_tool}/ depend && \
950 make DIRPRFX=${_tool}/ all && \
951 make DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
955 # hierarchy - ensure that all the needed directories are present
958 cd ${.CURDIR}/etc; make distrib-dirs
961 # libraries - build all libraries, and install them under ${DESTDIR}.
963 # The list of libraries with dependents (${_prebuild_libs}) and their
964 # interdependencies (__L) are built automatically by the
965 # ${.CURDIR}/tools/make_libdeps.sh script.
967 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
968 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
970 # NOTE: Allow duplicate build for WORLD_ALTCOMPILER=all for WORLD_CCVER,
971 # It will already be built so it won't cost any extra time. Please
972 # list all compilers in the ALTCOMPILER sequence, including the base
977 HOST_CCVER=${HOST_CCVER} CCVER=${WORLD_CCVER} \
978 make -f Makefile.inc1 ${_startup_libs_base} -DSYSBUILD -DLIBGCC_ONLY;
979 .if !defined(NO_ALTCOMPILER)
980 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
982 HOST_CCVER=${HOST_CCVER} CCVER=gcc47 \
983 make -f Makefile.inc1 _startup_libs47 -DSYSBUILD -DLIBGCC_ONLY;
985 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc50})
987 HOST_CCVER=${HOST_CCVER} CCVER=gcc50 \
988 make -f Makefile.inc1 _startup_libs50 -DSYSBUILD -DLIBGCC_ONLY;
990 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc80})
992 HOST_CCVER=${HOST_CCVER} CCVER=gcc80 \
993 make -f Makefile.inc1 _startup_libs80 -DSYSBUILD -DLIBGCC_ONLY;
997 make -f Makefile.inc1 _startup_libs -DSYSBUILD && \
998 make -f Makefile.inc1 _prebuild_libs -DSYSBUILD && \
999 make -f Makefile.inc1 _generic_libs -DSYSBUILD && \
1000 touch ${WORLDDEST}/.libraries_done
1002 # These dependencies are not automatically generated:
1004 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
1005 # shared libraries for ELF. The target for _startup_libsXX is
1006 # specifically built using gccXX.
1008 _startup_libs47= gnu/usr.bin/cc47/cc_prep \
1009 gnu/usr.bin/cc47/cc_tools \
1011 gnu/lib/gcc47/libgcc \
1012 gnu/lib/gcc47/libgcc_eh \
1013 gnu/lib/gcc47/libgcc_pic
1015 _startup_libs50= gnu/usr.bin/cc50/cc_prep \
1016 gnu/usr.bin/cc50/cc_tools \
1018 gnu/lib/gcc50/libgcc \
1019 gnu/lib/gcc50/libgcc_eh \
1020 gnu/lib/gcc50/libgcc_pic
1022 _startup_libs80= gnu/usr.bin/cc80/cc_prep \
1023 gnu/usr.bin/cc80/cc_tools \
1025 gnu/lib/gcc80/libgcc \
1026 gnu/lib/gcc80/libgcc_eh \
1027 gnu/lib/gcc80/libgcc_pic
1029 # gcc80 is now the default compiler. See sys.mk for WORLD_ALTCOMPILER default.
1031 .if !defined(NO_ALTCOMPILER)
1032 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc47})
1033 _startup_libs_alt+= _startup_libs47
1037 .if !defined(NO_ALTCOMPILER)
1038 . if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc50})
1039 _startup_libs_alt+= _startup_libs50
1043 #.if !defined(NO_ALTCOMPILER)
1044 #. if defined(WORLD_ALTCOMPILER) && (${WORLD_ALTCOMPILER} == "all" || ${WORLD_ALTCOMPILER:Mgcc80})
1045 #_startup_libs_alt+= _startup_libs80
1046 _startup_libs_base+= _startup_libs80
1050 _startup_libs= lib/csu lib/libc lib/libc_rtld
1051 lib/libc__L: lib/csu__L
1053 _prebuild_libs= lib/libbz2 lib/libz
1054 _prebuild_libs+= lib/libutil
1056 _prebuild_libs+= lib/libelf
1057 _prebuild_libs+= lib/libpcap
1059 _generic_libs= gnu/lib
1061 _prebuild_libs+= lib/libcrypt lib/libmd \
1062 lib/libncurses/libncurses
1064 lib/libopie__L lib/libtacplus__L: lib/libmd__L
1068 _prebuild_libs+= lib/librecrypto lib/libressl
1069 lib/libressl__L: lib/librecrypto__L
1071 _prebuild_libs+= lib/libssh
1072 lib/libssh__L: lib/librecrypto__L lib/libz__L
1074 _prebuild_libs+= lib/libradius lib/libopie
1075 lib/libradius__L: lib/librecrypto__L
1076 lib/libopie__L: lib/librecrypto__L
1078 _prebuild_libs+= lib/libsbuf lib/libtacplus lib/libm \
1079 lib/libpam/libpam lib/libypclnt lib/lib${THREAD_LIB} \
1080 lib/libpthread lib/liblzma lib/libprop lib/libdevattr
1081 lib/liblzma__L: lib/libpthread__L
1082 lib/libdevattr__L: lib/libprop__L
1084 _generic_libs+= usr.bin/flex/lib
1086 .for _alib in ${_startup_libs_alt} ${_startup_libs_base}
1087 __startup_alibs+= ${${_alib}}
1090 .for _lib in ${__startup_alibs} \
1091 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
1093 .if exists(${.CURDIR}/${_lib})
1094 @${ECHODIR} "===> ${_lib}"; \
1095 cd ${.CURDIR}/${_lib}; \
1096 echo "STEP DEP ${_lib}" && \
1097 make DIRPRFX=${_lib}/ depend && \
1098 echo "STEP ALL ${_lib}" && \
1099 make DIRPRFX=${_lib}/ all && \
1100 echo "STEP INSTALL ${_lib}" && \
1101 make DIRPRFX=${_lib}/ install && \
1102 echo "STEP DONE ${_lib}";
1104 .warning missing ${.CURDIR}/${_lib} directory.
1108 _startup_libs: ${_startup_libs:S/$/__L/}
1109 .for _alib in ${_startup_libs_alt} ${_startup_libs_base}
1110 ${_alib}: ${${_alib}:C/$/__L/}
1112 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1113 _generic_libs: ${_generic_libs:S/$/__L/}
1115 # library targets must be ordered because there are inter-library
1116 # races (e.g. generation of tconfig.h)
1118 .for _alib in ${_startup_libs_base} ${_startup_libs_alt}
1119 .ORDER: ${${_alib}:C/$/__L/}
1122 # uncomment if there are missing dependencies
1124 .ORDER: ${_prebuild_libs:S/$/__L/}
1125 # we can disable this one, no lib/* depend on libstdc++
1126 .ORDER: ${_generic_libs:S/$/__L/}
1129 .for __target in clean cleandepend cleandir obj depend includes
1130 .for entry in ${SUBDIR}
1131 ${entry}.${__target}__D: .PHONY
1132 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1133 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
1134 edir=${entry}.${MACHINE_ARCH}; \
1135 cd ${.CURDIR}/$${edir}; \
1137 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
1139 cd ${.CURDIR}/$${edir}; \
1141 make ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1143 par-${__target}: ${SUBDIR:C/$/.${__target}__D/}
1144 .ORDER: ${SUBDIR:C/$/.${__target}__D/}
1146 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1148 # The wmake target is used by /usr/bin/wmake to run make in a
1149 # world build environment.
1152 @echo '${WMAKEENV} make ${WMAKE_ARGS} -DSYSBUILD'
1155 @echo '${WMAKEENV} /bin/sh'
1158 @echo '${BMAKEENV} make ${BMAKE_ARGS} -DSYSBUILD'
1161 @echo '${BMAKEENV} /bin/sh'
1164 @echo '${TMAKEENV} make ${TMAKE_ARGS} -DSYSBUILD'
1167 @echo '${TMAKEENV} /bin/sh'
1170 @echo '${XMAKEENV} make ${XMAKE_ARGS} -DSYSBUILD'
1173 @echo '${XMAKEENV} /bin/sh'
1175 backupworld: backup-clean
1176 @mkdir -p ${WORLD_BACKUP}
1177 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1178 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1179 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1180 tar -czf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1181 --options gzip:compression-level=1 \
1182 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1186 .if !defined(NO_BACKUP)
1187 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1188 @mkdir -p ${AUTO_BACKUP}
1189 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1190 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1191 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1192 /usr/bin/tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1193 --options gzip:compression-level=1 \
1194 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1199 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1202 rm -f ${WORLD_BACKUP}/binaries.tar.gz
1205 .if !exists(${WORLD_BACKUP}/binaries.tar.gz)
1206 @echo "There does not seem to be a valid archive present."
1208 @echo "Restoring system binaries from manual backup archive..."
1209 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1210 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1211 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1212 tar -xzf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1216 .if !exists(${AUTO_BACKUP}/binaries.tar.gz)
1217 @echo "There does not seem to be a valid archive present."
1219 @echo "Restoring system binaries from auto-backup archive..."
1220 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1221 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1222 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1223 tar -xzf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1226 # Take advantage of bmake error response
1228 MAKE_PRINT_VAR_ON_ERROR= \
1245 .if ${.MAKE.LEVEL} > 0
1246 MAKE_PRINT_VAR_ON_ERROR+= .MAKE.MAKEFILES .PATH
1249 .include <bsd.subdir.mk>