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