2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
4 # Build-time options are documented in make.conf(5).
6 # The intended user-driven targets are:
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 # rescue - create rescue image
16 # restoreworld- installs binaries from manual backup dir to world
17 # restoreworld-auto - installs binaries from auto-backup dir to world
18 # most - build user commands, no libraries or include files
19 # installmost - install user commands, no libraries or include files
20 # backup-clean - delete backup from manual backup dir
21 # backup-auto-clean - delete backup from auto-backup dir
23 # Standard targets (not defined here) are documented in the makefiles in
24 # /usr/share/mk. These include:
25 # obj depend all install clean cleandepend cleanobj
27 # Put initial settings here.
30 # /libexec/ld-elf.so.2 needs to be installed first
31 # Otherwise, install(1) beeing a dynamically linked binary will fail
32 # during the first upgrade from a static to a dynamic world
33 .if exists(${.CURDIR}/libexec)
37 # We must do include and lib early so that the perl *.ph generation
38 # works correctly as it uses the header files installed by this.
39 .if exists(${.CURDIR}/include)
42 .if exists(${.CURDIR}/lib)
45 # This exists simply to ensure that the obj dir hierarchy is
46 # intact for nrelease, allowing the nrelease Makefile's to
47 # reference ${.OBJDIR}.
49 .if exists(${.CURDIR}/nrelease)
53 .if exists(${.CURDIR}/bin)
56 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
59 .if exists(${.CURDIR}/gnu)
62 .if exists(${.CURDIR}/sbin)
65 .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
68 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
71 .if exists(${.CURDIR}/sys)
74 .if exists(${.CURDIR}/usr.bin)
77 .if exists(${.CURDIR}/usr.sbin)
80 #.if exists(${.CURDIR}/llvm_clang)
84 .if exists(${.CURDIR}/etc)
88 # These are last, since it is nice to at least get the base system
89 # rebuilt before you do them.
90 .if defined(LOCAL_DIRS)
91 .for _DIR in ${LOCAL_DIRS}
92 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
98 .if defined(SUBDIR_OVERRIDE)
99 SUBDIR= ${SUBDIR_OVERRIDE}
102 .if defined(NOCLEANDIR)
103 CLEANDIR= clean cleandepend
108 .if defined(NO_CLEAN)
112 # Object directory base in primary make. Note that when we rerun make
113 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
114 # subdirectory because the rest of the build system needs it that way.
115 # The original object directory base is saved in OBJTREE.
117 MAKEOBJDIRPREFIX?= /usr/obj
118 OBJTREE?= ${MAKEOBJDIRPREFIX}
120 # Used for stage installs and pathing
122 DESTDIRBASE:= ${OBJTREE}${.CURDIR}
124 # Remove DESTDIR from MAKEFLAGS. It is present in the environment
125 # anyhow, and we need to be able to override it for stage installs
126 .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*}
128 # This section sets the tools used to build the world/kernel
130 WORLD_LDVER?= ld.gold
131 WORLD_BINUTILSVER?= binutils225
133 # Set the backup parameters if they are not already defined
135 WORLD_BACKUP?= /var/backups/world_backup
136 AUTO_BACKUP?= ${OBJTREE}/world_backup/${DESTDIR}
138 TARGET_ARCH?= ${MACHINE_ARCH}
139 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
142 TARGET?= ${TARGET_ARCH}
145 BUILD_ARCH!= sysctl -n hw.machine_arch
147 # temporary until everybody has converted to x86_64
148 .if ${BUILD_ARCH} == "amd64"
152 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
153 .error To cross-build, set TARGET_ARCH.
157 # XXX this is ugly and we need to come up with a nicer solution
158 .if !defined(TARGET_PLATFORM)
159 .if ${TARGET_ARCH} == "x86_64"
160 TARGET_PLATFORM= pc64
162 .error Unknown target architecture.
166 THREAD_LIB?= thread_xu
167 .if ${THREAD_LIB} == "c_r"
168 .if defined(NO_LIBC_R)
169 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
173 # BTOOLS (Natively built) All non-cross-development tools that the
174 # main build needs. This includes things like 'mkdir' and 'rm'.
175 # We will not use the native system's exec path once we start
176 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
178 # CTOOLS (Natively built) Cross development tools which are specific
179 # to the target architecture.
181 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
184 # MACHINE_PLATFORM Platform Architecture we are building on
185 # MACHINE Machine Architecture (usually the same as MACHINE_ARCH)
186 # MACHINE_ARCH Cpu Architecture we are building on
188 # TARGET_PLATFORM Platform Architecture we are building for
189 # TARGET Machine Architecture we are building for
190 # TARGET_ARCH Cpu Architecture we are building for
192 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
193 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
194 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
196 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
197 # cross-tools stages to augment the existing command path to access newer
198 # versions of certain utilities such as 'patch' that the cross-tools stage
201 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
203 # The strict temporary command path contains all binaries required
204 # by the buildworld system after the cross-tools stage.
206 STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games:/usr/local/bin:/usr/pkg/bin
212 # Building a world goes through the following stages
214 # 1. bootstrap-tool stage [BMAKE]
215 # This stage is responsible for creating programs that
216 # are needed for backward compatibility reasons. They
217 # are not built as cross-tools.
218 # 2. build-tool stage [TMAKE]
219 # This stage is responsible for creating the object
220 # tree and building any tools that are needed during
222 # 3. cross-tool stage [XMAKE]
223 # This stage is responsible for creating any tools that
224 # are needed for cross-builds. A cross-compiler is one
226 # 4. world stage [WMAKE]
227 # This stage actually builds the world.
228 # 5. install stage (optional) [IMAKE]
229 # This stage installs a previously built world.
231 # In all cases we must carefully adjust the environment so the proper
232 # tools and header files are used.
234 # NOTE: The M4 environment variable is used by the [f]lex binary to
235 # override the location of the 'm4' binary. The override is
236 # needed for certain buildworld version transitions, specifically
237 # past a certain point in 3.3 because the older /usr/bin/m4 will
238 # generate output that will blow up the newer [f]lex/yacc/bison
242 # bootstrap-tool stage
244 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
246 DESTDIR=${BTOOLSDEST} \
248 PATH=${BTOOLSPATH}:${PATH} \
249 M4=${BTOOLSDEST}/usr/bin/m4 \
250 INSTALL="sh ${.CURDIR}/tools/install.sh"
252 BMAKE= ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
253 -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
254 -DNO_WERROR -DNO_NLS -DSYSBUILD
258 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
262 PATH=${BTOOLSPATH}:${PATH} \
263 M4=${BTOOLSDEST}/usr/bin/m4 \
264 INSTALL="sh ${.CURDIR}/tools/install.sh"
266 TMAKE= ${TMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
267 -DNOSHARED -DSYSBUILD
271 # note: TOOLS_PREFIX points to the obj root holding the cross
272 # compiler binaries, while USRDATA_PREFIX points to the obj root
273 # holding the target environment (and also determines where cross-built
274 # libraries, crt*.o, and include files are installed).
276 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
278 DESTDIR=${CTOOLSDEST} \
280 _SHLIBDIRPREFIX=${CTOOLSDEST} \
281 INSTALL="sh ${.CURDIR}/tools/install.sh" \
282 TOOLS_PREFIX=${CTOOLSDEST} \
283 USRDATA_PREFIX=${WORLDDEST} \
284 SELECT_LINKER=${WORLD_LDVER} \
285 M4=${BTOOLSDEST}/usr/bin/m4 \
286 PATH=${BTOOLSPATH}:${PATH}
288 XMAKE= ${XMAKEENV} make -f Makefile.inc1 -DNO_GDB \
289 -DBOOTSTRAPPING -DNOSHARED -DSYSBUILD
291 # world stage, note the strict path and note that TOOLS_PREFIX is left
292 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
293 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
294 # for both binary and library paths, even though it is being compiled to
295 # WORLDDEST. None of the programs in the world stage are ever actually
296 # executed during the buildworld/installworld.
298 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
300 MACHINE_ARCH=${TARGET_ARCH} \
302 MACHINE_PLATFORM=${TARGET_PLATFORM} \
304 OBJFORMAT_PATH=${CTOOLSDEST} \
305 HOST_CCVER=${HOST_CCVER} \
306 CCVER=${WORLD_CCVER} \
307 LDVER=${WORLD_LDVER} \
308 BINUTILSVER=${WORLD_BINUTILSVER}
310 WMAKEENV= ${CROSSENV} \
311 DESTDIR=${WORLDDEST} \
312 _SHLIBDIRPREFIX=${WORLDDEST} \
313 INSTALL="sh ${.CURDIR}/tools/install.sh" \
314 M4=${BTOOLSDEST}/usr/bin/m4 \
315 PATH=${STRICTTMPPATH}
317 WMAKE= ${WMAKEENV} make -f Makefile.inc1 -DSYSBUILD
321 IMAKEENV= ${CROSSENV} \
322 PATH=${STRICTTMPPATH}
323 IMAKE= ${IMAKEENV} make -f Makefile.inc1 -DSYSBUILD
327 KMAKEENV= ${WMAKEENV}
331 # Attempt to rebuild the entire system, with reasonable chance of
332 # success, regardless of how old your existing system is.
334 _worldtmp: _cleantmp _mtreetmp
335 .ORDER: _cleantmp _mtreetmp
339 @echo "--------------------------------------------------------------"
340 @echo ">>> Rebuilding the temporary build tree"
341 @echo "--------------------------------------------------------------"
342 .if !defined(NOCLEAN)
343 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
345 # XXX - These two can depend on any header file.
346 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
347 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
351 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
352 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
353 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
354 -p ${_dir}/ > /dev/null
355 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
356 -p ${_dir}/usr > /dev/null
358 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
359 -p ${WORLDDEST}/usr/include > /dev/null
360 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
364 @echo "--------------------------------------------------------------"
365 @echo ">>> stage 1: bootstrap tools"
366 @echo "--------------------------------------------------------------"
367 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
370 @echo "--------------------------------------------------------------"
371 @echo ">>> stage 2a: cleaning up the object tree"
372 @echo "--------------------------------------------------------------"
373 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
376 @echo "--------------------------------------------------------------"
377 @echo ">>> stage 2b: rebuilding the object tree"
378 @echo "--------------------------------------------------------------"
379 cd ${.CURDIR}; ${WMAKE} par-obj
382 @echo "--------------------------------------------------------------"
383 @echo ">>> stage 2c: build tools"
384 @echo "--------------------------------------------------------------"
385 cd ${.CURDIR}; ${TMAKE} build-tools
388 @echo "--------------------------------------------------------------"
389 @echo ">>> stage 3: cross tools"
390 @echo "--------------------------------------------------------------"
391 cd ${.CURDIR}; ${XMAKE} cross-tools
394 @echo "--------------------------------------------------------------"
395 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
396 @echo "--------------------------------------------------------------"
397 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
400 @echo "--------------------------------------------------------------"
401 @echo ">>> stage 4b: building libraries"
402 @echo "--------------------------------------------------------------"
403 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOMAN -DNOFSCHG libraries
406 @echo "--------------------------------------------------------------"
407 @echo ">>> stage 4c: make dependencies"
408 @echo "--------------------------------------------------------------"
409 cd ${.CURDIR}; ${WMAKE} par-depend
412 @echo "--------------------------------------------------------------"
413 @echo ">>> stage 4d: building everything.."
414 @echo "--------------------------------------------------------------"
415 cd ${.CURDIR}; ${WMAKE} all
417 @echo "--------------------------------------------------------------"
418 @echo ">>> starting buildworld target"
419 @echo "--------------------------------------------------------------"
421 @echo "--------------------------------------------------------------"
422 @echo ">>> buildworld target complete"
423 @echo "--------------------------------------------------------------"
425 @echo "--------------------------------------------------------------"
426 @echo ">>> starting quickworld target"
427 @echo "--------------------------------------------------------------"
429 @echo "--------------------------------------------------------------"
430 @echo ">>> quickworld target complete"
431 @echo "--------------------------------------------------------------"
433 @echo "--------------------------------------------------------------"
434 @echo ">>> starting installworld target"
435 @echo "--------------------------------------------------------------"
437 # note: buildworld no longer depends on _cleanobj because we rm -rf the
438 # entire object tree and built the bootstrap tools in a different location.
440 # buildworld - build everything from scratch
441 # quickworld - skip the bootstrap, build, and cross-build steps
442 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
444 # note: we include _obj in realquickworld to prevent accidental creation
445 # of files in /usr/src.
448 .if !defined(SUBDIR_OVERRIDE)
449 WMAKE_TGTS+= _worldtmp _bootstrap-tools
451 WMAKE_TGTS+= _obj _build-tools
452 .if !defined(SUBDIR_OVERRIDE)
453 WMAKE_TGTS+= _cross-tools
455 WMAKE_TGTS+= _includes _libraries _depend everything
457 buildworld: _bwinit ${WMAKE_TGTS} _bwdone
459 quickworld: _qwinit _mtreetmp _obj _includes _libraries _depend everything _qwdone
461 realquickworld: _qwinit _mtreetmp _obj _includes _libraries everything _qwdone
463 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
465 .ORDER: _bwinit ${WMAKE_TGTS} _bwdone
466 .ORDER: _obj _includes
467 .ORDER: _qwinit _mtreetmp _obj
468 .ORDER: installcheck backupworld-auto
469 .ORDER: everything _qwdone
474 # Checks to be sure system is ready for installworld
476 installcheck: _iwinit
477 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
478 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
479 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
480 .if !defined(OVERRIDE_CHECKS)
481 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
482 @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
483 @case `uname -r` in 1.*|2.*|3.0*|3.1*|3.2*|3.3*|3.4*|3.5*|3.6*) echo "Base is too old for a normal installworld, you need to use installworld-force" ; /usr/bin/false ; esac
490 # Backs up the current world if ${AUTO_BACKUP} is writable.
491 # Installs everything compiled by a 'buildworld'.
493 # Includes sleep/sync safety before running mkinitrd.
495 installworld: installcheck
496 -@mkdir -p ${AUTO_BACKUP} > /dev/null 2>&1
498 (touch ${AUTO_BACKUP}/.updating > /dev/null 2>&1 && \
499 ${IMAKE} backupworld-auto) || \
500 echo "Cannot write to ${AUTO_BACKUP} - world not backed up"
502 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
503 ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/
505 @echo "--------------------------------------------------------------"
506 @echo ">>> installworld target complete"
507 @echo "--------------------------------------------------------------"
508 @echo "If things work as expected after a full reboot, consider updating the rescue"
509 @echo "image with 'make rescue'. Do not do it until after rebooting."
512 @echo "Doing a forced installworld. This will install to a temporary directory,"
513 @echo "then copy the main binaries and libraries with a static cpdup to ${DESTDIR}/"
514 @echo "and finally will issue a normal installworld. Starting in 5 seconds.".
517 rm -rf /usr/obj/temp > /dev/null 2>& 1 || chflags -R noschg /usr/obj/temp
519 mkdir -p /usr/obj/temp/cpdup/bin
520 (cd ${.CURDIR}/bin/cpdup; make clean; make obj; make clean; make CFLAGS=-static all install DESTDIR=/usr/obj/temp/cpdup NOMAN=TRUE)
521 @echo "XXXXXXXXX Installing to temporary XXXXXXXXX"
523 (cd ${.CURDIR}; ${MAKE} installworld DESTDIR=/usr/obj/temp > /dev/null 2>&1)
524 @echo "XXXXXXXXX Blasting binaries and libraries XXXXXXXXX"
526 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/bin /bin
527 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/sbin /sbin
528 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/lib /lib
529 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/bin /usr/bin
530 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/sbin /usr/sbin
531 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/lib /usr/lib
532 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/libexec /libexec
533 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/libexec /usr/libexec
534 @echo "XXXXXXXXX Doing final installworld XXXXXXXX"
536 (cd ${.CURDIR}; ${MAKE} installworld OVERRIDE_CHECKS=TRUE)
537 (cd ${.CURDIR}; ${MAKE} upgrade OVERRIDE_CHECKS=TRUE)
539 # Create a rescue image. We no longer do this automatically for several
540 # reasons, primarily that users have had serious issue with mismatched 'vn'
541 # vs the kldload image that can crash the system. But also, the rescue image
542 # is intended to be a rescue image, it is a bad idea to update it at the
543 # same time the world is installed.
546 mkinitrd -b ${DESTDIR}/boot
551 # If you have a build server, you can NFS mount the source and obj directories
552 # and do a 'make reinstall' on the *client* to install new binaries from the
553 # most recent server build.
556 @echo "--------------------------------------------------------------"
557 @echo ">>> Making hierarchy"
558 @echo "--------------------------------------------------------------"
559 cd ${.CURDIR}; make -f Makefile.inc1 hierarchy
561 @echo "--------------------------------------------------------------"
562 @echo ">>> Installing everything.."
563 @echo "--------------------------------------------------------------"
564 cd ${.CURDIR}; make -f Makefile.inc1 install
567 # buildkernel, nativekernel, quickkernel, and installkernel
569 # Which kernels to build and/or install is specified by setting
570 # KERNCONF. If not defined an X86_64_GENERIC kernel is built/installed.
571 # Only the existing (depending TARGET) config files are used
572 # for building kernels and only the first of these is designated
573 # as the one being installed.
575 # You can specify INSTALLSTRIPPED=1 if you wish the installed
576 # kernel and modules to be stripped of its debug info (required
577 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
578 # if you only want to strip the modules of their debug info. These
579 # only apply if you have DEBUG=-g in your kernel config or make line.
581 # Note that we have to use TARGET instead of TARGET_ARCH when
582 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
583 # be set to cross-build, we have to make sure TARGET is set
586 .if !defined(KERNCONF) && defined(KERNEL)
590 # XXX makeshift fix to build the right kernel for the (target) architecture
591 # We should configure this in the platform files somehow
592 .if ${TARGET_ARCH} == "x86_64"
593 KERNCONF?= X86_64_GENERIC
596 INSTKERNNAME?= kernel
598 KRNLSRCDIR= ${.CURDIR}/sys
599 KRNLCONFDIR= ${KRNLSRCDIR}/config
600 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
601 KERNCONFDIR?= ${KRNLCONFDIR}
605 .for _kernel in ${KERNCONF}
606 .if exists(${KERNCONFDIR}/${_kernel})
607 BUILDKERNELS+= ${_kernel}
608 .if empty(INSTALLKERNEL)
609 INSTALLKERNEL= ${_kernel}
614 # kernel version numbers survive rm -rf
616 .for _kernel in ${BUILDKERNELS}
617 .if exists(${KRNLOBJDIR}/${_kernel}/version)
618 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
625 # Builds all kernels defined by BUILDKERNELS.
628 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
629 echo "You must buildworld before buildkernel. If you wish"; \
630 echo "to build a kernel using native tools, config it manually"; \
631 echo "or use the nativekernel target if you are in a rush"; \
636 .for _kernel in ${BUILDKERNELS}
637 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
638 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
639 echo "The kernel was build using buildworld tools which no" ; \
640 echo "longer appear to exist, quickkernel failed!" ; \
647 .if empty(BUILDKERNELS)
648 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
649 @echo ">>> Did you move your kernel configs from i386/conf to config/?"
654 .if defined(KERNWARN)
655 @echo "--------------------------------------------------------------"
656 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
657 @echo "--------------------------------------------------------------"
662 # The buildkernel target rebuilds the specified kernels from scratch
663 # using the crossbuild tools generated by the last buildworld. It is
664 # the safest (but also the most time consuming) way to build a new kernel.
666 buildkernel: bk_tools bk_build_list bk_kernwarn
667 .for _kernel in ${BUILDKERNELS}
668 @echo "--------------------------------------------------------------"
669 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
670 @echo "--------------------------------------------------------------"
671 @echo "===> ${_kernel}"
672 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
673 rm -rf ${KRNLOBJDIR}/${_kernel}
675 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
676 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
677 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
679 mkdir -p ${KRNLOBJDIR}
680 .if !defined(NO_KERNELCONFIG)
682 PATH=${STRICTTMPPATH} \
683 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
684 ${KERNCONFDIR}/${_kernel}
686 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
687 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
689 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
690 .if !defined(NO_KERNELDEPEND)
691 cd ${KRNLOBJDIR}/${_kernel}; \
692 ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
694 cd ${KRNLOBJDIR}/${_kernel}; \
695 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
696 @echo "--------------------------------------------------------------"
697 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
698 @echo "--------------------------------------------------------------"
701 # The nativekernel target rebuilds the specified kernels from scratch
702 # using the system's standard compiler rather than using the crossbuild
703 # tools generated by the last buildworld. This is fairly safe if your
704 # system is reasonable up-to-date.
706 nativekernel: bk_build_list bk_kernwarn
707 .for _kernel in ${BUILDKERNELS}
708 @echo "--------------------------------------------------------------"
709 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
710 @echo "--------------------------------------------------------------"
711 @echo "===> ${_kernel}"
712 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
713 rm -rf ${KRNLOBJDIR}/${_kernel}
715 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
716 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
717 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
719 mkdir -p ${KRNLOBJDIR}
720 .if !defined(NO_KERNELCONFIG)
722 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
723 ${KERNCONFDIR}/${_kernel}
725 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
726 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
728 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
729 cd ${KRNLOBJDIR}/${_kernel}; \
730 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
731 make -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
732 .if !defined(NO_KERNELDEPEND)
733 cd ${KRNLOBJDIR}/${_kernel}; \
734 make KERNEL=${INSTKERNNAME} depend
736 cd ${KRNLOBJDIR}/${_kernel}; \
737 make KERNEL=${INSTKERNNAME} all
738 @echo "--------------------------------------------------------------"
739 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
740 @echo "--------------------------------------------------------------"
743 # The quickkernel target rebuilds the specified kernels as quickly
744 # as possible. It will use the native tools or the buildworld cross tools
745 # based on whether the kernel was originally generated via buildkernel or
746 # nativekernel. Config is rerun but the object hierarchy is not rebuilt,
747 # nor is the make depend step run.
749 quickkernel: maybe_bk_tools bk_build_list bk_kernwarn
750 .for _kernel in ${BUILDKERNELS}
751 @echo "--------------------------------------------------------------"
752 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
753 @echo "--------------------------------------------------------------"
754 @echo "===> ${_kernel}"
755 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
756 .if !defined(NO_KERNELCONFIG)
758 PATH=${STRICTTMPPATH} \
759 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
760 ${KERNCONFDIR}/${_kernel}
762 cd ${KRNLOBJDIR}/${_kernel}; \
763 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
765 .if !defined(NO_KERNELCONFIG)
767 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
768 ${KERNCONFDIR}/${_kernel}
770 cd ${KRNLOBJDIR}/${_kernel}; \
771 make KERNEL=${INSTKERNNAME} all
773 @echo "--------------------------------------------------------------"
774 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
775 @echo "--------------------------------------------------------------"
781 # Install the kernel defined by INSTALLKERNEL
783 installkernel reinstallkernel:
784 @echo "--------------------------------------------------------------"
785 @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
786 @echo "--------------------------------------------------------------"
787 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
788 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
789 ${IMAKEENV} make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
791 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
792 make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
794 @echo "--------------------------------------------------------------"
795 @echo ">>> Kernel install for ${INSTALLKERNEL} completed on `LC_ALL=C date`"
796 @echo "--------------------------------------------------------------"
801 # Build most of the user binaries on the existing system libs and includes.
804 @echo "--------------------------------------------------------------"
805 @echo ">>> Building programs only"
806 @echo "--------------------------------------------------------------"
807 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
808 cd ${.CURDIR}/${_dir}; make DIRPRFX=${_dir}/ all
814 # Install the binaries built by the 'most' target. This does not include
815 # libraries or include files.
818 @echo "--------------------------------------------------------------"
819 @echo ">>> Installing programs only"
820 @echo "--------------------------------------------------------------"
821 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
822 cd ${.CURDIR}/${_dir}; make DIRPRFX=${_dir}/ install
826 # ------------------------------------------------------------------------
828 # From here onwards are utility targets used by the 'make world' and
829 # related targets. If your 'world' breaks, you may like to try to fix
830 # the problem and manually run the following targets to attempt to
831 # complete the build. Beware, this is *not* guaranteed to work, you
832 # need to have a pretty good grip on the current state of the system
833 # to attempt to manually finish it. If in doubt, 'make world' again.
836 # bootstrap-tools: Build all tools required to build all tools. Note that
837 # order is important in a number of cases and also note that the bootstrap
838 # and build tools stages have access to earlier binaries they themselves
841 # patch: older patch's do not have -i. This program must be built
842 # first so other bootstrap tools that need to apply patches
844 # [x]install: dependancies on various new install features
845 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
846 # envs are not compatible with older objformat binaries.
848 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
849 _strfile= games/fortune/strfile
852 # BSTRAPDIRS1 - must be built in strict order, no parallelism
854 # order is very important. yacc before m4 before flex. flex exec's m4,
855 # m4's parser file needs the latest byacc (insanity!).
857 BSTRAPDIRS1= ${_strfile} \
859 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo \
860 bin/test bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
861 bin/hostname bin/kill \
862 usr.bin/yacc usr.bin/m4 usr.bin/localedef \
863 usr.bin/uudecode usr.bin/xinstall \
864 usr.bin/rpcgen usr.bin/bmake usr.bin/awk usr.bin/stat \
865 usr.bin/find usr.bin/flex
867 # BSTRAPDIRS2 - may built in parallel
870 usr.bin/sed usr.bin/uname usr.bin/touch \
871 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
872 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
873 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
874 usr.bin/uuencode usr.bin/hexdump \
875 usr.bin/cap_mkdb usr.bin/true usr.bin/false \
876 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
877 usr.bin/tail usr.bin/unifdef usr.bin/tic \
878 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
879 usr.sbin/btxld usr.sbin/zic usr.sbin/makewhatis \
880 gnu/usr.bin/grep usr.bin/sort usr.bin/gzip usr.bin/bzip2 \
881 usr.bin/mkcsmapper usr.bin/mkesdb usr.bin/crunch
883 bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
884 touch ${BTOOLSDEST}/.bootstrap_done
886 bootstrap-tools-before:
887 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
889 bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
891 bootstrap-tools-targets2: ${BSTRAPDIRS2:S/^/bstrap-/}
893 .ORDER: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
895 .ORDER: ${BSTRAPDIRS1:S/^/bstrap-/}
897 .for _tool in ${BSTRAPDIRS1} ${BSTRAPDIRS2}
899 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
900 cd ${.CURDIR}/${_tool}; \
901 make DIRPRFX=${_tool}/ obj; \
902 make DIRPRFX=${_tool}/ depend; \
903 make DIRPRFX=${_tool}/ all; \
904 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
907 # build-tools: Build special purpose build tools.
909 # XXX we may be able to remove or consolidate this into bootstrap-tools
910 # now that we have the native helper (.nx/.no) infrastructure.
912 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
913 _share= share/syscons/scrnmaps
916 _gcc_common_cross= lib/libz gnu/usr.bin/gmp gnu/usr.bin/mpfr gnu/usr.bin/mpc
917 _gcc50_cross= gnu/usr.bin/cc50
918 _gcc50_tools= gnu/usr.bin/cc50/cc_prep gnu/usr.bin/cc50/cc_tools
919 .if !defined(NO_ALTCOMPILER)
920 _gcc47_cross= gnu/usr.bin/cc47
921 _gcc47_tools= gnu/usr.bin/cc47/cc_prep gnu/usr.bin/cc47/cc_tools
923 _custom_cross= libexec/customcc
924 _binutils= gnu/usr.bin/${WORLD_BINUTILSVER}
926 BTOOLSDIRS= ${_gcc47_tools} ${_gcc50_tools} ${_share}
928 build-tools: build-tools-targets
929 touch ${BTOOLSDEST}/.build_done
931 build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
933 .ORDER: ${_gcc47_tools:S/^/btools-/}
934 .ORDER: ${_gcc50_tools:S/^/btools-/}
936 .for _tool in ${BTOOLSDIRS}
938 ${ECHODIR} "===> ${_tool} (build-tools)"; \
939 cd ${.CURDIR}/${_tool}; \
940 make DIRPRFX=${_tool}/ obj; \
941 make DIRPRFX=${_tool}/ depend; \
942 make DIRPRFX=${_tool}/ all; \
943 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
947 # cross-tools: Build cross-building tools
949 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
950 _btxld= usr.sbin/btxld
953 CTOOLSDIRS= ${_btxld} ${_binutils} \
954 usr.bin/objformat usr.bin/crunch/crunchide \
955 ${_gcc_common_cross} \
956 ${_gcc47_cross} ${_gcc50_cross} ${_custom_cross}
958 cross-tools: cross-tools-targets
959 touch ${CTOOLSDEST}/.cross_done
961 cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
963 .for _tool in ${CTOOLSDIRS}
965 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
966 cd ${.CURDIR}/${_tool}; \
967 make DIRPRFX=${_tool}/ obj; \
968 make DIRPRFX=${_tool}/ depend; \
969 make DIRPRFX=${_tool}/ all; \
970 make DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
974 # hierarchy - ensure that all the needed directories are present
977 cd ${.CURDIR}/etc; make distrib-dirs
980 # libraries - build all libraries, and install them under ${DESTDIR}.
982 # The list of libraries with dependents (${_prebuild_libs}) and their
983 # interdependencies (__L) are built automatically by the
984 # ${.CURDIR}/tools/make_libdeps.sh script.
986 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
987 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
991 HOST_CCVER=${HOST_CCVER} CCVER=gcc50 \
992 make -f Makefile.inc1 _startup_libs50 -DSYSBUILD;
993 .if !defined(NO_ALTCOMPILER)
995 HOST_CCVER=${HOST_CCVER} CCVER=gcc47 \
996 make -f Makefile.inc1 _startup_libs47 -DSYSBUILD;
999 make -f Makefile.inc1 _startup_libs -DSYSBUILD; \
1000 make -f Makefile.inc1 _prebuild_libs -DSYSBUILD; \
1001 make -f Makefile.inc1 _generic_libs -DSYSBUILD;
1002 touch ${WORLDDEST}/.libraries_done
1004 # These dependencies are not automatically generated:
1006 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
1007 # shared libraries for ELF. The target for _startup_libsXX is
1008 # specifically built using gccXX.
1010 _startup_libs47= gnu/usr.bin/cc47/cc_prep \
1011 gnu/usr.bin/cc47/cc_tools \
1013 gnu/lib/gcc47/libgcc \
1014 gnu/lib/gcc47/libgcc_eh \
1015 gnu/lib/gcc47/libgcc_pic
1016 _startup_libs50= gnu/usr.bin/cc50/cc_prep \
1017 gnu/usr.bin/cc50/cc_tools \
1019 gnu/lib/gcc50/libgcc \
1020 gnu/lib/gcc50/libgcc_eh \
1021 gnu/lib/gcc50/libgcc_pic
1022 _startup_libs= lib/csu lib/libc lib/libc_rtld
1024 _prebuild_libs= lib/libbz2 lib/libz
1025 _prebuild_libs+= lib/libutil
1027 _prebuild_libs+= lib/libpcap
1029 _generic_libs= gnu/lib
1031 _prebuild_libs+= lib/libcrypt lib/libmd \
1032 lib/libncurses/libncurses lib/libopie
1034 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
1038 .if !defined(NO_CRYPT)
1039 .if !defined(NO_OPENSSL)
1040 _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
1041 .if !defined(NO_OPENSSH)
1042 _prebuild_libs+= secure/lib/libssh
1043 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
1046 _generic_libs+= secure/lib
1049 _prebuild_libs+= lib/libradius lib/libsbuf lib/libtacplus lib/libm \
1050 lib/libpam lib/libypclnt lib/lib${THREAD_LIB} \
1051 lib/libpthread lib/liblzma lib/libprop lib/libdevattr
1053 _generic_libs+= usr.bin/flex/lib
1055 .for _lib in ${_startup_libs47} ${_startup_libs50} \
1056 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
1058 .if exists(${.CURDIR}/${_lib})
1059 ${ECHODIR} "===> ${_lib}"; \
1060 cd ${.CURDIR}/${_lib}; \
1061 make DIRPRFX=${_lib}/ depend; \
1062 make DIRPRFX=${_lib}/ all; \
1063 make DIRPRFX=${_lib}/ install
1067 _startup_libs: ${_startup_libs:S/$/__L/}
1068 _startup_libs47: ${_startup_libs47:S/$/__L/}
1069 _startup_libs50: ${_startup_libs50:S/$/__L/}
1070 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1071 _generic_libs: ${_generic_libs:S/$/__L/}
1073 # library targets must be ordered because there are inter-library
1074 # races (e.g. generation of tconfig.h)
1076 .ORDER: ${_startup_libs47:S/$/__L/}
1077 .ORDER: ${_startup_libs50:S/$/__L/}
1078 .ORDER: ${_startup_libs:S/$/__L/}
1079 .ORDER: ${_prebuild_libs:S/$/__L/}
1080 .ORDER: ${_generic_libs:S/$/__L/}
1082 .for __target in clean cleandepend cleandir obj depend includes
1083 .for entry in ${SUBDIR}
1084 ${entry}.${__target}__D: .PHONY
1085 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1086 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
1087 edir=${entry}.${MACHINE_ARCH}; \
1088 cd ${.CURDIR}/$${edir}; \
1090 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
1092 cd ${.CURDIR}/$${edir}; \
1094 make ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1096 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1097 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
1099 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1101 # The wmake target is used by /usr/bin/wmake to run make in a
1102 # world build environment.
1105 @echo '${WMAKEENV} make ${WMAKE_ARGS} -DSYSBUILD'
1108 @echo '${WMAKEENV} /bin/sh'
1111 @echo '${BMAKEENV} make ${BMAKE_ARGS} -DSYSBUILD'
1114 @echo '${BMAKEENV} /bin/sh'
1117 @echo '${TMAKEENV} make ${TMAKE_ARGS} -DSYSBUILD'
1120 @echo '${TMAKEENV} /bin/sh'
1123 @echo '${XMAKEENV} make ${XMAKE_ARGS} -DSYSBUILD'
1126 @echo '${XMAKEENV} /bin/sh'
1128 backupworld: backup-clean
1129 @mkdir -p ${WORLD_BACKUP}
1130 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1131 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1132 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1133 tar -czf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1134 --options gzip:compression-level=1 \
1135 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1139 .if !defined(NO_BACKUP)
1140 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1141 @mkdir -p ${AUTO_BACKUP}
1142 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1143 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1144 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1145 /usr/bin/tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1146 --options gzip:compression-level=1 \
1147 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1152 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1155 rm -f ${WORLD_BACKUP}/binaries.tar.gz
1158 .if !exists(${WORLD_BACKUP}/binaries.tar.gz)
1159 @echo "There does not seem to be a valid archive present."
1161 @echo "Restoring system binaries from manual backup archive..."
1162 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1163 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1164 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1165 tar -xzf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1169 .if !exists(${AUTO_BACKUP}/binaries.tar.gz)
1170 @echo "There does not seem to be a valid archive present."
1172 @echo "Restoring system binaries from auto-backup archive..."
1173 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1174 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1175 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1176 tar -xzf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1179 # Take advantage of bmake error response
1181 MAKE_PRINT_VAR_ON_ERROR= \
1192 .include <bsd.subdir.mk>