Merge branch 'vendor/ZLIB'
[dragonfly.git] / Makefile.inc1
... / ...
CommitLineData
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.
27SUBDIR=
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)
33SUBDIR+= 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)
39SUBDIR+= include
40.endif
41.if exists(${.CURDIR}/lib)
42SUBDIR+= 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)
49SUBDIR+= nrelease
50.endif
51
52.if exists(${.CURDIR}/bin)
53SUBDIR+= bin
54.endif
55.if exists(${.CURDIR}/games) && !defined(NO_GAMES)
56SUBDIR+= games
57.endif
58.if exists(${.CURDIR}/gnu)
59SUBDIR+= gnu
60.endif
61.if exists(${.CURDIR}/libexec)
62SUBDIR+= libexec
63.endif
64.if exists(${.CURDIR}/sbin)
65SUBDIR+= sbin
66.endif
67.if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
68SUBDIR+= secure
69.endif
70.if exists(${.CURDIR}/share) && !defined(NO_SHARE)
71SUBDIR+= share
72.endif
73.if exists(${.CURDIR}/sys)
74SUBDIR+= sys
75.endif
76.if exists(${.CURDIR}/usr.bin)
77SUBDIR+= usr.bin
78.endif
79.if exists(${.CURDIR}/usr.sbin)
80SUBDIR+= usr.sbin
81.endif
82
83.if exists(${.CURDIR}/etc)
84SUBDIR+= 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)
92SUBDIR+= ${_DIR}
93.endif
94.endfor
95.endif
96
97.if defined(SUBDIR_OVERRIDE)
98SUBDIR= ${SUBDIR_OVERRIDE}
99.endif
100
101.if defined(NOCLEANDIR)
102CLEANDIR= clean cleandepend
103.else
104CLEANDIR= cleandir
105.endif
106
107.if defined(NO_CLEAN)
108NOCLEAN= # 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#
116MAKEOBJDIRPREFIX?= /usr/obj
117OBJTREE?= ${MAKEOBJDIRPREFIX}
118
119# Used for stage installs and pathing
120#
121DESTDIRBASE?= ${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
128WORLD_CCVER?= gcc47
129WORLD_LDVER?= ld.bfd
130WORLD_BINUTILSVER?= binutils222
131
132# Set the backup parameters if they are not already defined
133#
134WORLD_BACKUP?= /var/backups/world_backup
135AUTO_BACKUP?= ${OBJTREE}/world_backup/${DESTDIR}
136
137# temporary until everybody has converted to x86_64
138.if ${MACHINE_ARCH} == "amd64"
139MACHINE_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
148TARGET_ARCH?= ${MACHINE_ARCH}
149.if ${TARGET_ARCH} == ${MACHINE_ARCH}
150TARGET?= ${MACHINE}
151.else
152TARGET?= ${TARGET_ARCH}
153.endif
154.if make(buildworld)
155BUILD_ARCH!= sysctl -n hw.machine_arch
156
157# temporary until everybody has converted to x86_64
158.if ${BUILD_ARCH} == "amd64"
159BUILD_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)
171MACHINE_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"
177TARGET_PLATFORM= pc32
178.elif ${TARGET_ARCH} == "x86_64"
179TARGET_PLATFORM= pc64
180.else
181.error Unknown target architecture.
182.endif
183.endif
184
185THREAD_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#
211BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
212CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
213WORLDDEST= ${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#
220BTOOLSPATH= ${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#
225STRICTTMPPATH= ${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
227TMPDIR?= /tmp
228TMPPID!= 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#
263BMAKEENV= 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
270BMAKE= ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
271 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
272 -DNO_WERROR -DNO_NLS
273
274# build-tool stage
275#
276TMAKEENV= 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
283TMAKE= ${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#
293XMAKEENV= 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
302XMAKE= ${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#
312CROSSENV= 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
323WMAKEENV= ${CROSSENV} \
324 DESTDIR=${WORLDDEST} \
325 INSTALL="sh ${.CURDIR}/tools/install.sh" \
326 M4=${BTOOLSDEST}/usr/bin/m4 \
327 PATH=${STRICTTMPPATH}
328
329WMAKE= ${WMAKEENV} make -f Makefile.inc1
330
331# install stage
332#
333IMAKEENV= ${CROSSENV} \
334 PATH=${STRICTTMPPATH}
335IMAKE= ${IMAKEENV} make -f Makefile.inc1
336
337# kernel stage
338#
339KMAKEENV= ${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
422everything:
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
439WMAKE_TGTS=
440.if !defined(SUBDIR_OVERRIDE)
441WMAKE_TGTS+= _worldtmp _bootstrap-tools
442.endif
443WMAKE_TGTS+= _obj _build-tools
444.if !defined(SUBDIR_OVERRIDE)
445WMAKE_TGTS+= _cross-tools
446.endif
447WMAKE_TGTS+= _includes _libraries _depend everything
448
449buildworld: ${WMAKE_TGTS}
450
451quickworld: _mtreetmp _obj _includes _libraries _depend everything
452
453realquickworld: _mtreetmp _obj _includes _libraries everything
454
455crossworld: _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#
467installcheck:
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#
483installworld: 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#
494reinstall:
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)
526KERNCONF= ${KERNEL}
527KERNWARN= 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"
532KERNCONF?= GENERIC
533.else
534KERNCONF?= X86_64_GENERIC
535.endif
536.endif
537INSTKERNNAME?= kernel
538
539KRNLSRCDIR= ${.CURDIR}/sys
540KRNLCONFDIR= ${KRNLSRCDIR}/config
541KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
542KERNCONFDIR?= ${KRNLCONFDIR}
543
544BUILDKERNELS=
545INSTALLKERNEL=
546.for _kernel in ${KERNCONF}
547.if exists(${KERNCONFDIR}/${_kernel})
548BUILDKERNELS+= ${_kernel}
549.if empty(INSTALLKERNEL)
550INSTALLKERNEL= ${_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)
559KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
560.endif
561.endfor
562
563#
564# buildkernel
565#
566# Builds all kernels defined by BUILDKERNELS.
567#
568bk_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
576maybe_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
587bk_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
594bk_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#
607buildkernel: 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#
647nativekernel: 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#
690quickkernel: 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#
724installkernel 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#
741most:
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#
755installmost:
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#
795BSTRAPDIRS1= ${_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#
807BSTRAPDIRS2= \
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
821bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
822 touch ${BTOOLSDEST}/.bootstrap_done
823
824bootstrap-tools-before:
825 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
826
827bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
828
829bootstrap-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}
836bstrap-${_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
864BTOOLSDIRS= ${_gcc44_tools} ${_gcc47_tools} ${_share}
865
866build-tools: build-tools-targets
867 touch ${BTOOLSDEST}/.build_done
868
869build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
870
871.ORDER: ${_gcc44_tools:S/^/btools-/}
872.ORDER: ${_gcc47_tools:S/^/btools-/}
873
874.for _tool in ${BTOOLSDIRS}
875btools-${_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
891CTOOLSDIRS= ${_btxld} ${_binutils} usr.bin/objformat ${_gcc_common_cross} \
892 ${_gcc44_cross} ${_gcc47_cross} ${_custom_cross}
893
894cross-tools: cross-tools-targets
895 touch ${CTOOLSDEST}/.cross_done
896
897cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
898
899.for _tool in ${CTOOLSDIRS}
900ctools-${_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#
912hierarchy:
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#
925libraries:
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
966lib/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
975secure/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
1028par-${__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#
1036wmake:
1037 @echo '${WMAKEENV} make ${WMAKE_ARGS}'
1038
1039wmakeenv:
1040 @echo '${WMAKEENV} /bin/sh'
1041
1042bmake:
1043 @echo '${BMAKEENV} make ${BMAKE_ARGS}'
1044
1045bmakeenv:
1046 @echo '${BMAKEENV} /bin/sh'
1047
1048tmake:
1049 @echo '${TMAKEENV} make ${TMAKE_ARGS}'
1050
1051tmakeenv:
1052 @echo '${TMAKEENV} /bin/sh'
1053
1054xmake:
1055 @echo '${XMAKEENV} make ${XMAKE_ARGS}'
1056
1057xmakeenv:
1058 @echo '${XMAKEENV} /bin/sh'
1059
1060backupworld: 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
1070backupworld-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
1083backup-auto-clean:
1084 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1085
1086backup-clean:
1087 rm -f ${WORLD_BACKUP}/binaries.tar.gz
1088
1089restoreworld:
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
1100restoreworld-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#
1113MAKE_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>