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.113 2008/01/14 12:39:27 matthias 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 # Backwards compatibility with older make's or older sys.mk's. make
148 # is expected to define MACHINE_PLATFORM.
150 .if !defined(MACHINE_PLATFORM)
151 MACHINE_PLATFORM= pc32
154 # XXX this is ugly and we need to come up with a nicer solution
155 .if !defined(TARGET_PLATFORM)
156 .if ${TARGET_ARCH} == "i386"
157 TARGET_PLATFORM= pc32
158 .elif ${TARGET_ARCH} == "amd64"
159 TARGET_PLATFORM= pc64
161 .error Unknown target architecture.
165 THREAD_LIB?= thread_xu
166 .if ${THREAD_LIB} == "c_r"
167 .if defined(NO_LIBC_R)
168 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
172 # BTOOLS (Natively built) All non-cross-development tools that the
173 # main build needs. This includes things like 'mkdir' and 'rm'.
174 # We will not use the native system's exec path once we start
175 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
177 # CTOOLS (Natively built) Cross development tools which are specific
178 # to the target architecture.
180 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
183 # MACHINE_PLATFORM Platform Architecture we are building on
184 # MACHINE Machine Architecture (usually the same as MACHINE_ARCH)
185 # MACHINE_ARCH Cpu Architecture we are building on
187 # TARGET_PLATFORM Platform Architecture we are building for
188 # TARGET Machine Architecture we are building for
189 # TARGET_ARCH Cpu Architecture we are building for
191 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
192 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
193 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
195 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
196 # cross-tools stages to augment the existing command path to access newer
197 # versions of certain utilities such as 'patch' that the cross-tools stage
200 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
202 # The strict temporary command path contains all binaries required
203 # by the buildworld system after the cross-tools stage.
205 STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
211 # Building a world goes through the following stages
213 # 1. bootstrap-tool stage [BMAKE]
214 # This stage is responsible for creating programs that
215 # are needed for backward compatibility reasons. They
216 # are not built as cross-tools.
217 # 2. build-tool stage [TMAKE]
218 # This stage is responsible for creating the object
219 # tree and building any tools that are needed during
221 # 3. cross-tool stage [XMAKE]
222 # This stage is responsible for creating any tools that
223 # are needed for cross-builds. A cross-compiler is one
225 # 4. world stage [WMAKE]
226 # This stage actually builds the world.
227 # 5. install stage (optional) [IMAKE]
228 # This stage installs a previously built world.
231 # bootstrap-tool stage
233 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
235 DESTDIR=${BTOOLSDEST} \
236 PATH=${BTOOLSPATH}:${PATH} \
237 INSTALL="sh ${.CURDIR}/tools/install.sh"
239 BMAKE= ${BMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
240 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
245 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
248 PATH=${BTOOLSPATH}:${PATH} \
249 INSTALL="sh ${.CURDIR}/tools/install.sh"
251 TMAKE= ${TMAKEENV} ${MAKE} -f Makefile.inc1 -DBOOTSTRAPPING \
252 -DNO_FORTRAN -DNOSHARED
256 # note: TOOLS_PREFIX points to the obj root holding the cross
257 # compiler binaries, while USRDATA_PREFIX points to the obj root
258 # holding the target environment (and also determines where cross-built
259 # libraries, crt*.o, and include files are installed).
261 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
263 DESTDIR=${CTOOLSDEST} \
264 INSTALL="sh ${.CURDIR}/tools/install.sh" \
265 TOOLS_PREFIX=${CTOOLSDEST} \
266 USRDATA_PREFIX=${WORLDDEST} \
267 PATH=${BTOOLSPATH}:${PATH}
269 XMAKE= ${XMAKEENV} ${MAKE} -f Makefile.inc1 -DNO_FORTRAN -DNO_GDB \
270 -DBOOTSTRAPPING -DNOSHARED
272 # world stage, note the strict path and note that TOOLS_PREFIX is left
273 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
274 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
275 # for both binary and library paths, even though it is being compiled to
276 # WORLDDEST. None of the programs in the world stage are ever actually
277 # executed during the buildworld/installworld.
279 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
281 MACHINE_ARCH=${TARGET_ARCH} \
283 MACHINE_PLATFORM=${TARGET_PLATFORM} \
284 OBJFORMAT_PATH=${CTOOLSDEST}
286 WMAKEENV= ${CROSSENV} \
287 DESTDIR=${WORLDDEST} \
288 INSTALL="sh ${.CURDIR}/tools/install.sh" \
289 PATH=${STRICTTMPPATH}
291 WMAKE= ${WMAKEENV} ${MAKE} -f Makefile.inc1
295 IMAKEENV= ${CROSSENV} \
296 PATH=${STRICTTMPPATH}
297 IMAKE= ${IMAKEENV} ${MAKE} -f Makefile.inc1
301 KMAKEENV= ${WMAKEENV}
305 # Attempt to rebuild the entire system, with reasonable chance of
306 # success, regardless of how old your existing system is.
310 @echo "--------------------------------------------------------------"
311 @echo ">>> Rebuilding the temporary build tree"
312 @echo "--------------------------------------------------------------"
313 .if !defined(NOCLEAN)
314 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
316 # XXX - These two can depend on any header file.
317 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
318 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
320 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
321 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
322 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
323 -p ${_dir}/ > /dev/null
324 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
325 -p ${_dir}/usr > /dev/null
327 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
328 -p ${WORLDDEST}/usr/include > /dev/null
329 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
333 @echo "--------------------------------------------------------------"
334 @echo ">>> stage 1: bootstrap tools"
335 @echo "--------------------------------------------------------------"
336 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
339 @echo "--------------------------------------------------------------"
340 @echo ">>> stage 2a: cleaning up the object tree"
341 @echo "--------------------------------------------------------------"
342 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
345 @echo "--------------------------------------------------------------"
346 @echo ">>> stage 2b: rebuilding the object tree"
347 @echo "--------------------------------------------------------------"
348 cd ${.CURDIR}; ${WMAKE} par-obj
351 @echo "--------------------------------------------------------------"
352 @echo ">>> stage 2c: build tools"
353 @echo "--------------------------------------------------------------"
354 cd ${.CURDIR}; ${TMAKE} build-tools
357 @echo "--------------------------------------------------------------"
358 @echo ">>> stage 3: cross tools"
359 @echo "--------------------------------------------------------------"
360 cd ${.CURDIR}; ${XMAKE} cross-tools
363 @echo "--------------------------------------------------------------"
364 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
365 @echo "--------------------------------------------------------------"
366 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
369 @echo "--------------------------------------------------------------"
370 @echo ">>> stage 4b: building libraries"
371 @echo "--------------------------------------------------------------"
372 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
375 @echo "--------------------------------------------------------------"
376 @echo ">>> stage 4c: make dependencies"
377 @echo "--------------------------------------------------------------"
378 cd ${.CURDIR}; ${WMAKE} par-depend
381 @echo "--------------------------------------------------------------"
382 @echo ">>> stage 4d: building everything.."
383 @echo "--------------------------------------------------------------"
384 cd ${.CURDIR}; ${WMAKE} all
386 # note: buildworld no longer depends on _cleanobj because we rm -rf the
387 # entire object tree and built the bootstrap tools in a different location.
389 # buildworld - build everything from scratch
390 # quickworld - skip the bootstrap, build, and cross-build steps
391 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
393 # note: we include _obj in realquickworld to prevent accidental creation
394 # of files in /usr/src.
397 .if !defined(SUBDIR_OVERRIDE)
398 WMAKE_TGTS+= _worldtmp _bootstrap-tools
400 WMAKE_TGTS+= _obj _build-tools
401 .if !defined(SUBDIR_OVERRIDE)
402 WMAKE_TGTS+= _cross-tools
404 WMAKE_TGTS+= _includes _libraries _depend everything
406 buildworld: ${WMAKE_TGTS}
408 quickworld: _obj _includes _libraries _depend everything
410 realquickworld: _obj _includes _libraries everything
412 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
414 .ORDER: ${WMAKE_TGTS}
419 # Checks to be sure system is ready for installworld
422 .if !defined(NO_SENDMAIL)
423 @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
424 @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; exit 1)
426 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
427 @pw usershow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
428 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1)
429 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1)
430 @pw groupshow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1)
431 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
432 @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
436 # Distributes everything compiled by a `buildworld'.
440 # Installs everything compiled by a 'buildworld'.
442 distributeworld installworld: installcheck
443 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
444 install -o root -g wheel -m 600 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/
449 # If you have a build server, you can NFS mount the source and obj directories
450 # and do a 'make reinstall' on the *client* to install new binaries from the
451 # most recent server build.
454 @echo "--------------------------------------------------------------"
455 @echo ">>> Making hierarchy"
456 @echo "--------------------------------------------------------------"
457 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 hierarchy
459 @echo "--------------------------------------------------------------"
460 @echo ">>> Installing everything.."
461 @echo "--------------------------------------------------------------"
462 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
463 .if !defined(NOMAN) && !defined(NO_MAKEDB_RUN)
465 @echo "--------------------------------------------------------------"
466 @echo ">>> Rebuilding man page indices"
467 @echo "--------------------------------------------------------------"
468 cd ${.CURDIR}/share/man; ${MAKE} makedb
472 @echo "--------------------------------------------------------------"
473 @echo ">>> Distributing everything.."
474 @echo "--------------------------------------------------------------"
475 cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 distribute
478 # buildkernel, nativekernel, quickkernel, and installkernel
480 # Which kernels to build and/or install is specified by setting
481 # KERNCONF. If not defined a GENERIC kernel is built/installed.
482 # Only the existing (depending TARGET) config files are used
483 # for building kernels and only the first of these is designated
484 # as the one being installed.
486 # You can specify INSTALLSTRIPPED=1 if you wish the installed
487 # kernel and modules to be stripped of its debug info (required
488 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
489 # if you only want to strip the modules of their debug info. These
490 # only apply if you have DEBUG=-g in your kernel config or make line.
492 # Note that we have to use TARGET instead of TARGET_ARCH when
493 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
494 # be set to cross-build, we have to make sure TARGET is set
497 .if !defined(KERNCONF) && defined(KERNEL)
503 INSTKERNNAME?= kernel
505 KRNLSRCDIR= ${.CURDIR}/sys
506 KRNLCONFDIR= ${KRNLSRCDIR}/config
507 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
508 KERNCONFDIR?= ${KRNLCONFDIR}
512 .for _kernel in ${KERNCONF}
513 .if exists(${KERNCONFDIR}/${_kernel})
514 BUILDKERNELS+= ${_kernel}
515 .if empty(INSTALLKERNEL)
516 INSTALLKERNEL= ${_kernel}
521 # kernel version numbers survive rm -rf
523 .for _kernel in ${BUILDKERNELS}
524 .if exists(${KRNLOBJDIR}/${_kernel}/version)
525 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
532 # Builds all kernels defined by BUILDKERNELS.
535 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
536 echo "You must buildworld before buildkernel. If you wish"; \
537 echo "to build a kernel using native tools, config it manually"; \
538 echo "or use the nativekernel target if you are in a rush"; \
543 .for _kernel in ${BUILDKERNELS}
544 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
545 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
546 echo "The kernel was build using buildworld tools which no" ; \
547 echo "longer appear to exist, quickkernel failed!" ; \
554 .if empty(BUILDKERNELS)
555 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
556 @echo ">>> Did you move your kernel configs from i386/conf to config/?"
561 .if defined(KERNWARN)
562 @echo "--------------------------------------------------------------"
563 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
564 @echo "--------------------------------------------------------------"
569 # The buildkernel target rebuilds the specified kernels from scratch
570 # using the crossbuild tools generated by the last buildworld. It is
571 # the safest (but also the most time consuming) way to build a new kernel.
573 buildkernel: bk_tools bk_build_list bk_kernwarn
574 .for _kernel in ${BUILDKERNELS}
575 @echo "--------------------------------------------------------------"
576 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
577 @echo "--------------------------------------------------------------"
578 @echo "===> ${_kernel}"
579 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
580 rm -rf ${KRNLOBJDIR}/${_kernel}
582 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
583 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
584 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
586 mkdir -p ${KRNLOBJDIR}
587 .if !defined(NO_KERNELCONFIG)
589 PATH=${STRICTTMPPATH} \
590 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
591 ${KERNCONFDIR}/${_kernel}
593 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
594 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
596 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
597 cd ${KRNLOBJDIR}/${_kernel}; \
598 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
599 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
600 .if !defined(NO_KERNELDEPEND)
601 cd ${KRNLOBJDIR}/${_kernel}; \
602 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} depend
604 cd ${KRNLOBJDIR}/${_kernel}; \
605 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
606 @echo "--------------------------------------------------------------"
607 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
608 @echo "--------------------------------------------------------------"
611 # The nativekernel target rebuilds the specified kernels from scratch
612 # using the system's standard compiler rather than using the crossbuild
613 # tools generated by the last buildworld. This is fairly safe if your
614 # system is reasonable up-to-date.
616 nativekernel: bk_build_list bk_kernwarn
617 .for _kernel in ${BUILDKERNELS}
618 @echo "--------------------------------------------------------------"
619 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
620 @echo "--------------------------------------------------------------"
621 @echo "===> ${_kernel}"
622 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
623 rm -rf ${KRNLOBJDIR}/${_kernel}
625 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
626 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
627 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
629 mkdir -p ${KRNLOBJDIR}
630 .if !defined(NO_KERNELCONFIG)
632 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
633 ${KERNCONFDIR}/${_kernel}
635 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
636 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
638 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
639 cd ${KRNLOBJDIR}/${_kernel}; \
640 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
641 ${MAKE} -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
642 .if !defined(NO_KERNELDEPEND)
643 cd ${KRNLOBJDIR}/${_kernel}; \
644 ${MAKE} KERNEL=${INSTKERNNAME} depend
646 cd ${KRNLOBJDIR}/${_kernel}; \
647 ${MAKE} KERNEL=${INSTKERNNAME} all
648 @echo "--------------------------------------------------------------"
649 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
650 @echo "--------------------------------------------------------------"
653 # The quickkernel target rebuilds the specified kernels as quickly
654 # as possible. It will use the native tools or the buildworld cross tools
655 # based on whether the kernel was originally generated via buildkernel or
656 # nativekernel. Config is rerun but the object hierarchy is not rebuilt,
657 # nor is the make depend step run.
659 quickkernel: maybe_bk_tools bk_build_list bk_kernwarn
660 .for _kernel in ${BUILDKERNELS}
661 @echo "--------------------------------------------------------------"
662 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
663 @echo "--------------------------------------------------------------"
664 @echo "===> ${_kernel}"
665 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
666 .if !defined(NO_KERNELCONFIG)
668 PATH=${STRICTTMPPATH} \
669 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
670 ${KERNCONFDIR}/${_kernel}
672 cd ${KRNLOBJDIR}/${_kernel}; \
673 ${KMAKEENV} ${MAKE} KERNEL=${INSTKERNNAME} all
675 .if !defined(NO_KERNELCONFIG)
677 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
678 ${KERNCONFDIR}/${_kernel}
680 cd ${KRNLOBJDIR}/${_kernel}; \
681 ${MAKE} KERNEL=${INSTKERNNAME} all
683 @echo "--------------------------------------------------------------"
684 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
685 @echo "--------------------------------------------------------------"
691 # Install the kernel defined by INSTALLKERNEL
693 installkernel reinstallkernel:
694 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
695 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
696 ${CROSSENV} ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
698 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
699 ${MAKE} KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
705 # Update the source tree, by running sup and/or running cvs to update to the
709 .if defined(SUP_UPDATE)
710 @echo "--------------------------------------------------------------"
711 @echo ">>> Running ${SUP}"
712 @echo "--------------------------------------------------------------"
714 @${SUP} ${SUPFLAGS} ${SUPFILE}
716 .if defined(SUPFILE1)
717 @${SUP} ${SUPFLAGS} ${SUPFILE1}
719 .if defined(SUPFILE2)
720 @${SUP} ${SUPFLAGS} ${SUPFILE2}
722 .if defined(PORTSSUPFILE) && !defined(NO_PORTSUPDATE)
723 @${SUP} ${SUPFLAGS} ${PORTSSUPFILE}
725 .if defined(DOCSUPFILE) && !defined(NO_DOCUPDATE)
726 @${SUP} ${SUPFLAGS} ${DOCSUPFILE}
729 .if defined(CVS_UPDATE)
730 @echo "--------------------------------------------------------------"
731 @echo ">>> Updating ${.CURDIR} from cvs repository `cat ${.CURDIR}/CVS/Root`"
732 @echo "--------------------------------------------------------------"
734 cd ${.CURDIR}; cvs -q update -P -d
740 # Build most of the user binaries on the existing system libs and includes.
743 @echo "--------------------------------------------------------------"
744 @echo ">>> Building programs only"
745 @echo "--------------------------------------------------------------"
746 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
747 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ all
753 # Install the binaries built by the 'most' target. This does not include
754 # libraries or include files.
757 @echo "--------------------------------------------------------------"
758 @echo ">>> Installing programs only"
759 @echo "--------------------------------------------------------------"
760 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
761 cd ${.CURDIR}/${_dir}; ${MAKE} DIRPRFX=${_dir}/ install
765 # ------------------------------------------------------------------------
767 # From here onwards are utility targets used by the 'make world' and
768 # related targets. If your 'world' breaks, you may like to try to fix
769 # the problem and manually run the following targets to attempt to
770 # complete the build. Beware, this is *not* guaranteed to work, you
771 # need to have a pretty good grip on the current state of the system
772 # to attempt to manually finish it. If in doubt, 'make world' again.
775 # bootstrap-tools: Build all tools required to build all tools. Note that
776 # order is important in a number of cases and also note that the bootstrap
777 # and build tools stages have access to earlier binaries they themselves
780 # patch: older patch's do not have -i. This program must be built
781 # first so other bootstrap tools that need to apply patches
783 # [x]install: dependancies on various new install features
784 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
785 # envs are not compatible with older objformat binaries.
787 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
788 _strfile= games/fortune/strfile
792 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
793 .for _tool in ${_strfile} \
795 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo bin/test \
796 bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
797 bin/hostname bin/kill \
798 usr.bin/yacc usr.bin/colldef usr.bin/uudecode usr.bin/xinstall \
799 usr.bin/m4 usr.bin/rpcgen usr.bin/make usr.bin/awk usr.bin/stat \
800 usr.bin/find usr.bin/lex usr.bin/sed usr.bin/uname usr.bin/touch \
801 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
802 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
803 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
804 usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
805 usr.bin/cap_mkdb usr.bin/true usr.bin/false \
806 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
808 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
809 usr.sbin/btxld usr.sbin/pwd_mkdb usr.sbin/zic usr.sbin/makewhatis \
810 gnu/usr.bin/texinfo gnu/usr.bin/grep gnu/usr.bin/sort \
811 usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb
812 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
813 cd ${.CURDIR}/${_tool}; \
814 ${MAKE} DIRPRFX=${_tool}/ obj; \
815 ${MAKE} DIRPRFX=${_tool}/ depend; \
816 ${MAKE} DIRPRFX=${_tool}/ all; \
817 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
819 touch ${BTOOLSDEST}/.bootstrap_done
821 # build-tools: Build special purpose build tools.
823 # XXX we may be able to remove or consolidate this into bootstrap-tools
824 # now that we have the native helper (.nx/.no) infrastructure.
826 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
827 _share= share/syscons/scrnmaps
830 .if !defined(NO_GCC34)
831 _gcc34_cross= gnu/usr.bin/cc34
832 _gcc34_tools= gnu/usr.bin/cc34/cc_prep gnu/usr.bin/cc34/cc_tools
834 _gcc41_cross= gnu/usr.bin/cc41
835 _gcc41_tools= gnu/usr.bin/cc41/cc_prep gnu/usr.bin/cc41/cc_tools
836 _binutils= gnu/usr.bin/binutils217
838 .if !defined(NO_FORTRAN)
839 _fortran= gnu/usr.bin/cc34/f771
842 .if exists(${.CURDIR}/kerberos5) && exists(${.CURDIR}/crypto) && \
843 !defined(NO_CRYPT) && defined(WANT_KERBEROS)
844 _libkrb5= kerberos5/tools kerberos5/lib/libroken kerberos5/lib/libvers \
845 kerberos5/lib/libasn1 kerberos5/lib/libhdb kerberos5/lib/libsl
849 .for _tool in ${_gcc34_tools} ${_gcc41_tools} ${_fortran} ${_libkrb5} ${_share}
850 ${ECHODIR} "===> ${_tool} (build-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=${BTOOLSDEST} install
857 touch ${BTOOLSDEST}/.build_done
860 # cross-tools: Build cross-building tools
862 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
863 _btxld= usr.sbin/btxld
867 .for _tool in ${_btxld} ${_binutils} \
868 usr.bin/objformat usr.sbin/crunch/crunchide \
869 ${_gcc34_cross} ${_gcc41_cross}
870 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
871 cd ${.CURDIR}/${_tool}; \
872 ${MAKE} DIRPRFX=${_tool}/ obj; \
873 ${MAKE} DIRPRFX=${_tool}/ depend; \
874 ${MAKE} DIRPRFX=${_tool}/ all; \
875 ${MAKE} DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
877 touch ${CTOOLSDEST}/.cross_done
880 # hierarchy - ensure that all the needed directories are present
883 cd ${.CURDIR}/etc; ${MAKE} distrib-dirs
886 # libraries - build all libraries, and install them under ${DESTDIR}.
888 # The list of libraries with dependents (${_prebuild_libs}) and their
889 # interdependencies (__L) are built automatically by the
890 # ${.CURDIR}/tools/make_libdeps.sh script.
892 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
893 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
896 .if !defined(NO_GCC34)
898 HOST_CCVER=${HOST_CCVER} CCVER=gcc34 \
899 ${MAKE} -f Makefile.inc1 _startup_libs34;
902 HOST_CCVER=${HOST_CCVER} CCVER=gcc41 \
903 ${MAKE} -f Makefile.inc1 _startup_libs41;
905 ${MAKE} -f Makefile.inc1 _startup_libs; \
906 ${MAKE} -f Makefile.inc1 _prebuild_libs; \
907 ${MAKE} -f Makefile.inc1 _generic_libs;
908 touch ${WORLDDEST}/.libraries_done
910 # These dependencies are not automatically generated:
912 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
913 # shared libraries for ELF. The target for _startup_libs34 is
914 # specifically built using gcc34. Same goes for _startup_libs41.
916 _startup_libs34= gnu/lib/gcc34/csu gnu/lib/gcc34/libgcc
917 _startup_libs41= gnu/lib/gcc41/csu gnu/lib/gcc41/libgcc
918 _startup_libs= lib/libc lib/libc_rtld
920 _prebuild_libs= lib/libarchive
921 _prebuild_libs+= lib/libutil
923 _generic_libs= gnu/lib
925 .if !defined(NO_CRYPT) && defined(WANT_KERBEROS)
926 _prebuild_libs+= kerberos5/tools
927 _prebuild_libs+= kerberos5/lib/libasn1
928 _prebuild_libs+= kerberos5/lib/libgssapi
929 _prebuild_libs+= kerberos5/lib/libkrb5
930 _prebuild_libs+= kerberos5/lib/libroken
931 _generic_libs+= kerberos5/lib
934 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
935 lib/libncurses/libncurses lib/libopie lib/libradius \
936 lib/libsbuf lib/libskey lib/libtacplus lib/libz lib/libm \
937 lib/libpam lib/lib${THREAD_LIB}
939 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
940 lib/libskey__L: lib/libcrypt__L lib/libmd__L
944 .if !defined(NO_CRYPT)
945 .if !defined(NO_OPENSSL)
946 _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
947 .if !defined(NO_OPENSSH)
948 _prebuild_libs+= secure/lib/libssh
949 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
952 _generic_libs+= secure/lib
955 _generic_libs+= usr.bin/lex/lib
957 .for _lib in ${_startup_libs34} ${_startup_libs41} \
958 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
960 .if exists(${.CURDIR}/${_lib})
961 ${ECHODIR} "===> ${_lib}"; \
962 cd ${.CURDIR}/${_lib}; \
963 ${MAKE} DIRPRFX=${_lib}/ depend; \
964 ${MAKE} DIRPRFX=${_lib}/ all; \
965 ${MAKE} DIRPRFX=${_lib}/ install
969 _startup_libs: ${_startup_libs:S/$/__L/}
970 _startup_libs34: ${_startup_libs34:S/$/__L/}
971 _startup_libs41: ${_startup_libs41:S/$/__L/}
972 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
973 _generic_libs: ${_generic_libs:S/$/__L/}
975 # library targets must be ordered because there are inter-library
976 # races (e.g. generation of tconfig.h)
978 .ORDER: ${_startup_libs34:S/$/__L/}
979 .ORDER: ${_startup_libs41:S/$/__L/}
980 .ORDER: ${_startup_libs:S/$/__L/}
981 .ORDER: ${_prebuild_libs:S/$/__L/}
982 .ORDER: ${_generic_libs:S/$/__L/}
984 .for __target in clean cleandepend cleandir obj depend includes
985 .for entry in ${SUBDIR}
986 ${entry}.${__target}__D: .PHONY
987 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
988 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
989 edir=${entry}.${MACHINE_ARCH}; \
990 cd ${.CURDIR}/$${edir}; \
992 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
994 cd ${.CURDIR}/$${edir}; \
996 ${MAKE} ${__target} DIRPRFX=${DIRPRFX}$${edir}/
998 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
999 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
1001 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1003 # The wmake target is used by /usr/bin/wmake to run make in a
1004 # world build environment.
1007 @echo '${WMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${WMAKE_ARGS}'
1010 @echo '${WMAKEENV} /bin/sh'
1013 @echo '${BMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${BMAKE_ARGS}'
1016 @echo '${BMAKEENV} /bin/sh'
1019 @echo '${TMAKEENV} ${MAKE} -m ${.CURDIR}/share/mk ${TMAKE_ARGS}'
1022 @echo '${TMAKEENV} /bin/sh'
1024 .include <bsd.subdir.mk>