Merge branch 'vendor/EXPAT'
[dragonfly.git] / Makefile.inc1
1 #
2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
3 #
4 # Build-time options are documented in make.conf(5).
5 #
6 # The intended user-driven targets are:
7 #
8 # buildworld  - rebuild *everything*, including glue to help do upgrades
9 # quickworld  - skip the glue and do a depend+build on the meat
10 # realquickworld - skip the glue and depend stages and just build the meat
11 # crossworld  - only build the glue (particularly the cross-build environment)
12 # installworld- install everything built by "buildworld"
13 # backupworld - copies /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/libexec
14 #               to manual backup dir
15 # restoreworld- installs binaries from manual backup dir to world
16 # restoreworld-auto - installs binaries from auto-backup dir to world
17 # most        - build user commands, no libraries or include files
18 # installmost - install user commands, no libraries or include files
19 # backup-clean - delete backup from manual backup dir
20 # backup-auto-clean - delete backup from auto-backup dir
21 #
22 # Standard targets (not defined here) are documented in the makefiles in
23 # /usr/share/mk.  These include:
24 #               obj depend all install clean cleandepend cleanobj
25
26 # Put initial settings here.
27 SUBDIR=
28
29 # We must do share/info early so that installation of info `dir'
30 # entries works correctly.  Do it first since it is less likely to
31 # grow dependencies on include and lib than vice versa.
32 .if exists(${.CURDIR}/share/info)
33 SUBDIR+= share/info
34 .endif
35
36 # We must do include and lib early so that the perl *.ph generation
37 # works correctly as it uses the header files installed by this.
38 .if exists(${.CURDIR}/include)
39 SUBDIR+= include
40 .endif
41 .if exists(${.CURDIR}/lib)
42 SUBDIR+= lib
43 .endif
44 # This exists simply to ensure that the obj dir hierarchy is
45 # intact for nrelease, allowing the nrelease Makefile's to 
46 # reference ${.OBJDIR}.
47 #
48 .if exists(${.CURDIR}/nrelease)
49 SUBDIR+= nrelease
50 .endif
51
52 .if exists(${.CURDIR}/bin)
53 SUBDIR+= bin
54 .endif
55 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
56 SUBDIR+= games
57 .endif
58 .if exists(${.CURDIR}/gnu)
59 SUBDIR+= gnu
60 .endif
61 .if exists(${.CURDIR}/libexec)
62 SUBDIR+= libexec
63 .endif
64 .if exists(${.CURDIR}/sbin)
65 SUBDIR+= sbin
66 .endif
67 .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
68 SUBDIR+= secure
69 .endif
70 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
71 SUBDIR+= share
72 .endif
73 .if exists(${.CURDIR}/sys)
74 SUBDIR+= sys
75 .endif
76 .if exists(${.CURDIR}/usr.bin)
77 SUBDIR+= usr.bin
78 .endif
79 .if exists(${.CURDIR}/usr.sbin)
80 SUBDIR+= usr.sbin
81 .endif
82
83 .if exists(${.CURDIR}/etc)
84 SUBDIR+= etc
85 .endif
86
87 # These are last, since it is nice to at least get the base system
88 # rebuilt before you do them.
89 .if defined(LOCAL_DIRS)
90 .for _DIR in ${LOCAL_DIRS}
91 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
92 SUBDIR+= ${_DIR}
93 .endif
94 .endfor
95 .endif
96
97 .if defined(SUBDIR_OVERRIDE)
98 SUBDIR=         ${SUBDIR_OVERRIDE}
99 .endif
100
101 .if defined(NOCLEANDIR)
102 CLEANDIR=       clean cleandepend
103 .else
104 CLEANDIR=       cleandir
105 .endif
106
107 .if defined(NO_CLEAN)
108 NOCLEAN=        # defined
109 .endif
110
111 # Object directory base in primary make.  Note that when we rerun make
112 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
113 # subdirectory because the rest of the build system needs it that way.
114 # The original object directory base is saved in OBJTREE.
115 #
116 MAKEOBJDIRPREFIX?=      /usr/obj
117 OBJTREE?=               ${MAKEOBJDIRPREFIX}
118
119 # Used for stage installs and pathing
120 #
121 DESTDIRBASE?=           ${OBJTREE}${.CURDIR}
122
123 # Remove DESTDIR from MAKEFLAGS.  It is present in the environment
124 # anyhow, and we need to be able to override it for stage installs
125 .MAKEFLAGS:=    ${.MAKEFLAGS:NDESTDIR=*}
126
127 # This section sets the tools used to build the world/kernel
128 WORLD_CCVER?=           gcc47
129 WORLD_LDVER?=           ld.bfd
130 WORLD_BINUTILSVER?=     binutils222
131
132 # Set the backup parameters if they are not already defined
133 #
134 WORLD_BACKUP?=          /var/backups/world_backup
135 AUTO_BACKUP?=           ${OBJTREE}/world_backup/${DESTDIR}
136
137 # temporary until everybody has converted to x86_64
138 .if ${MACHINE_ARCH} == "amd64"
139 MACHINE_ARCH=   x86_64
140 .if defined(.PARSEDIR)
141 .export MACHINE_ARCH
142 .else
143 # LEGACY MAKE - REMOVE FOR DFLY 3.6
144 .makeenv MACHINE_ARCH
145 .endif
146 .endif
147
148 TARGET_ARCH?=   ${MACHINE_ARCH}
149 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
150 TARGET?=        ${MACHINE}
151 .else
152 TARGET?=        ${TARGET_ARCH}
153 .endif
154 .if make(buildworld)
155 BUILD_ARCH!=    sysctl -n hw.machine_arch
156
157 # temporary until everybody has converted to x86_64
158 .if ${BUILD_ARCH} == "amd64"
159 BUILD_ARCH=     x86_64
160 .endif
161
162 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
163 .error To cross-build, set TARGET_ARCH.
164 .endif
165 .endif
166
167 # Backwards compatibility with older make's or older sys.mk's.  make
168 # is expected to define MACHINE_PLATFORM.
169 #
170 .if !defined(MACHINE_PLATFORM)
171 MACHINE_PLATFORM= pc32
172 .endif
173
174 # XXX this is ugly and we need to come up with a nicer solution
175 .if !defined(TARGET_PLATFORM)
176 .if ${TARGET_ARCH} == "i386"
177 TARGET_PLATFORM= pc32
178 .elif ${TARGET_ARCH} == "x86_64"
179 TARGET_PLATFORM= pc64
180 .else
181 .error Unknown target architecture.
182 .endif
183 .endif
184
185 THREAD_LIB?=    thread_xu
186 .if ${THREAD_LIB} == "c_r"
187 .if defined(NO_LIBC_R)
188 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
189 .endif
190 .endif
191
192 # BTOOLS        (Natively built) All non-cross-development tools that the
193 #               main build needs.  This includes things like 'mkdir' and 'rm'.
194 #               We will not use the native system's exec path once we start
195 #               on WORLD.  (bootstrap-tools and build-tools or BTOOLS)
196 #
197 # CTOOLS        (Natively built) Cross development tools which are specific
198 #               to the target architecture.
199 #
200 # WORLD         (Cross built) Our ultimate buildworld, using only BTOOLS and
201 #               CTOOLS.
202 #
203 # MACHINE_PLATFORM Platform Architecture we are building on
204 # MACHINE       Machine Architecture (usually the same as MACHINE_ARCH)
205 # MACHINE_ARCH  Cpu Architecture we are building on
206 #
207 # TARGET_PLATFORM Platform Architecture we are building for
208 # TARGET        Machine Architecture we are building for
209 # TARGET_ARCH   Cpu Architecture we are building for
210 #
211 BTOOLSDEST=     ${DESTDIRBASE}/btools_${MACHINE_ARCH}
212 CTOOLSDEST=     ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
213 WORLDDEST=      ${DESTDIRBASE}/world_${TARGET_ARCH}
214
215 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
216 # cross-tools stages to augment the existing command path to access newer
217 # versions of certain utilities such as 'patch' that the cross-tools stage
218 # might expect.
219 #
220 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
221
222 # The strict temporary command path contains all binaries required
223 # by the buildworld system after the cross-tools stage.
224 #
225 STRICTTMPPATH=  ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games:/usr/pkg/bin
226
227 TMPDIR?=        /tmp
228 TMPPID!=        echo $$$$
229
230 #
231 # Building a world goes through the following stages
232 #
233 # 1. bootstrap-tool stage [BMAKE]
234 #       This stage is responsible for creating programs that
235 #       are needed for backward compatibility reasons. They
236 #       are not built as cross-tools.
237 # 2. build-tool stage [TMAKE]
238 #       This stage is responsible for creating the object
239 #       tree and building any tools that are needed during
240 #       the build process.
241 # 3. cross-tool stage [XMAKE]
242 #       This stage is responsible for creating any tools that
243 #       are needed for cross-builds. A cross-compiler is one
244 #       of them.
245 # 4. world stage [WMAKE]
246 #       This stage actually builds the world.
247 # 5. install stage (optional) [IMAKE]
248 #       This stage installs a previously built world.
249 #
250 # In all cases we must carefully adjust the environment so the proper
251 # tools and header files are used.
252 #
253 # NOTE: The M4 environment variable is used by the [f]lex binary to
254 #       override the location of the 'm4' binary.  The override is
255 #       needed for certain buildworld version transitions, specifically
256 #       past a certain point in 3.3 because the older /usr/bin/m4 will
257 #       generate output that will blow up the newer [f]lex/yacc/bison
258 #       utilities.
259 #
260
261 # bootstrap-tool stage
262 #
263 BMAKEENV=       MAKEOBJDIRPREFIX=${BTOOLSDEST} \
264                 OBJTREE=${OBJTREE} \
265                 DESTDIR=${BTOOLSDEST} \
266                 PATH=${BTOOLSPATH}:${PATH} \
267                 M4=${BTOOLSDEST}/usr/bin/m4 \
268                 INSTALL="sh ${.CURDIR}/tools/install.sh"
269
270 BMAKE=          ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
271                 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
272                 -DNO_WERROR -DNO_NLS
273
274 # build-tool stage
275 #
276 TMAKEENV=       MAKEOBJDIRPREFIX=${BTOOLSDEST} \
277                 OBJTREE=${OBJTREE} \
278                 DESTDIR= \
279                 PATH=${BTOOLSPATH}:${PATH} \
280                 M4=${BTOOLSDEST}/usr/bin/m4 \
281                 INSTALL="sh ${.CURDIR}/tools/install.sh"
282
283 TMAKE=          ${TMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
284                 -DNO_FORTRAN -DNOSHARED
285
286 # cross-tool stage
287 #
288 # note: TOOLS_PREFIX points to the obj root holding the cross
289 #       compiler binaries, while USRDATA_PREFIX points to the obj root 
290 #       holding the target environment (and also determines where cross-built
291 #       libraries, crt*.o, and include files are installed).
292 #
293 XMAKEENV=       MAKEOBJDIRPREFIX=${CTOOLSDEST} \
294                 OBJTREE=${OBJTREE} \
295                 DESTDIR=${CTOOLSDEST} \
296                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
297                 TOOLS_PREFIX=${CTOOLSDEST} \
298                 USRDATA_PREFIX=${WORLDDEST} \
299                 M4=${BTOOLSDEST}/usr/bin/m4 \
300                 PATH=${BTOOLSPATH}:${PATH}
301
302 XMAKE=          ${XMAKEENV} make -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \
303                 -DBOOTSTRAPPING -DNOSHARED
304
305 # world stage, note the strict path and note that TOOLS_PREFIX is left
306 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
307 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
308 # for both binary and library paths, even though it is being compiled to
309 # WORLDDEST.  None of the programs in the world stage are ever actually
310 # executed during the buildworld/installworld.
311 #
312 CROSSENV=       MAKEOBJDIRPREFIX=${WORLDDEST} \
313                 OBJTREE=${OBJTREE} \
314                 MACHINE_ARCH=${TARGET_ARCH} \
315                 MACHINE=${TARGET} \
316                 MACHINE_PLATFORM=${TARGET_PLATFORM} \
317                 OBJFORMAT_PATH=${CTOOLSDEST} \
318                 HOST_CCVER=${HOST_CCVER} \
319                 CCVER=${WORLD_CCVER} \
320                 LDVER=${WORLD_LDVER} \
321                 BINUTILSVER=${WORLD_BINUTILSVER}
322
323 WMAKEENV=       ${CROSSENV} \
324                 DESTDIR=${WORLDDEST} \
325                 INSTALL="sh ${.CURDIR}/tools/install.sh" \
326                 M4=${BTOOLSDEST}/usr/bin/m4 \
327                 PATH=${STRICTTMPPATH}
328
329 WMAKE=          ${WMAKEENV} make -f Makefile.inc1
330
331 # install stage
332 #
333 IMAKEENV=       ${CROSSENV} \
334                 PATH=${STRICTTMPPATH}
335 IMAKE=          ${IMAKEENV} make -f Makefile.inc1
336
337 # kernel stage
338 #
339 KMAKEENV=       ${WMAKEENV}
340
341 # buildworld
342 #
343 # Attempt to rebuild the entire system, with reasonable chance of
344 # success, regardless of how old your existing system is.
345 #
346 _worldtmp: _cleantmp _mtreetmp
347 .ORDER: _cleantmp _mtreetmp
348
349 _cleantmp:
350         @echo
351         @echo "--------------------------------------------------------------"
352         @echo ">>> Rebuilding the temporary build tree"
353         @echo "--------------------------------------------------------------"
354 .if !defined(NOCLEAN)
355         rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
356 .else
357         # XXX - These two can depend on any header file.
358         rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
359         rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
360 .endif
361
362 _mtreetmp:
363         mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
364 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
365         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist        \
366                 -p ${_dir}/  > /dev/null
367         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist         \
368                 -p ${_dir}/usr > /dev/null
369 .endfor
370         mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist     \
371                 -p ${WORLDDEST}/usr/include > /dev/null
372         ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
373
374 _bootstrap-tools:
375         @echo
376         @echo "--------------------------------------------------------------"
377         @echo ">>> stage 1: bootstrap tools"
378         @echo "--------------------------------------------------------------"
379         cd ${.CURDIR}; ${BMAKE} bootstrap-tools
380 _cleanobj:
381         @echo
382         @echo "--------------------------------------------------------------"
383         @echo ">>> stage 2a: cleaning up the object tree"
384         @echo "--------------------------------------------------------------"
385         cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
386 _obj:
387         @echo
388         @echo "--------------------------------------------------------------"
389         @echo ">>> stage 2b: rebuilding the object tree"
390         @echo "--------------------------------------------------------------"
391         cd ${.CURDIR}; ${WMAKE} par-obj
392 _build-tools:
393         @echo
394         @echo "--------------------------------------------------------------"
395         @echo ">>> stage 2c: build tools"
396         @echo "--------------------------------------------------------------"
397         cd ${.CURDIR}; ${TMAKE} build-tools
398 _cross-tools:
399         @echo
400         @echo "--------------------------------------------------------------"
401         @echo ">>> stage 3: cross tools"
402         @echo "--------------------------------------------------------------"
403         cd ${.CURDIR}; ${XMAKE} cross-tools
404 _includes:
405         @echo
406         @echo "--------------------------------------------------------------"
407         @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
408         @echo "--------------------------------------------------------------"
409         cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
410 _libraries:
411         @echo
412         @echo "--------------------------------------------------------------"
413         @echo ">>> stage 4b: building libraries"
414         @echo "--------------------------------------------------------------"
415         cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
416 _depend:
417         @echo
418         @echo "--------------------------------------------------------------"
419         @echo ">>> stage 4c: make dependencies"
420         @echo "--------------------------------------------------------------"
421         cd ${.CURDIR}; ${WMAKE} par-depend
422 everything:
423         @echo
424         @echo "--------------------------------------------------------------"
425         @echo ">>> stage 4d: building everything.."
426         @echo "--------------------------------------------------------------"
427         cd ${.CURDIR}; ${WMAKE} all
428
429 # note: buildworld no longer depends on _cleanobj because we rm -rf the
430 # entire object tree and built the bootstrap tools in a different location.
431 #
432 # buildworld    - build everything from scratch
433 # quickworld    - skip the bootstrap, build, and cross-build steps
434 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
435 #
436 # note: we include _obj in realquickworld to prevent accidental creation
437 # of files in /usr/src.
438
439 WMAKE_TGTS=
440 .if !defined(SUBDIR_OVERRIDE)
441 WMAKE_TGTS+=    _worldtmp _bootstrap-tools
442 .endif
443 WMAKE_TGTS+=    _obj _build-tools
444 .if !defined(SUBDIR_OVERRIDE)
445 WMAKE_TGTS+=    _cross-tools
446 .endif
447 WMAKE_TGTS+=    _includes _libraries _depend everything
448
449 buildworld: ${WMAKE_TGTS}
450
451 quickworld: _mtreetmp _obj _includes _libraries _depend everything
452
453 realquickworld: _mtreetmp _obj _includes _libraries everything
454
455 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
456
457 .ORDER: ${WMAKE_TGTS}
458 .ORDER: _obj _includes
459 .ORDER: _mtreetmp _obj
460 .ORDER: installcheck backupworld-auto
461
462 #
463 # installcheck
464 #
465 # Checks to be sure system is ready for installworld
466 #
467 installcheck:
468 .if !defined(NO_SENDMAIL)
469         @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
470         @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
471 .endif
472         @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
473         @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
474         @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
475 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
476         @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
477 .endif
478 #
479 # installworld
480 #
481 # Installs everything compiled by a 'buildworld'.
482 #
483 installworld: installcheck backupworld-auto
484         cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
485         ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/
486
487 #
488 # reinstall
489 #
490 # If you have a build server, you can NFS mount the source and obj directories
491 # and do a 'make reinstall' on the *client* to install new binaries from the
492 # most recent server build.
493 #
494 reinstall:
495         @echo "--------------------------------------------------------------"
496         @echo ">>> Making hierarchy"
497         @echo "--------------------------------------------------------------"
498         cd ${.CURDIR}; make -f Makefile.inc1 hierarchy
499         @echo
500         @echo "--------------------------------------------------------------"
501         @echo ">>> Installing everything.."
502         @echo "--------------------------------------------------------------"
503         cd ${.CURDIR}; make -f Makefile.inc1 install
504
505 #
506 # buildkernel, nativekernel, quickkernel, and installkernel
507 #
508 # Which kernels to build and/or install is specified by setting
509 # KERNCONF. If not defined a GENERIC kernel is built/installed.
510 # Only the existing (depending TARGET) config files are used
511 # for building kernels and only the first of these is designated
512 # as the one being installed.
513 #
514 # You can specify INSTALLSTRIPPED=1 if you wish the installed 
515 # kernel and modules to be stripped of its debug info (required
516 # symbols are left intact).  You can specify INSTALLSTRIPPEDMODULES
517 # if you only want to strip the modules of their debug info.  These
518 # only apply if you have DEBUG=-g in your kernel config or make line.
519 #
520 # Note that we have to use TARGET instead of TARGET_ARCH when
521 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
522 # be set to cross-build, we have to make sure TARGET is set
523 # properly.
524
525 .if !defined(KERNCONF) && defined(KERNEL)
526 KERNCONF=       ${KERNEL}
527 KERNWARN=       yes
528 .else
529 # XXX makeshift fix to build the right kernel for the (target) architecture
530 # We should configure this in the platform files somehow
531 .if ${TARGET_ARCH} == "i386"
532 KERNCONF?=      GENERIC
533 .else
534 KERNCONF?=      X86_64_GENERIC
535 .endif
536 .endif
537 INSTKERNNAME?=  kernel
538
539 KRNLSRCDIR=     ${.CURDIR}/sys
540 KRNLCONFDIR=    ${KRNLSRCDIR}/config
541 KRNLOBJDIR=     ${OBJTREE}${KRNLSRCDIR}
542 KERNCONFDIR?=   ${KRNLCONFDIR}
543
544 BUILDKERNELS=
545 INSTALLKERNEL=
546 .for _kernel in ${KERNCONF}
547 .if exists(${KERNCONFDIR}/${_kernel})
548 BUILDKERNELS+=  ${_kernel}
549 .if empty(INSTALLKERNEL)
550 INSTALLKERNEL= ${_kernel}
551 .endif
552 .endif
553 .endfor
554
555 # kernel version numbers survive rm -rf
556 #
557 .for _kernel in ${BUILDKERNELS}
558 .if exists(${KRNLOBJDIR}/${_kernel}/version)
559 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
560 .endif
561 .endfor
562
563 #
564 # buildkernel
565 #
566 # Builds all kernels defined by BUILDKERNELS.
567 #
568 bk_tools:
569         @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
570             echo "You must buildworld before buildkernel.  If you wish"; \
571             echo "to build a kernel using native tools, config it manually"; \
572             echo "or use the nativekernel target if you are in a rush"; \
573             /usr/bin/false; \
574         fi
575
576 maybe_bk_tools:
577 .for _kernel in ${BUILDKERNELS}
578         @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
579             if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
580                 echo "The kernel was build using buildworld tools which no" ; \
581                 echo "longer appear to exist, quickkernel failed!" ; \
582                 /usr/bin/false; \
583             fi; \
584         fi
585 .endfor
586
587 bk_build_list:
588 .if empty(BUILDKERNELS)
589         @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
590         @echo ">>> Did you move your kernel configs from i386/conf to config/?"
591         @false
592 .endif
593
594 bk_kernwarn:
595 .if defined(KERNWARN)
596         @echo "--------------------------------------------------------------"
597         @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
598         @echo "--------------------------------------------------------------"
599         @sleep 3
600 .endif
601         @echo
602
603 # The buildkernel target rebuilds the specified kernels from scratch
604 # using the crossbuild tools generated by the last buildworld.  It is
605 # the safest (but also the most time consuming) way to build a new kernel.
606 #
607 buildkernel:    bk_tools bk_build_list bk_kernwarn
608 .for _kernel in ${BUILDKERNELS}
609         @echo "--------------------------------------------------------------"
610         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
611         @echo "--------------------------------------------------------------"
612         @echo "===> ${_kernel}"
613 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
614         rm -rf ${KRNLOBJDIR}/${_kernel}
615 .else
616         @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
617                 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
618                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
619 .endif
620         mkdir -p ${KRNLOBJDIR}
621 .if !defined(NO_KERNELCONFIG)
622         cd ${KRNLCONFDIR}; \
623                 PATH=${STRICTTMPPATH} \
624                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
625                         ${KERNCONFDIR}/${_kernel}
626 .endif
627 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
628         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
629 .endif
630         touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
631 .if !defined(NO_KERNELDEPEND)
632         cd ${KRNLOBJDIR}/${_kernel}; \
633             ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
634 .endif
635         cd ${KRNLOBJDIR}/${_kernel}; \
636             ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
637         @echo "--------------------------------------------------------------"
638         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
639         @echo "--------------------------------------------------------------"
640 .endfor
641
642 # The nativekernel target rebuilds the specified kernels from scratch
643 # using the system's standard compiler rather than using the crossbuild
644 # tools generated by the last buildworld.  This is fairly safe if your
645 # system is reasonable up-to-date.
646 #
647 nativekernel:   bk_build_list bk_kernwarn
648 .for _kernel in ${BUILDKERNELS}
649         @echo "--------------------------------------------------------------"
650         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
651         @echo "--------------------------------------------------------------"
652         @echo "===> ${_kernel}"
653 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
654         rm -rf ${KRNLOBJDIR}/${_kernel}
655 .else
656         @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
657                 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
658                 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
659 .endif
660         mkdir -p ${KRNLOBJDIR}
661 .if !defined(NO_KERNELCONFIG)
662         cd ${KRNLCONFDIR}; \
663                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
664                         ${KERNCONFDIR}/${_kernel}
665 .endif
666 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
667         echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
668 .endif
669         touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
670         cd ${KRNLOBJDIR}/${_kernel}; \
671             MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
672             make -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
673 .if !defined(NO_KERNELDEPEND)
674         cd ${KRNLOBJDIR}/${_kernel}; \
675             make KERNEL=${INSTKERNNAME} depend
676 .endif
677         cd ${KRNLOBJDIR}/${_kernel}; \
678             make KERNEL=${INSTKERNNAME} all
679         @echo "--------------------------------------------------------------"
680         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
681         @echo "--------------------------------------------------------------"
682 .endfor
683
684 # The quickkernel target rebuilds the specified kernels as quickly
685 # as possible.  It will use the native tools or the buildworld cross tools
686 # based on whether the kernel was originally generated via buildkernel or
687 # nativekernel.  Config is rerun but the object hierarchy is not rebuilt,
688 # nor is the make depend step run.
689 #
690 quickkernel:    maybe_bk_tools bk_build_list bk_kernwarn
691 .for _kernel in ${BUILDKERNELS}
692         @echo "--------------------------------------------------------------"
693         @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
694         @echo "--------------------------------------------------------------"
695         @echo "===> ${_kernel}"
696 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
697 .if !defined(NO_KERNELCONFIG)
698         cd ${KRNLCONFDIR}; \
699                 PATH=${STRICTTMPPATH} \
700                     config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
701                         ${KERNCONFDIR}/${_kernel}
702 .endif
703         cd ${KRNLOBJDIR}/${_kernel}; \
704             ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
705 .else
706 .if !defined(NO_KERNELCONFIG)
707         cd ${KRNLCONFDIR}; \
708             config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
709                 ${KERNCONFDIR}/${_kernel}
710 .endif
711         cd ${KRNLOBJDIR}/${_kernel}; \
712             make KERNEL=${INSTKERNNAME} all
713 .endif
714         @echo "--------------------------------------------------------------"
715         @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
716         @echo "--------------------------------------------------------------"
717 .endfor
718
719
720 # installkernel
721 #
722 # Install the kernel defined by INSTALLKERNEL
723 #
724 installkernel reinstallkernel:
725         @echo "--------------------------------------------------------------"
726         @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
727         @echo "--------------------------------------------------------------"
728 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
729         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
730             ${IMAKEENV} make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
731 .else
732         cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
733             make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
734 .endif
735
736 #
737 # most
738 #
739 # Build most of the user binaries on the existing system libs and includes.
740 #
741 most:
742         @echo "--------------------------------------------------------------"
743         @echo ">>> Building programs only"
744         @echo "--------------------------------------------------------------"
745 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
746         cd ${.CURDIR}/${_dir};          make DIRPRFX=${_dir}/ all
747 .endfor
748
749 #
750 # installmost
751 #
752 # Install the binaries built by the 'most' target.  This does not include
753 # libraries or include files.
754 #
755 installmost:
756         @echo "--------------------------------------------------------------"
757         @echo ">>> Installing programs only"
758         @echo "--------------------------------------------------------------"
759 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
760         cd ${.CURDIR}/${_dir};          make DIRPRFX=${_dir}/ install
761 .endfor
762
763 #
764 # ------------------------------------------------------------------------
765 #
766 # From here onwards are utility targets used by the 'make world' and
767 # related targets.  If your 'world' breaks, you may like to try to fix
768 # the problem and manually run the following targets to attempt to
769 # complete the build.  Beware, this is *not* guaranteed to work, you
770 # need to have a pretty good grip on the current state of the system
771 # to attempt to manually finish it.  If in doubt, 'make world' again.
772 #
773
774 # bootstrap-tools: Build all tools required to build all tools.  Note that
775 # order is important in a number of cases and also note that the bootstrap
776 # and build tools stages have access to earlier binaries they themselves
777 # had generated.
778 #
779 # patch:        older patch's do not have -i.  This program must be built
780 #               first so other bootstrap tools that need to apply patches
781 #               can use it.
782 # [x]install:   dependancies on various new install features
783 # rpcgen:       old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
784 #               envs are not compatible with older objformat binaries.
785 #
786 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
787 _strfile=       games/fortune/strfile
788 .endif
789
790 # BSTRAPDIRS1 - must be built in strict order, no parallelism
791 #
792 # order is very important. yacc before m4 before flex.  flex exec's m4,
793 # m4's parser file needs the latest byacc (insanity!).
794 #
795 BSTRAPDIRS1= ${_strfile} \
796         usr.bin/patch \
797         bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo \
798         bin/test bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
799         bin/hostname bin/kill \
800         usr.bin/yacc usr.bin/m4 usr.bin/colldef \
801         usr.bin/uudecode usr.bin/xinstall \
802         usr.bin/rpcgen usr.bin/bmake usr.bin/awk usr.bin/stat \
803         usr.bin/find usr.bin/flex
804
805 # BSTRAPDIRS2 - may built in parallel
806 #
807 BSTRAPDIRS2= \
808         usr.bin/sed usr.bin/uname usr.bin/touch \
809         usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
810         usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
811         usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
812         usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
813         usr.bin/cap_mkdb usr.bin/true usr.bin/false \
814         usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
815         usr.bin/tail usr.bin/unifdef usr.bin/tic \
816         usr.sbin/chown usr.sbin/mtree usr.sbin/config \
817         usr.sbin/btxld usr.sbin/zic usr.sbin/makewhatis \
818         gnu/usr.bin/texinfo gnu/usr.bin/grep usr.bin/sort \
819         usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb
820
821 bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
822         touch ${BTOOLSDEST}/.bootstrap_done
823
824 bootstrap-tools-before:
825         ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
826
827 bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
828
829 bootstrap-tools-targets2: ${BSTRAPDIRS2:S/^/bstrap-/}
830
831 .ORDER: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
832
833 .ORDER: ${BSTRAPDIRS1:S/^/bstrap-/}
834
835 .for _tool in ${BSTRAPDIRS1} ${BSTRAPDIRS2}
836 bstrap-${_tool}!
837         ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
838                 cd ${.CURDIR}/${_tool}; \
839                 make DIRPRFX=${_tool}/ obj; \
840                 make DIRPRFX=${_tool}/ depend; \
841                 make DIRPRFX=${_tool}/ all; \
842                 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
843 .endfor
844
845 # build-tools: Build special purpose build tools.
846 #
847 # XXX we may be able to remove or consolidate this into bootstrap-tools
848 # now that we have the native helper (.nx/.no) infrastructure.
849 #
850 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
851 _share= share/syscons/scrnmaps
852 .endif
853
854 _gcc_common_cross= gnu/usr.bin/gmp gnu/usr.bin/mpfr
855 .if !defined(NO_GCC44)
856 _gcc44_cross= gnu/usr.bin/cc44
857 _gcc44_tools= gnu/usr.bin/cc44/cc_prep gnu/usr.bin/cc44/cc_tools
858 .endif
859 _gcc47_cross= lib/libz gnu/usr.bin/mpc gnu/usr.bin/cc47
860 _gcc47_tools= gnu/usr.bin/cc47/cc_prep gnu/usr.bin/cc47/cc_tools
861 _custom_cross= libexec/customcc
862 _binutils= gnu/usr.bin/${WORLD_BINUTILSVER}
863
864 BTOOLSDIRS= ${_gcc44_tools} ${_gcc47_tools} ${_share}
865
866 build-tools: build-tools-targets
867         touch ${BTOOLSDEST}/.build_done
868
869 build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
870
871 .ORDER: ${_gcc44_tools:S/^/btools-/}
872 .ORDER: ${_gcc47_tools:S/^/btools-/}
873
874 .for _tool in ${BTOOLSDIRS}
875 btools-${_tool}!
876         ${ECHODIR} "===> ${_tool} (build-tools)"; \
877                 cd ${.CURDIR}/${_tool}; \
878                 make DIRPRFX=${_tool}/ obj; \
879                 make DIRPRFX=${_tool}/ depend; \
880                 make DIRPRFX=${_tool}/ all; \
881                 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
882 .endfor
883
884 #
885 # cross-tools: Build cross-building tools
886 #
887 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
888 _btxld= usr.sbin/btxld
889 .endif
890
891 CTOOLSDIRS= ${_btxld} ${_binutils} usr.bin/objformat ${_gcc_common_cross} \
892                 ${_gcc44_cross} ${_gcc47_cross} ${_custom_cross}
893
894 cross-tools: cross-tools-targets
895         touch ${CTOOLSDEST}/.cross_done
896
897 cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
898
899 .for _tool in ${CTOOLSDIRS}
900 ctools-${_tool}!
901         ${ECHODIR} "===> ${_tool} (cross-tools)"; \
902                 cd ${.CURDIR}/${_tool}; \
903                 make DIRPRFX=${_tool}/ obj; \
904                 make DIRPRFX=${_tool}/ depend; \
905                 make DIRPRFX=${_tool}/ all; \
906                 make DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
907 .endfor
908
909 #
910 # hierarchy - ensure that all the needed directories are present
911 #
912 hierarchy:
913         cd ${.CURDIR}/etc;              make distrib-dirs
914
915 #
916 # libraries - build all libraries, and install them under ${DESTDIR}.
917 #
918 # The list of libraries with dependents (${_prebuild_libs}) and their
919 # interdependencies (__L) are built automatically by the
920 # ${.CURDIR}/tools/make_libdeps.sh script.
921 #
922 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
923 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
924 #
925 libraries:
926         cd ${.CURDIR}; \
927             HOST_CCVER=${HOST_CCVER} CCVER=gcc47 \
928                 make -f Makefile.inc1 _startup_libs47;
929 .if !defined(NO_GCC44)
930         cd ${.CURDIR}; \
931             HOST_CCVER=${HOST_CCVER} CCVER=gcc44 \
932                 make -f Makefile.inc1 _startup_libs44;
933 .endif
934         cd ${.CURDIR}; \
935             make -f Makefile.inc1 _startup_libs; \
936             make -f Makefile.inc1 _prebuild_libs; \
937             make -f Makefile.inc1 _generic_libs;
938         touch ${WORLDDEST}/.libraries_done
939
940 # These dependencies are not automatically generated:
941 #
942 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
943 # shared libraries for ELF.  The target for _startup_libsXX is
944 # specifically built using gccXX.
945 #
946 _startup_libs47=        gnu/usr.bin/cc47/cc_prep \
947                         gnu/usr.bin/cc47/cc_tools \
948                         gnu/lib/gcc47/csu \
949                         gnu/lib/gcc47/libgcc \
950                         gnu/lib/gcc47/libgcc_eh \
951                         gnu/lib/gcc47/libgcc_pic
952 _startup_libs44=        gnu/usr.bin/cc44/cc_prep \
953                         gnu/usr.bin/cc44/cc_tools \
954                         gnu/lib/gcc44/csu \
955                         gnu/lib/gcc44/libgcc
956 _startup_libs=          lib/csu lib/libc lib/libc_rtld
957
958 _prebuild_libs=         lib/libbz2 lib/liblzma lib/libz
959 _prebuild_libs+=        lib/libutil
960
961 _generic_libs=  gnu/lib
962
963 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
964                 lib/libncurses/libncurses lib/libopie
965
966 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
967
968 _generic_libs+= lib
969
970 .if !defined(NO_CRYPT)
971 .if !defined(NO_OPENSSL)
972 _prebuild_libs+=        secure/lib/libcrypto secure/lib/libssl
973 .if !defined(NO_OPENSSH)
974 _prebuild_libs+=        secure/lib/libssh
975 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
976 .endif
977 .endif
978 _generic_libs+= secure/lib
979 .endif
980
981 _prebuild_libs+= lib/libradius lib/libsbuf lib/libtacplus lib/libm \
982                 lib/libpam lib/libypclnt lib/lib${THREAD_LIB} \
983                 lib/libpthread lib/libprop lib/libdevattr
984
985 _generic_libs+= usr.bin/flex/lib
986
987 .for _lib in ${_startup_libs44} ${_startup_libs47} \
988                 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
989 ${_lib}__L: .PHONY
990 .if exists(${.CURDIR}/${_lib})
991         ${ECHODIR} "===> ${_lib}"; \
992                 cd ${.CURDIR}/${_lib}; \
993                 make DIRPRFX=${_lib}/ depend; \
994                 make DIRPRFX=${_lib}/ all; \
995                 make DIRPRFX=${_lib}/ install
996 .endif
997 .endfor
998
999 _startup_libs: ${_startup_libs:S/$/__L/}
1000 _startup_libs47: ${_startup_libs47:S/$/__L/}
1001 _startup_libs44: ${_startup_libs44:S/$/__L/}
1002 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1003 _generic_libs: ${_generic_libs:S/$/__L/}
1004
1005 # library targets must be ordered because there are inter-library
1006 # races (e.g. generation of tconfig.h)
1007 #
1008 .ORDER: ${_startup_libs47:S/$/__L/}
1009 .ORDER: ${_startup_libs44:S/$/__L/}
1010 .ORDER: ${_startup_libs:S/$/__L/}
1011 .ORDER: ${_prebuild_libs:S/$/__L/}
1012 .ORDER: ${_generic_libs:S/$/__L/}
1013
1014 .for __target in clean cleandepend cleandir obj depend includes
1015 .for entry in ${SUBDIR}
1016 ${entry}.${__target}__D: .PHONY
1017         @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1018                 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
1019                 edir=${entry}.${MACHINE_ARCH}; \
1020                 cd ${.CURDIR}/$${edir}; \
1021         else \
1022                 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
1023                 edir=${entry}; \
1024                 cd ${.CURDIR}/$${edir}; \
1025         fi; \
1026         make ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1027 .endfor
1028 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1029 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
1030 .endfor
1031 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1032
1033 # The wmake target is used by /usr/bin/wmake to run make in a
1034 # world build environment.
1035 #
1036 wmake:
1037         @echo '${WMAKEENV} make ${WMAKE_ARGS}'
1038
1039 wmakeenv:
1040         @echo '${WMAKEENV} /bin/sh'
1041
1042 bmake:
1043         @echo '${BMAKEENV} make ${BMAKE_ARGS}'
1044
1045 bmakeenv:
1046         @echo '${BMAKEENV} /bin/sh'
1047
1048 tmake:
1049         @echo '${TMAKEENV} make ${TMAKE_ARGS}'
1050
1051 tmakeenv:
1052         @echo '${TMAKEENV} /bin/sh'
1053
1054 xmake:
1055         @echo '${XMAKEENV} make ${XMAKE_ARGS}'
1056
1057 xmakeenv:
1058         @echo '${XMAKEENV} /bin/sh'
1059
1060 backupworld: backup-clean
1061         @mkdir -p ${WORLD_BACKUP}
1062 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1063      exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1064      exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1065         tar -czf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1066                 --options gzip:compression-level=1 \
1067                 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1068 .endif
1069
1070 backupworld-auto:
1071 .if !defined(NO_BACKUP)
1072         rm -f ${AUTO_BACKUP}/binaries.tar.gz
1073         @mkdir -p ${AUTO_BACKUP}
1074 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1075      exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1076      exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1077         tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1078                 --options gzip:compression-level=1 \
1079                 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1080 .endif
1081 .endif
1082
1083 backup-auto-clean:
1084         rm -f ${AUTO_BACKUP}/binaries.tar.gz
1085
1086 backup-clean:
1087         rm -f ${WORLD_BACKUP}/binaries.tar.gz
1088
1089 restoreworld:
1090 .if !exists(${WORLD_BACKUP}/binaries.tar.gz)
1091         @echo "There does not seem to be a valid archive present."
1092 .else
1093         @echo "Restoring system binaries from manual backup archive..."
1094         @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1095                 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1096                 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1097         tar -xzf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1098 .endif
1099
1100 restoreworld-auto:
1101 .if !exists(${AUTO_BACKUP}/binaries.tar.gz)
1102         @echo "There does not seem to be a valid archive present."
1103 .else
1104         @echo "Restoring system binaries from auto-backup archive..."
1105         @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1106                 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1107                 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1108         tar -xzf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1109 .endif
1110
1111 # Take advantage of bmake error response
1112 #
1113 MAKE_PRINT_VAR_ON_ERROR= \
1114         .CURDIR \
1115         .OBJDIR \
1116         LD_LIBRARY_PATH \
1117         MACHINE_ARCH \
1118         MACHINE \
1119         MAKEFILE \
1120         .TARGETS \
1121         .ERROR_TARGET \
1122         .MAKE.LEVEL
1123
1124 .include <bsd.subdir.mk>