2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
3 # $DragonFly: src/Makefile.inc1,v 1.118 2008/06/24 20:22:30 thomas Exp $
5 # Build-time options are documented in make.conf(5).
7 # The intended user-driven targets are:
9 # buildworld - rebuild *everything*, including glue to help do upgrades
10 # quickworld - skip the glue and do a depend+build on the meat
11 # realquickworld - skip the glue and depend stages and just build the meat
12 # crossworld - only build the glue (particularly the cross-build environment)
13 # installworld- install everything built by "buildworld"
14 # most - build user commands, no libraries or include files
15 # installmost - install user commands, no libraries or include files
17 # Standard targets (not defined here) are documented in the makefiles in
18 # /usr/share/mk. These include:
19 # obj depend all install clean cleandepend cleanobj
21 # Put initial settings here.
24 # We must do share/info early so that installation of info `dir'
25 # entries works correctly. Do it first since it is less likely to
26 # grow dependencies on include and lib than vice versa.
27 .if exists(${.CURDIR}/share/info)
31 # We must do include and lib early so that the perl *.ph generation
32 # works correctly as it uses the header files installed by this.
33 .if exists(${.CURDIR}/include)
36 .if exists(${.CURDIR}/lib)
39 # This exists simply to ensure that the obj dir hierarchy is
40 # intact for nrelease, allowing the nrelease Makefile's to
41 # reference ${.OBJDIR}.
43 .if exists(${.CURDIR}/nrelease)
47 .if exists(${.CURDIR}/bin)
50 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
53 .if exists(${.CURDIR}/gnu)
56 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
57 !defined(NO_CRYPT) && !defined(NO_OPENSSL) && defined(WANT_KERBEROS)
60 .if exists(${.CURDIR}/libexec)
63 .if exists(${.CURDIR}/sbin)
66 .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
69 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
72 .if exists(${.CURDIR}/sys)
75 .if exists(${.CURDIR}/usr.bin)
78 .if exists(${.CURDIR}/usr.sbin)
82 .if exists(${.CURDIR}/etc)
86 # These are last, since it is nice to at least get the base system
87 # rebuilt before you do them.
88 .if defined(LOCAL_DIRS)
89 .for _DIR in ${LOCAL_DIRS}
90 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
96 .if defined(SUBDIR_OVERRIDE)
97 SUBDIR= ${SUBDIR_OVERRIDE}
100 .if defined(NOCLEANDIR)
101 CLEANDIR= clean cleandepend
106 .if defined(NO_CLEAN)
110 # Object directory base in primary make. Note that when we rerun make
111 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
112 # subdirectory because the rest of the build system needs it that way.
113 # The original object directory base is saved in OBJTREE.
115 MAKEOBJDIRPREFIX?= /usr/obj
116 OBJTREE?= ${MAKEOBJDIRPREFIX}
118 # Used for stage installs and pathing
120 DESTDIRBASE?= ${OBJTREE}${.CURDIR}
122 # Remove DESTDIR from MAKEFLAGS. It is present in the environment
123 # anyhow, and we need to be able to override it for stage installs
124 .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*}
126 # This sets the compiler we use to build the world/kernel with
129 TARGET_ARCH?= ${MACHINE_ARCH}
130 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
133 TARGET?= ${TARGET_ARCH}
136 BUILD_ARCH!= sysctl -n hw.machine_arch
137 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
138 .error To cross-build, set TARGET_ARCH.
142 # Backwards compatibility with older make's or older sys.mk's. make
143 # is expected to define MACHINE_PLATFORM.
145 .if !defined(MACHINE_PLATFORM)
146 MACHINE_PLATFORM= pc32
149 # XXX this is ugly and we need to come up with a nicer solution
150 .if !defined(TARGET_PLATFORM)
151 .if ${TARGET_ARCH} == "i386"
152 TARGET_PLATFORM= pc32
153 .elif ${TARGET_ARCH} == "amd64"
154 TARGET_PLATFORM= pc64
156 .error Unknown target architecture.
160 THREAD_LIB?= thread_xu
161 .if ${THREAD_LIB} == "c_r"
162 .if defined(NO_LIBC_R)
163 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
167 # BTOOLS (Natively built) All non-cross-development tools that the
168 # main build needs. This includes things like 'mkdir' and 'rm'.
169 # We will not use the native system's exec path once we start
170 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
172 # CTOOLS (Natively built) Cross development tools which are specific
173 # to the target architecture.
175 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
178 # MACHINE_PLATFORM Platform Architecture we are building on
179 # MACHINE Machine Architecture (usually the same as MACHINE_ARCH)
180 # MACHINE_ARCH Cpu Architecture we are building on
182 # TARGET_PLATFORM Platform Architecture we are building for
183 # TARGET Machine Architecture we are building for
184 # TARGET_ARCH Cpu Architecture we are building for
186 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
187 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
188 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
190 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
191 # cross-tools stages to augment the existing command path to access newer
192 # versions of certain utilities such as 'patch' that the cross-tools stage
195 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
197 # The strict temporary command path contains all binaries required
198 # by the buildworld system after the cross-tools stage.
200 STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
206 # Building a world goes through the following stages
208 # 1. bootstrap-tool stage [BMAKE]
209 # This stage is responsible for creating programs that
210 # are needed for backward compatibility reasons. They
211 # are not built as cross-tools.
212 # 2. build-tool stage [TMAKE]
213 # This stage is responsible for creating the object
214 # tree and building any tools that are needed during
216 # 3. cross-tool stage [XMAKE]
217 # This stage is responsible for creating any tools that
218 # are needed for cross-builds. A cross-compiler is one
220 # 4. world stage [WMAKE]
221 # This stage actually builds the world.
222 # 5. install stage (optional) [IMAKE]
223 # This stage installs a previously built world.
226 # bootstrap-tool stage
228 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
230 DESTDIR=${BTOOLSDEST} \
231 PATH=${BTOOLSPATH}:${PATH} \
232 INSTALL="sh ${.CURDIR}/tools/install.sh"
234 BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
235 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
240 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
243 PATH=${BTOOLSPATH}:${PATH} \
244 INSTALL="sh ${.CURDIR}/tools/install.sh"
246 TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
247 -DNO_FORTRAN -DNOSHARED
251 # note: TOOLS_PREFIX points to the obj root holding the cross
252 # compiler binaries, while USRDATA_PREFIX points to the obj root
253 # holding the target environment (and also determines where cross-built
254 # libraries, crt*.o, and include files are installed).
256 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
258 DESTDIR=${CTOOLSDEST} \
259 INSTALL="sh ${.CURDIR}/tools/install.sh" \
260 TOOLS_PREFIX=${CTOOLSDEST} \
261 USRDATA_PREFIX=${WORLDDEST} \
262 PATH=${BTOOLSPATH}:${PATH}
264 XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \
265 -DBOOTSTRAPPING -DNOSHARED
267 # world stage, note the strict path and note that TOOLS_PREFIX is left
268 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
269 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
270 # for both binary and library paths, even though it is being compiled to
271 # WORLDDEST. None of the programs in the world stage are ever actually
272 # executed during the buildworld/installworld.
274 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
276 MACHINE_ARCH=${TARGET_ARCH} \
278 MACHINE_PLATFORM=${TARGET_PLATFORM} \
279 OBJFORMAT_PATH=${CTOOLSDEST} \
280 HOST_CCVER=${HOST_CCVER} \
283 WMAKEENV= ${CROSSENV} \
284 DESTDIR=${WORLDDEST} \
285 INSTALL="sh ${.CURDIR}/tools/install.sh" \
286 PATH=${STRICTTMPPATH}
288 WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1
292 IMAKEENV= ${CROSSENV} \
293 PATH=${STRICTTMPPATH}
294 IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1
298 KMAKEENV= ${WMAKEENV}
302 # Attempt to rebuild the entire system, with reasonable chance of
303 # success, regardless of how old your existing system is.
307 @echo "--------------------------------------------------------------"
308 @echo ">>> Rebuilding the temporary build tree"
309 @echo "--------------------------------------------------------------"
310 .if !defined(NOCLEAN)
311 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
313 # XXX - These two can depend on any header file.
314 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
315 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
317 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
318 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
319 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
320 -p ${_dir}/ > /dev/null
321 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
322 -p ${_dir}/usr > /dev/null
324 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
325 -p ${WORLDDEST}/usr/include > /dev/null
326 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
330 @echo "--------------------------------------------------------------"
331 @echo ">>> stage 1: bootstrap tools"
332 @echo "--------------------------------------------------------------"
333 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
336 @echo "--------------------------------------------------------------"
337 @echo ">>> stage 2a: cleaning up the object tree"
338 @echo "--------------------------------------------------------------"
339 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
342 @echo "--------------------------------------------------------------"
343 @echo ">>> stage 2b: rebuilding the object tree"
344 @echo "--------------------------------------------------------------"
345 cd ${.CURDIR}; ${WMAKE} par-obj
348 @echo "--------------------------------------------------------------"
349 @echo ">>> stage 2c: build tools"
350 @echo "--------------------------------------------------------------"
351 cd ${.CURDIR}; ${TMAKE} build-tools
354 @echo "--------------------------------------------------------------"
355 @echo ">>> stage 3: cross tools"
356 @echo "--------------------------------------------------------------"
357 cd ${.CURDIR}; ${XMAKE} cross-tools
360 @echo "--------------------------------------------------------------"
361 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
362 @echo "--------------------------------------------------------------"
363 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
366 @echo "--------------------------------------------------------------"
367 @echo ">>> stage 4b: building libraries"
368 @echo "--------------------------------------------------------------"
369 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
372 @echo "--------------------------------------------------------------"
373 @echo ">>> stage 4c: make dependencies"
374 @echo "--------------------------------------------------------------"
375 cd ${.CURDIR}; ${WMAKE} par-depend
378 @echo "--------------------------------------------------------------"
379 @echo ">>> stage 4d: building everything.."
380 @echo "--------------------------------------------------------------"
381 cd ${.CURDIR}; ${WMAKE} all
383 # note: buildworld no longer depends on _cleanobj because we rm -rf the
384 # entire object tree and built the bootstrap tools in a different location.
386 # buildworld - build everything from scratch
387 # quickworld - skip the bootstrap, build, and cross-build steps
388 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
390 # note: we include _obj in realquickworld to prevent accidental creation
391 # of files in /usr/src.
394 .if !defined(SUBDIR_OVERRIDE)
395 WMAKE_TGTS+= _worldtmp _bootstrap-tools
397 WMAKE_TGTS+= _obj _build-tools
398 .if !defined(SUBDIR_OVERRIDE)
399 WMAKE_TGTS+= _cross-tools
401 WMAKE_TGTS+= _includes _libraries _depend everything
403 buildworld: ${WMAKE_TGTS}
405 quickworld: _obj _includes _libraries _depend everything
407 realquickworld: _obj _includes _libraries everything
409 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
411 .ORDER: ${WMAKE_TGTS}
412 .ORDER: _obj _includes
417 # Checks to be sure system is ready for installworld
420 .if !defined(NO_SENDMAIL)
421 @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
422 @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
424 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
425 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1)
426 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
427 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
428 @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" ; exit 1;; esac
433 # Installs everything compiled by a 'buildworld'.
435 installworld: installcheck
436 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
437 ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/
442 # If you have a build server, you can NFS mount the source and obj directories
443 # and do a 'make reinstall' on the *client* to install new binaries from the
444 # most recent server build.
447 @echo "--------------------------------------------------------------"
448 @echo ">>> Making hierarchy"
449 @echo "--------------------------------------------------------------"
450 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
452 @echo "--------------------------------------------------------------"
453 @echo ">>> Installing everything.."
454 @echo "--------------------------------------------------------------"
455 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
456 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
458 @echo "--------------------------------------------------------------"
459 @echo ">>> Rebuilding man page indices"
460 @echo "--------------------------------------------------------------"
461 cd ${.CURDIR}/share/man; ${MAKE} makedb
465 # buildkernel, nativekernel, quickkernel, and installkernel
467 # Which kernels to build and/or install is specified by setting
468 # KERNCONF. If not defined a GENERIC kernel is built/installed.
469 # Only the existing (depending TARGET) config files are used
470 # for building kernels and only the first of these is designated
471 # as the one being installed.
473 # You can specify INSTALLSTRIPPED=1 if you wish the installed
474 # kernel and modules to be stripped of its debug info (required
475 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
476 # if you only want to strip the modules of their debug info. These
477 # only apply if you have DEBUG=-g in your kernel config or make line.
479 # Note that we have to use TARGET instead of TARGET_ARCH when
480 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
481 # be set to cross-build, we have to make sure TARGET is set
484 .if !defined(KERNCONF) && defined(KERNEL)
490 INSTKERNNAME?= kernel
492 KRNLSRCDIR= ${.CURDIR}/sys
493 KRNLCONFDIR= ${KRNLSRCDIR}/config
494 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
495 KERNCONFDIR?= ${KRNLCONFDIR}
499 .for _kernel in ${KERNCONF}
500 .if exists(${KERNCONFDIR}/${_kernel})
501 BUILDKERNELS+= ${_kernel}
502 .if empty(INSTALLKERNEL)
503 INSTALLKERNEL= ${_kernel}
508 # kernel version numbers survive rm -rf
510 .for _kernel in ${BUILDKERNELS}
511 .if exists(${KRNLOBJDIR}/${_kernel}/version)
512 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
519 # Builds all kernels defined by BUILDKERNELS.
522 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
523 echo "You must buildworld before buildkernel. If you wish"; \
524 echo "to build a kernel using native tools, config it manually"; \
525 echo "or use the nativekernel target if you are in a rush"; \
530 .for _kernel in ${BUILDKERNELS}
531 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
532 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
533 echo "The kernel was build using buildworld tools which no" ; \
534 echo "longer appear to exist, quickkernel failed!" ; \
541 .if empty(BUILDKERNELS)
542 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
543 @echo ">>> Did you move your kernel configs from i386/conf to config/?"
548 .if defined(KERNWARN)
549 @echo "--------------------------------------------------------------"
550 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
551 @echo "--------------------------------------------------------------"
556 # The buildkernel target rebuilds the specified kernels from scratch
557 # using the crossbuild tools generated by the last buildworld. It is
558 # the safest (but also the most time consuming) way to build a new kernel.
560 buildkernel: bk_tools bk_build_list bk_kernwarn
561 .for _kernel in ${BUILDKERNELS}
562 @echo "--------------------------------------------------------------"
563 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
564 @echo "--------------------------------------------------------------"
565 @echo "===> ${_kernel}"
566 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
567 rm -rf ${KRNLOBJDIR}/${_kernel}
569 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
570 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
571 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
573 mkdir -p ${KRNLOBJDIR}
574 .if !defined(NO_KERNELCONFIG)
576 PATH=${STRICTTMPPATH} \
577 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
578 ${KERNCONFDIR}/${_kernel}
580 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
581 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
583 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
584 cd ${KRNLOBJDIR}/${_kernel}; \
585 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
586 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
587 .if !defined(NO_KERNELDEPEND)
588 cd ${KRNLOBJDIR}/${_kernel}; \
589 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
591 cd ${KRNLOBJDIR}/${_kernel}; \
592 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
593 @echo "--------------------------------------------------------------"
594 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
595 @echo "--------------------------------------------------------------"
598 # The nativekernel target rebuilds the specified kernels from scratch
599 # using the system's standard compiler rather than using the crossbuild
600 # tools generated by the last buildworld. This is fairly safe if your
601 # system is reasonable up-to-date.
603 nativekernel: bk_build_list bk_kernwarn
604 .for _kernel in ${BUILDKERNELS}
605 @echo "--------------------------------------------------------------"
606 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
607 @echo "--------------------------------------------------------------"
608 @echo "===> ${_kernel}"
609 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
610 rm -rf ${KRNLOBJDIR}/${_kernel}
612 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
613 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
614 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
616 mkdir -p ${KRNLOBJDIR}
617 .if !defined(NO_KERNELCONFIG)
619 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
620 ${KERNCONFDIR}/${_kernel}
622 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
623 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
625 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
626 cd ${KRNLOBJDIR}/${_kernel}; \
627 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
628 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
629 .if !defined(NO_KERNELDEPEND)
630 cd ${KRNLOBJDIR}/${_kernel}; \
631 ${MAKE} KERNEL=${INSTKERNNAME} depend
633 cd ${KRNLOBJDIR}/${_kernel}; \
634 ${MAKE} KERNEL=${INSTKERNNAME} all
635 @echo "--------------------------------------------------------------"
636 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
637 @echo "--------------------------------------------------------------"
640 # The quickkernel target rebuilds the specified kernels as quickly
641 # as possible. It will use the native tools or the buildworld cross tools
642 # based on whether the kernel was originally generated via buildkernel or
643 # nativekernel. Config is rerun but the object hierarchy is not rebuilt,
644 # nor is the make depend step run.
646 quickkernel: maybe_bk_tools bk_build_list bk_kernwarn
647 .for _kernel in ${BUILDKERNELS}
648 @echo "--------------------------------------------------------------"
649 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
650 @echo "--------------------------------------------------------------"
651 @echo "===> ${_kernel}"
652 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
653 .if !defined(NO_KERNELCONFIG)
655 PATH=${STRICTTMPPATH} \
656 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
657 ${KERNCONFDIR}/${_kernel}
659 cd ${KRNLOBJDIR}/${_kernel}; \
660 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
662 .if !defined(NO_KERNELCONFIG)
664 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
665 ${KERNCONFDIR}/${_kernel}
667 cd ${KRNLOBJDIR}/${_kernel}; \
668 ${MAKE} KERNEL=${INSTKERNNAME} all
670 @echo "--------------------------------------------------------------"
671 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
672 @echo "--------------------------------------------------------------"
678 # Install the kernel defined by INSTALLKERNEL
680 installkernel reinstallkernel:
681 @echo "--------------------------------------------------------------"
682 @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
683 @echo "--------------------------------------------------------------"
684 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
685 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
686 ${IMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
688 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
689 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
695 # Build most of the user binaries on the existing system libs and includes.
698 @echo "--------------------------------------------------------------"
699 @echo ">>> Building programs only"
700 @echo "--------------------------------------------------------------"
701 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
702 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all
708 # Install the binaries built by the 'most' target. This does not include
709 # libraries or include files.
712 @echo "--------------------------------------------------------------"
713 @echo ">>> Installing programs only"
714 @echo "--------------------------------------------------------------"
715 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
716 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install
720 # ------------------------------------------------------------------------
722 # From here onwards are utility targets used by the 'make world' and
723 # related targets. If your 'world' breaks, you may like to try to fix
724 # the problem and manually run the following targets to attempt to
725 # complete the build. Beware, this is *not* guaranteed to work, you
726 # need to have a pretty good grip on the current state of the system
727 # to attempt to manually finish it. If in doubt, 'make world' again.
730 # bootstrap-tools: Build all tools required to build all tools. Note that
731 # order is important in a number of cases and also note that the bootstrap
732 # and build tools stages have access to earlier binaries they themselves
735 # patch: older patch's do not have -i. This program must be built
736 # first so other bootstrap tools that need to apply patches
738 # [x]install: dependancies on various new install features
739 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
740 # envs are not compatible with older objformat binaries.
742 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
743 _strfile= games/fortune/strfile
747 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
748 .for _tool in ${_strfile} \
750 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo bin/test \
751 bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
752 bin/hostname bin/kill \
753 usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \
754 usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \
755 usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \
756 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
757 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
758 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
759 usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
760 usr.bin/cap_mkdb usr.bin/true usr.bin/false \
761 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
763 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
764 usr.sbin/btxld usr.sbin/zic usr.sbin/makewhatis \
765 gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \
766 usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb
767 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
768 cd ${.CURDIR}/${_tool}; \
769 ${MAKE} DIRPRFX=${_tool}/ obj; \
770 ${MAKE} DIRPRFX=${_tool}/ depend; \
771 ${MAKE} DIRPRFX=${_tool}/ all; \
772 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
774 touch ${BTOOLSDEST}/.bootstrap_done
776 # build-tools: Build special purpose build tools.
778 # XXX we may be able to remove or consolidate this into bootstrap-tools
779 # now that we have the native helper (.nx/.no) infrastructure.
781 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
782 _share= share/syscons/scrnmaps
785 .if !defined(NO_GCC34)
786 _gcc34_cross= gnu/usr.bin/cc34
787 _gcc34_tools= gnu/usr.bin/cc34/cc_prep gnu/usr.bin/cc34/cc_tools
789 _gcc41_cross= gnu/usr.bin/cc41
790 _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools
791 .if !defined(NO_GCC44)
792 _gcc44_cross= gnu/usr.bin/cc44
793 _gcc44_tools= gnu/usr.bin/cc44/cc_prep gnu/usr.bin/cc44/cc_tools
795 _custom_cross= libexec/customcc
796 _binutils= gnu/usr.bin/binutils217
798 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
799 !defined(NO_CRYPT) && defined(WANT_KERBEROS)
800 _libkrb5= kerberos5/tools kerberos5/lib/libroken kerberos5/lib/libvers \
801 kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
805 .for _tool in ${_gcc34_tools} ${_gcc41_tools} ${_gcc44_tools} ${_libkrb5} ${_share}
806 ${ECHODIR} "===> ${_tool} (build-tools)"; \
807 cd ${.CURDIR}/${_tool}; \
808 ${MAKE} DIRPRFX=${_tool}/ obj; \
809 ${MAKE} DIRPRFX=${_tool}/ depend; \
810 ${MAKE} DIRPRFX=${_tool}/ all; \
811 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
813 touch ${BTOOLSDEST}/.build_done
816 # cross-tools: Build cross-building tools
818 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
819 _btxld= usr.sbin/btxld
823 .for _tool in ${_btxld} ${_binutils} \
825 ${_gcc34_cross} ${_gcc41_cross} ${_gcc44_cross} ${_custom_cross}
826 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
827 cd ${.CURDIR}/${_tool}; \
828 ${MAKE} DIRPRFX=${_tool}/ obj; \
829 ${MAKE} DIRPRFX=${_tool}/ depend; \
830 ${MAKE} DIRPRFX=${_tool}/ all; \
831 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
833 touch ${CTOOLSDEST}/.cross_done
836 # hierarchy - ensure that all the needed directories are present
839 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs
842 # libraries - build all libraries, and install them under ${DESTDIR}.
844 # The list of libraries with dependents (${_prebuild_libs}) and their
845 # interdependencies (__L) are built automatically by the
846 # ${.CURDIR}/tools/make_libdeps.sh script.
848 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
849 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
852 .if !defined(NO_GCC34)
854 HOST_CCVER=${HOST_CCVER} CCVER=gcc34 \
855 ${MAKE} -f Makefile.inc1 _startup_libs34;
858 HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \
859 ${MAKE} -f Makefile.inc1 _startup_libs41;
860 .if !defined(NO_GCC44)
862 HOST_CCVER=${HOST_CCVER} CCVER=gcc44 \
863 ${MAKE} -f Makefile.inc1 _startup_libs44;
866 ${MAKE} -f Makefile.inc1 _startup_libs; \
867 ${MAKE} -f Makefile.inc1 _prebuild_libs; \
868 ${MAKE} -f Makefile.inc1 _generic_libs;
869 touch ${WORLDDEST}/.libraries_done
871 # These dependencies are not automatically generated:
873 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
874 # shared libraries for ELF. The target for _startup_libsXX is
875 # specifically built using gccXX.
877 _startup_libs34= gnu/lib/gcc34/csu gnu/lib/gcc34/libgcc
878 _startup_libs41= gnu/lib/gcc41/csu gnu/lib/gcc41/libgcc
879 _startup_libs44= gnu/lib/gcc44/csu gnu/lib/gcc44/libgcc
880 _startup_libs= lib/csu lib/libc lib/libc_rtld
882 _prebuild_libs= lib/libbz2 lib/libz
883 _prebuild_libs+= lib/libutil
885 _generic_libs= gnu/lib
887 .if !defined(NO_CRYPT) && defined(WANT_KERBEROS)
888 _prebuild_libs+= kerberos5/tools
889 _prebuild_libs+= kerberos5/lib/libasn1
890 _prebuild_libs+= kerberos5/lib/libgssapi
891 _prebuild_libs+= kerberos5/lib/libkrb5
892 _prebuild_libs+= kerberos5/lib/libroken
893 _generic_libs+= kerberos5/lib
896 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
897 lib/libncurses/libncurses lib/libopie lib/libradius \
898 lib/libsbuf lib/libtacplus lib/libm \
899 lib/libpam lib/libypclnt lib/lib${THREAD_LIB}
901 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
905 .if !defined(NO_CRYPT)
906 .if !defined(NO_OPENSSL)
907 _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
908 .if !defined(NO_OPENSSH)
909 _prebuild_libs+= secure/lib/libssh
910 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
913 _generic_libs+= secure/lib
916 _generic_libs+= usr.bin/lex/lib
918 .for _lib in ${_startup_libs34} ${_startup_libs41} ${_startup_libs44} \
919 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
921 .if exists(${.CURDIR}/${_lib})
922 ${ECHODIR} "===> ${_lib}"; \
923 cd ${.CURDIR}/${_lib}; \
924 ${MAKE} DIRPRFX=${_lib}/ depend; \
925 ${MAKE} DIRPRFX=${_lib}/ all; \
926 ${MAKE} DIRPRFX=${_lib}/ install
930 _startup_libs: ${_startup_libs:S/$/__L/}
931 _startup_libs34: ${_startup_libs34:S/$/__L/}
932 _startup_libs41: ${_startup_libs41:S/$/__L/}
933 _startup_libs44: ${_startup_libs44:S/$/__L/}
934 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
935 _generic_libs: ${_generic_libs:S/$/__L/}
937 # library targets must be ordered because there are inter-library
938 # races (e.g. generation of tconfig.h)
940 .ORDER: ${_startup_libs34:S/$/__L/}
941 .ORDER: ${_startup_libs41:S/$/__L/}
942 .ORDER: ${_startup_libs44:S/$/__L/}
943 .ORDER: ${_startup_libs:S/$/__L/}
944 .ORDER: ${_prebuild_libs:S/$/__L/}
945 .ORDER: ${_generic_libs:S/$/__L/}
947 .for __target in clean cleandepend cleandir obj depend includes
948 .for entry in ${SUBDIR}
949 ${entry}.${__target}__D: .PHONY
950 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
951 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
952 edir=${entry}.${MACHINE_ARCH}; \
953 cd ${.CURDIR}/$${edir}; \
955 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
957 cd ${.CURDIR}/$${edir}; \
959 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
961 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
962 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
964 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
966 # The wmake target is used by /usr/bin/wmake to run make in a
967 # world build environment.
970 @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}'
973 @echo '${WMAKEENV} /bin/sh'
976 @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}'
979 @echo '${BMAKEENV} /bin/sh'
982 @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}'
985 @echo '${TMAKEENV} /bin/sh'
988 @echo '${XMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${XMAKE_ARGS}'
991 @echo '${XMAKEENV} /bin/sh'
993 .include <bsd.subdir.mk>