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.94 2006/11/15 03:27:10 corecode 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 # update - convenient way to update your source tree (eg: sup/cvs)
15 # most - build user commands, no libraries or include files
16 # installmost - install user commands, no libraries or include files
18 # Standard targets (not defined here) are documented in the makefiles in
19 # /usr/share/mk. These include:
20 # obj depend all install clean cleandepend cleanobj
22 # Put initial settings here.
25 # We must do share/info early so that installation of info `dir'
26 # entries works correctly. Do it first since it is less likely to
27 # grow dependencies on include and lib than vice versa.
28 .if exists(${.CURDIR}/share/info)
32 # We must do include and lib early so that the perl *.ph generation
33 # works correctly as it uses the header files installed by this.
34 .if exists(${.CURDIR}/include)
37 .if exists(${.CURDIR}/lib)
40 # This exists simply to ensure that the obj dir hierarchy is
41 # intact for nrelease, allowing the nrelease Makefile's to
42 # reference ${.OBJDIR}.
44 .if exists(${.CURDIR}/nrelease)
48 .if exists(${.CURDIR}/bin)
51 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
54 .if exists(${.CURDIR}/gnu)
57 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
58 !defined(NO_CRYPT) && !defined(NO_OPENSSL) && defined(WANT_KERBEROS)
61 .if exists(${.CURDIR}/libexec)
64 .if exists(${.CURDIR}/sbin)
67 .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
70 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
73 .if exists(${.CURDIR}/sys)
76 .if exists(${.CURDIR}/usr.bin)
79 .if exists(${.CURDIR}/usr.sbin)
83 # etc must be last for "distribute" to work
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 SUP?= /usr/local/bin/cvsup
109 SUPFLAGS?= -g -L 2 -P -
111 SUPFLAGS+= -h ${SUPHOST}
114 .if defined(NO_CLEAN)
118 # Object directory base in primary make. Note that when we rerun make
119 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
120 # subdirectory because the rest of the build system needs it that way.
121 # The original object directory base is saved in OBJTREE.
123 MAKEOBJDIRPREFIX?= /usr/obj
124 OBJTREE?= ${MAKEOBJDIRPREFIX}
126 # Used for stage installs and pathing
128 DESTDIRBASE?= ${OBJTREE}${.CURDIR}
130 # Remove DESTDIR from MAKEFLAGS. It is present in the environment
131 # anyhow, and we need to be able to override it for stage installs
132 .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*}
134 TARGET_ARCH?= ${MACHINE_ARCH}
135 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
138 TARGET?= ${TARGET_ARCH}
141 BUILD_ARCH!= sysctl -n hw.machine_arch
142 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
143 .error To cross-build, set TARGET_ARCH.
147 # BTOOLS (Natively built) All non-cross-development tools that the
148 # main build needs. This includes things like 'mkdir' and 'rm'.
149 # We will not use the native system's exec path once we start
150 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
152 # CTOOLS (Natively built) Cross development tools which are specific
153 # to the target architecture.
155 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
158 # MACHINE Platform Architecture we are buliding on
159 # MACHINE_ARCH Cpu Architecture we are building on
161 # TARGET Platform Architecture we are building for
162 # TARGET_ARCH Cpu Architecture we are building for
164 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
165 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
166 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
168 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
169 # cross-tools stages to augment the existing command path to access newer
170 # versions of certain utilities such as 'patch' that the cross-tools stage
173 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
175 # The strict temporary command path contains all binaries required
176 # by the buildworld system after the cross-tools stage.
178 STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
184 # Building a world goes through the following stages
186 # 1. bootstrap-tool stage [BMAKE]
187 # This stage is responsible for creating programs that
188 # are needed for backward compatibility reasons. They
189 # are not built as cross-tools.
190 # 2. build-tool stage [TMAKE]
191 # This stage is responsible for creating the object
192 # tree and building any tools that are needed during
194 # 3. cross-tool stage [XMAKE]
195 # This stage is responsible for creating any tools that
196 # are needed for cross-builds. A cross-compiler is one
198 # 4. world stage [WMAKE]
199 # This stage actually builds the world.
200 # 5. install stage (optional) [IMAKE]
201 # This stage installs a previously built world.
204 # bootstrap-tool stage
206 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
208 DESTDIR=${BTOOLSDEST} \
209 PATH=${BTOOLSPATH}:${PATH} \
210 INSTALL="sh ${.CURDIR}/tools/install.sh"
212 BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
213 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
218 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
221 PATH=${BTOOLSPATH}:${PATH} \
222 INSTALL="sh ${.CURDIR}/tools/install.sh"
224 TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
225 -DNO_FORTRAN -DNOSHARED
229 # note: TOOLS_PREFIX points to the obj root holding the cross
230 # compiler binaries, while USRDATA_PREFIX points to the obj root
231 # holding the target environment (and also determines where cross-built
232 # libraries, crt*.o, and include files are installed).
234 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
236 DESTDIR=${CTOOLSDEST} \
237 INSTALL="sh ${.CURDIR}/tools/install.sh" \
238 TOOLS_PREFIX=${CTOOLSDEST} \
239 USRDATA_PREFIX=${WORLDDEST} \
240 PATH=${BTOOLSPATH}:${PATH}
242 XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \
243 -DBOOTSTRAPPING -DNOSHARED
245 # world stage, note the strict path and note that TOOLS_PREFIX is left
246 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
247 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
248 # for both binary and library paths, even though it is being compiled to
249 # WORLDDEST. None of the programs in the world stage are ever actually
250 # executed during the buildworld/installworld.
252 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
254 MACHINE_ARCH=${TARGET_ARCH} \
256 OBJFORMAT_PATH=${CTOOLSDEST}
258 WMAKEENV= ${CROSSENV} \
259 DESTDIR=${WORLDDEST} \
260 INSTALL="sh ${.CURDIR}/tools/install.sh" \
261 PATH=${STRICTTMPPATH}
263 WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1
267 IMAKEENV= ${CROSSENV} \
268 PATH=${STRICTTMPPATH}
269 IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1
273 KMAKEENV= ${WMAKEENV}
277 # Attempt to rebuild the entire system, with reasonable chance of
278 # success, regardless of how old your existing system is.
282 @echo "--------------------------------------------------------------"
283 @echo ">>> Rebuilding the temporary build tree"
284 @echo "--------------------------------------------------------------"
285 .if !defined(NOCLEAN)
286 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
288 # XXX - These two can depend on any header file.
289 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
290 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
292 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
293 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
294 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
295 -p ${_dir}/ > /dev/null
296 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
297 -p ${_dir}/usr > /dev/null
299 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
300 -p ${WORLDDEST}/usr/include > /dev/null
301 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
305 @echo "--------------------------------------------------------------"
306 @echo ">>> stage 1: bootstrap tools"
307 @echo "--------------------------------------------------------------"
308 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
311 @echo "--------------------------------------------------------------"
312 @echo ">>> stage 2a: cleaning up the object tree"
313 @echo "--------------------------------------------------------------"
314 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
317 @echo "--------------------------------------------------------------"
318 @echo ">>> stage 2b: rebuilding the object tree"
319 @echo "--------------------------------------------------------------"
320 cd ${.CURDIR}; ${WMAKE} par-obj
323 @echo "--------------------------------------------------------------"
324 @echo ">>> stage 2c: build tools"
325 @echo "--------------------------------------------------------------"
326 cd ${.CURDIR}; ${TMAKE} build-tools
329 @echo "--------------------------------------------------------------"
330 @echo ">>> stage 3: cross tools"
331 @echo "--------------------------------------------------------------"
332 cd ${.CURDIR}; ${XMAKE} cross-tools
335 @echo "--------------------------------------------------------------"
336 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
337 @echo "--------------------------------------------------------------"
338 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
341 @echo "--------------------------------------------------------------"
342 @echo ">>> stage 4b: building libraries"
343 @echo "--------------------------------------------------------------"
344 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
347 @echo "--------------------------------------------------------------"
348 @echo ">>> stage 4c: make dependencies"
349 @echo "--------------------------------------------------------------"
350 cd ${.CURDIR}; ${WMAKE} par-depend
353 @echo "--------------------------------------------------------------"
354 @echo ">>> stage 4d: building everything.."
355 @echo "--------------------------------------------------------------"
356 cd ${.CURDIR}; ${WMAKE} all
358 # note: buildworld no longer depends on _cleanobj because we rm -rf the
359 # entire object tree and built the bootstrap tools in a different location.
361 # buildworld - build everything from scratch
362 # quickworld - skip the bootstrap, build, and cross-build steps
363 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
365 # note: we include _obj in realquickworld to prevent accidental creation
366 # of files in /usr/src.
369 .if !defined(SUBDIR_OVERRIDE)
370 WMAKE_TGTS+= _worldtmp _bootstrap-tools
372 WMAKE_TGTS+= _obj _build-tools
373 .if !defined(SUBDIR_OVERRIDE)
374 WMAKE_TGTS+= _cross-tools
376 WMAKE_TGTS+= _includes _libraries _depend everything
378 buildworld: ${WMAKE_TGTS}
380 quickworld: _obj _includes _libraries _depend everything
382 realquickworld: _obj _includes _libraries everything
384 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
386 .ORDER: ${WMAKE_TGTS}
391 # Checks to be sure system is ready for installworld
394 .if !defined(NO_SENDMAIL)
395 @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
396 @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
398 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
399 @pw usershow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
400 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1)
401 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
402 @pw groupshow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
403 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
404 @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
409 # Distributes everything compiled by a `buildworld'.
413 # Installs everything compiled by a 'buildworld'.
415 distributeworld installworld: installcheck
416 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
421 # If you have a build server, you can NFS mount the source and obj directories
422 # and do a 'make reinstall' on the *client* to install new binaries from the
423 # most recent server build.
426 @echo "--------------------------------------------------------------"
427 @echo ">>> Making hierarchy"
428 @echo "--------------------------------------------------------------"
429 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
431 @echo "--------------------------------------------------------------"
432 @echo ">>> Installing everything.."
433 @echo "--------------------------------------------------------------"
434 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
435 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
437 @echo "--------------------------------------------------------------"
438 @echo ">>> Rebuilding man page indices"
439 @echo "--------------------------------------------------------------"
440 cd ${.CURDIR}/share/man; ${MAKE} makedb
444 @echo "--------------------------------------------------------------"
445 @echo ">>> Distributing everything.."
446 @echo "--------------------------------------------------------------"
447 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
450 # buildkernel, nativekernel, quickkernel, and installkernel
452 # Which kernels to build and/or install is specified by setting
453 # KERNCONF. If not defined a GENERIC kernel is built/installed.
454 # Only the existing (depending TARGET) config files are used
455 # for building kernels and only the first of these is designated
456 # as the one being installed.
458 # You can specify INSTALLSTRIPPED=1 if you wish the installed
459 # kernel and modules to be stripped of its debug info (required
460 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
461 # if you only want to strip the modules of their debug info. These
462 # only apply if you have DEBUG=-g in your kernel config or make line.
464 # Note that we have to use TARGET instead of TARGET_ARCH when
465 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
466 # be set to cross-build, we have to make sure TARGET is set
469 .if !defined(KERNCONF) && defined(KERNEL)
475 INSTKERNNAME?= kernel
477 KRNLSRCDIR= ${.CURDIR}/sys
478 KRNLCONFDIR= ${KRNLSRCDIR}/config
479 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
480 KERNCONFDIR?= ${KRNLCONFDIR}
484 .for _kernel in ${KERNCONF}
485 .if exists(${KERNCONFDIR}/${_kernel})
486 BUILDKERNELS+= ${_kernel}
487 .if empty(INSTALLKERNEL)
488 INSTALLKERNEL= ${_kernel}
493 # kernel version numbers survive rm -rf
495 .for _kernel in ${BUILDKERNELS}
496 .if exists(${KRNLOBJDIR}/${_kernel}/version)
497 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
504 # Builds all kernels defined by BUILDKERNELS.
507 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
508 echo "You must buildworld before buildkernel. If you wish"; \
509 echo "to build a kernel using native tools, config it manually"; \
510 echo "or use the nativekernel target if you are in a rush"; \
515 .for _kernel in ${BUILDKERNELS}
516 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
517 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
518 echo "The kernel was build using buildworld tools which no" ; \
519 echo "longer appear to exist, quickkernel failed!" ; \
526 .if empty(BUILDKERNELS)
527 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
528 @echo ">>> Did you move your kernel configs from i386/conf to config/?"
533 .if defined(KERNWARN)
534 @echo "--------------------------------------------------------------"
535 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
536 @echo "--------------------------------------------------------------"
541 # The buildkernel target rebuilds the specified kernels from scratch
542 # using the crossbuild tools generated by the last buildworld. It is
543 # the safest (but also the most time consuming) way to build a new kernel.
545 buildkernel: bk_tools bk_build_list bk_kernwarn
546 .for _kernel in ${BUILDKERNELS}
547 @echo "--------------------------------------------------------------"
548 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
549 @echo "--------------------------------------------------------------"
550 @echo "===> ${_kernel}"
551 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
552 rm -rf ${KRNLOBJDIR}/${_kernel}
554 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
555 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
556 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
558 mkdir -p ${KRNLOBJDIR}
559 .if !defined(NO_KERNELCONFIG)
561 PATH=${STRICTTMPPATH} \
562 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
563 ${KERNCONFDIR}/${_kernel}
565 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
566 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
568 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
569 cd ${KRNLOBJDIR}/${_kernel}; \
570 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
571 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
572 .if !defined(NO_KERNELDEPEND)
573 cd ${KRNLOBJDIR}/${_kernel}; \
574 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
576 cd ${KRNLOBJDIR}/${_kernel}; \
577 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
578 @echo "--------------------------------------------------------------"
579 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
580 @echo "--------------------------------------------------------------"
583 # The nativekernel target rebuilds the specified kernels from scratch
584 # using the system's standard compiler rather than using the crossbuild
585 # tools generated by the last buildworld. This is fairly safe if your
586 # system is reasonable up-to-date.
588 nativekernel: bk_build_list bk_kernwarn
589 .for _kernel in ${BUILDKERNELS}
590 @echo "--------------------------------------------------------------"
591 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
592 @echo "--------------------------------------------------------------"
593 @echo "===> ${_kernel}"
594 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
595 rm -rf ${KRNLOBJDIR}/${_kernel}
597 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
598 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
599 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
601 mkdir -p ${KRNLOBJDIR}
602 .if !defined(NO_KERNELCONFIG)
604 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
605 ${KERNCONFDIR}/${_kernel}
607 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
608 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
610 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
611 cd ${KRNLOBJDIR}/${_kernel}; \
612 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
613 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
614 .if !defined(NO_KERNELDEPEND)
615 cd ${KRNLOBJDIR}/${_kernel}; \
616 ${MAKE} KERNEL=${INSTKERNNAME} depend
618 cd ${KRNLOBJDIR}/${_kernel}; \
619 ${MAKE} KERNEL=${INSTKERNNAME} all
620 @echo "--------------------------------------------------------------"
621 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
622 @echo "--------------------------------------------------------------"
625 # The quickkernel target rebuilds the specified kernels as quickly
626 # as possible. It will use the native tools or the buildworld cross tools
627 # based on whether the kernel was originally generated via buildkernel or
628 # nativekernel. Config is rerun but the object hierarchy is not rebuilt,
629 # nor is the make depend step run.
631 quickkernel: maybe_bk_tools bk_build_list bk_kernwarn
632 .for _kernel in ${BUILDKERNELS}
633 @echo "--------------------------------------------------------------"
634 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
635 @echo "--------------------------------------------------------------"
636 @echo "===> ${_kernel}"
637 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
638 .if !defined(NO_KERNELCONFIG)
640 PATH=${STRICTTMPPATH} \
641 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
642 ${KERNCONFDIR}/${_kernel}
644 cd ${KRNLOBJDIR}/${_kernel}; \
645 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
647 .if !defined(NO_KERNELCONFIG)
649 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
650 ${KERNCONFDIR}/${_kernel}
652 cd ${KRNLOBJDIR}/${_kernel}; \
653 ${MAKE} KERNEL=${INSTKERNNAME} all
655 @echo "--------------------------------------------------------------"
656 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
657 @echo "--------------------------------------------------------------"
663 # Install the kernel defined by INSTALLKERNEL
665 installkernel reinstallkernel:
666 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
667 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
668 ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
670 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
671 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
677 # Update the source tree, by running sup and/or running cvs to update to the
681 .if defined(SUP_UPDATE)
682 @echo "--------------------------------------------------------------"
683 @echo ">>> Running ${SUP}"
684 @echo "--------------------------------------------------------------"
686 @${SUP} ${SUPFLAGS} ${SUPFILE}
688 .if defined(SUPFILE1)
689 @${SUP} ${SUPFLAGS} ${SUPFILE1}
691 .if defined(SUPFILE2)
692 @${SUP} ${SUPFLAGS} ${SUPFILE2}
694 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
695 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
697 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
698 @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
701 .if defined(CVS_UPDATE)
702 @echo "--------------------------------------------------------------"
703 @echo ">>> Updating ${.CURDIR} from cvs repository `cat ${.CURDIR}/CVS/Root`"
704 @echo "--------------------------------------------------------------"
706 cd ${.CURDIR}; cvs -q update -P -d
712 # Build most of the user binaries on the existing system libs and includes.
715 @echo "--------------------------------------------------------------"
716 @echo ">>> Building programs only"
717 @echo "--------------------------------------------------------------"
718 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
719 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all
725 # Install the binaries built by the 'most' target. This does not include
726 # libraries or include files.
729 @echo "--------------------------------------------------------------"
730 @echo ">>> Installing programs only"
731 @echo "--------------------------------------------------------------"
732 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
733 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install
737 # ------------------------------------------------------------------------
739 # From here onwards are utility targets used by the 'make world' and
740 # related targets. If your 'world' breaks, you may like to try to fix
741 # the problem and manually run the following targets to attempt to
742 # complete the build. Beware, this is *not* guaranteed to work, you
743 # need to have a pretty good grip on the current state of the system
744 # to attempt to manually finish it. If in doubt, 'make world' again.
747 # bootstrap-tools: Build all tools required to build all tools. Note that
748 # order is important in a number of cases and also note that the bootstrap
749 # and build tools stages have access to earlier binaries they themselves
752 # patch: older patch's do not have -i. This program must be built
753 # first so other bootstrap tools that need to apply patches
755 # [x]install: dependancies on various new install features
756 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
757 # envs are not compatible with older objformat binaries.
759 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
760 _strfile= games/fortune/strfile
764 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
765 .for _tool in ${_strfile} \
767 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo bin/test \
768 bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
769 bin/hostname bin/kill \
770 usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \
771 usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \
772 usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \
773 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
774 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
775 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
776 usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
777 usr.bin/vi usr.bin/cap_mkdb usr.bin/vgrind usr.bin/true usr.bin/false \
778 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
780 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
781 usr.sbin/btxld usr.sbin/pwd_mkdb usr.sbin/zic usr.sbin/makewhatis \
782 gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \
783 usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb
784 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
785 cd ${.CURDIR}/${_tool}; \
786 ${MAKE} DIRPRFX=${_tool}/ obj; \
787 ${MAKE} DIRPRFX=${_tool}/ depend; \
788 ${MAKE} DIRPRFX=${_tool}/ all; \
789 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
791 touch ${BTOOLSDEST}/.bootstrap_done
793 # build-tools: Build special purpose build tools.
795 # XXX we may be able to remove or consolidate this into bootstrap-tools
796 # now that we have the native helper (.nx/.no) infrastructure.
798 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
799 _games= games/adventure games/hack games/phantasia
802 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
803 _share= share/syscons/scrnmaps
806 _gcc34_cross= gnu/usr.bin/cc34
807 _gcc34_tools= gnu/usr.bin/cc34/cc_prep gnu/usr.bin/cc34/cc_tools
808 .if defined(WANT_GCC40)
809 _gcc40_cross= gnu/usr.bin/cc40
810 _gcc40_tools= gnu/usr.bin/cc40/cc_prep gnu/usr.bin/cc40/cc_tools
812 .if defined(WANT_GCC41)
813 _gcc41_cross= gnu/usr.bin/cc41
814 _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools
816 _binutils= gnu/usr.bin/binutils215
818 .if !defined(NO_FORTRAN)
819 _fortran= gnu/usr.bin/cc34/f771
822 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
823 !defined(NO_CRYPT) && defined(WANT_KERBEROS)
824 _libkrb5= kerberos5/tools kerberos5/lib/libroken kerberos5/lib/libvers \
825 kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
829 .for _tool in ${_gcc34_tools} ${_gcc40_tools} ${_gcc41_tools} ${_fortran} ${_libkrb5} ${_share}
830 ${ECHODIR} "===> ${_tool} (build-tools)"; \
831 cd ${.CURDIR}/${_tool}; \
832 ${MAKE} DIRPRFX=${_tool}/ obj; \
833 ${MAKE} DIRPRFX=${_tool}/ depend; \
834 ${MAKE} DIRPRFX=${_tool}/ all; \
835 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
837 touch ${BTOOLSDEST}/.build_done
840 # cross-tools: Build cross-building tools
842 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
843 _btxld= usr.sbin/btxld
847 .for _tool in ${_btxld} ${_binutils} \
848 usr.bin/objformat usr.sbin/crunch/crunchide \
849 ${_gcc34_cross} ${_gcc40_cross} ${_gcc41_cross}
850 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
851 cd ${.CURDIR}/${_tool}; \
852 ${MAKE} DIRPRFX=${_tool}/ obj; \
853 ${MAKE} DIRPRFX=${_tool}/ depend; \
854 ${MAKE} DIRPRFX=${_tool}/ all; \
855 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
857 touch ${CTOOLSDEST}/.cross_done
860 # hierarchy - ensure that all the needed directories are present
863 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs
866 # libraries - build all libraries, and install them under ${DESTDIR}.
868 # The list of libraries with dependents (${_prebuild_libs}) and their
869 # interdependencies (__L) are built automatically by the
870 # ${.CURDIR}/tools/make_libdeps.sh script.
872 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
873 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
877 HOST_CCVER=${HOST_CCVER} CCVER=gcc34 \
878 ${MAKE} -f Makefile.inc1 _startup_libs34;
879 .if defined(WANT_GCC40)
881 HOST_CCVER=${HOST_CCVER} CCVER=gcc40 \
882 ${MAKE} -f Makefile.inc1 _startup_libs40;
884 .if defined(WANT_GCC41)
886 HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \
887 ${MAKE} -f Makefile.inc1 _startup_libs41;
890 ${MAKE} -f Makefile.inc1 _startup_libs; \
891 ${MAKE} -f Makefile.inc1 _prebuild_libs; \
892 ${MAKE} -f Makefile.inc1 _generic_libs;
893 touch ${WORLDDEST}/.libraries_done
895 # These dependencies are not automatically generated:
897 # gnu/lib/${CCVER}/libgcc and lib/csu must be built before all
898 # shared libraries for ELF. The target for _startup_libs34 is
899 # specifically built using gcc34. Same goes for _startup_libs40.
901 _startup_libs34= gnu/lib/gcc34/libgcc
902 _startup_libs40= gnu/lib/gcc40/libgcc
903 _startup_libs41= gnu/lib/gcc41/libgcc
904 _startup_libs= lib/csu/${MACHINE_ARCH}
905 _startup_libs+= lib/csu/common lib/libc lib/libc_rtld
907 _prebuild_libs= lib/libarchive
908 _prebuild_libs+= lib/libutil
910 _generic_libs= gnu/lib
912 .if !defined(NO_CRYPT) && defined(WANT_KERBEROS)
913 _prebuild_libs+= kerberos5/tools
914 _prebuild_libs+= kerberos5/lib/libasn1
915 _prebuild_libs+= kerberos5/lib/libgssapi
916 _prebuild_libs+= kerberos5/lib/libkrb5
917 _prebuild_libs+= kerberos5/lib/libroken
918 _generic_libs+= kerberos5/lib
921 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
922 lib/libncurses/libncurses lib/libopie lib/libradius \
923 lib/libskey lib/libtacplus lib/libz lib/libm lib/libpam
925 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
926 lib/libskey__L: lib/libcrypt__L lib/libmd__L
930 .if !defined(NO_CRYPT)
931 .if !defined(NO_OPENSSL)
932 _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
933 .if !defined(NO_OPENSSH)
934 _prebuild_libs+= secure/lib/libssh
935 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
938 _generic_libs+= secure/lib
941 _generic_libs+= usr.bin/lex/lib
943 .for _lib in ${_startup_libs34} ${_startup_libs40} ${_startup_libs41} \
944 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
946 .if exists(${.CURDIR}/${_lib})
947 ${ECHODIR} "===> ${_lib}"; \
948 cd ${.CURDIR}/${_lib}; \
949 ${MAKE} DIRPRFX=${_lib}/ depend; \
950 ${MAKE} DIRPRFX=${_lib}/ all; \
951 ${MAKE} DIRPRFX=${_lib}/ install
955 _startup_libs: ${_startup_libs:S/$/__L/}
956 _startup_libs34: ${_startup_libs34:S/$/__L/}
957 _startup_libs40: ${_startup_libs40:S/$/__L/}
958 _startup_libs41: ${_startup_libs41:S/$/__L/}
959 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
960 _generic_libs: ${_generic_libs:S/$/__L/}
962 # library targets must be ordered because there are inter-library
963 # races (e.g. generation of tconfig.h)
965 .ORDER: ${_startup_libs34:S/$/__L/}
966 .ORDER: ${_startup_libs40:S/$/__L/}
967 .ORDER: ${_startup_libs41:S/$/__L/}
968 .ORDER: ${_startup_libs:S/$/__L/}
969 .ORDER: ${_prebuild_libs:S/$/__L/}
970 .ORDER: ${_generic_libs:S/$/__L/}
972 .for __target in clean cleandepend cleandir obj depend includes
973 .for entry in ${SUBDIR}
974 ${entry}.${__target}__D: .PHONY
975 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
976 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
977 edir=${entry}.${MACHINE_ARCH}; \
978 cd ${.CURDIR}/$${edir}; \
980 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
982 cd ${.CURDIR}/$${edir}; \
984 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
986 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
987 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
989 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
991 # The wmake target is used by /usr/bin/wmake to run make in a
992 # world build environment.
995 @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}'
998 @echo '${WMAKEENV} /bin/sh'
1001 @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}'
1004 @echo '${BMAKEENV} /bin/sh'
1007 @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}'
1010 @echo '${TMAKEENV} /bin/sh'
1012 .include <bsd.subdir.mk>