2 # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $
4 # Build-time options are documented in make.conf(5).
6 # The intended user-driven targets are:
8 # buildworld - rebuild *everything*, including glue to help do upgrades
9 # quickworld - skip the glue and do a depend+build on the meat
10 # realquickworld - skip the glue and depend stages and just build the meat
11 # crossworld - only build the glue (particularly the cross-build environment)
12 # installworld- install everything built by "buildworld"
13 # backupworld - copies /bin /sbin /usr/bin /usr/sbin /usr/lib /usr/libexec
14 # to manual backup dir
15 # rescue - create rescue image
16 # restoreworld- installs binaries from manual backup dir to world
17 # restoreworld-auto - installs binaries from auto-backup dir to world
18 # most - build user commands, no libraries or include files
19 # installmost - install user commands, no libraries or include files
20 # backup-clean - delete backup from manual backup dir
21 # backup-auto-clean - delete backup from auto-backup dir
23 # Standard targets (not defined here) are documented in the makefiles in
24 # /usr/share/mk. These include:
25 # obj depend all install clean cleandepend cleanobj
27 # Put initial settings here.
30 # /libexec/ld-elf.so.2 needs to be installed first
31 # Otherwise, install(1) beeing a dynamically linked binary will fail
32 # during the first upgrade from a static to a dynamic world
33 .if exists(${.CURDIR}/libexec)
37 # We must do share/info early so that installation of info `dir'
38 # entries works correctly. Do it first since it is less likely to
39 # grow dependencies on include and lib than vice versa.
40 .if exists(${.CURDIR}/share/info)
44 # We must do include and lib early so that the perl *.ph generation
45 # works correctly as it uses the header files installed by this.
46 .if exists(${.CURDIR}/include)
49 .if exists(${.CURDIR}/lib)
52 # This exists simply to ensure that the obj dir hierarchy is
53 # intact for nrelease, allowing the nrelease Makefile's to
54 # reference ${.OBJDIR}.
56 .if exists(${.CURDIR}/nrelease)
60 .if exists(${.CURDIR}/bin)
63 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
66 .if exists(${.CURDIR}/gnu)
69 .if exists(${.CURDIR}/sbin)
72 .if exists(${.CURDIR}/secure) && !defined(NO_CRYPT)
75 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
78 .if exists(${.CURDIR}/sys)
81 .if exists(${.CURDIR}/usr.bin)
84 .if exists(${.CURDIR}/usr.sbin)
88 .if exists(${.CURDIR}/etc)
92 # These are last, since it is nice to at least get the base system
93 # rebuilt before you do them.
94 .if defined(LOCAL_DIRS)
95 .for _DIR in ${LOCAL_DIRS}
96 .if exists(${.CURDIR}/${_DIR}) & exists(${.CURDIR}/${_DIR}/Makefile)
102 .if defined(SUBDIR_OVERRIDE)
103 SUBDIR= ${SUBDIR_OVERRIDE}
106 .if defined(NOCLEANDIR)
107 CLEANDIR= clean cleandepend
112 .if defined(NO_CLEAN)
116 # Object directory base in primary make. Note that when we rerun make
117 # from inside this file we change MAKEOBJDIRPREFIX to the appropriate
118 # subdirectory because the rest of the build system needs it that way.
119 # The original object directory base is saved in OBJTREE.
121 MAKEOBJDIRPREFIX?= /usr/obj
122 OBJTREE?= ${MAKEOBJDIRPREFIX}
124 # Used for stage installs and pathing
126 DESTDIRBASE:= ${OBJTREE}${.CURDIR}
128 # Remove DESTDIR from MAKEFLAGS. It is present in the environment
129 # anyhow, and we need to be able to override it for stage installs
130 .MAKEFLAGS:= ${.MAKEFLAGS:NDESTDIR=*}
132 # This section sets the tools used to build the world/kernel
135 WORLD_BINUTILSVER?= binutils224
137 # Set the backup parameters if they are not already defined
139 WORLD_BACKUP?= /var/backups/world_backup
140 AUTO_BACKUP?= ${OBJTREE}/world_backup/${DESTDIR}
142 TARGET_ARCH?= ${MACHINE_ARCH}
143 .if ${TARGET_ARCH} == ${MACHINE_ARCH}
146 TARGET?= ${TARGET_ARCH}
149 BUILD_ARCH!= sysctl -n hw.machine_arch
151 # temporary until everybody has converted to x86_64
152 .if ${BUILD_ARCH} == "amd64"
156 .if ${MACHINE_ARCH} != ${BUILD_ARCH}
157 .error To cross-build, set TARGET_ARCH.
161 # Backwards compatibility with older make's or older sys.mk's. make
162 # is expected to define MACHINE_PLATFORM.
164 .if !defined(MACHINE_PLATFORM)
165 MACHINE_PLATFORM= pc32
168 # XXX this is ugly and we need to come up with a nicer solution
169 .if !defined(TARGET_PLATFORM)
170 .if ${TARGET_ARCH} == "i386"
171 TARGET_PLATFORM= pc32
172 .elif ${TARGET_ARCH} == "x86_64"
173 TARGET_PLATFORM= pc64
175 .error Unknown target architecture.
179 THREAD_LIB?= thread_xu
180 .if ${THREAD_LIB} == "c_r"
181 .if defined(NO_LIBC_R)
182 .error libc_r is chosen as the default thread library, but NO_LIBC_R is defined
186 # BTOOLS (Natively built) All non-cross-development tools that the
187 # main build needs. This includes things like 'mkdir' and 'rm'.
188 # We will not use the native system's exec path once we start
189 # on WORLD. (bootstrap-tools and build-tools or BTOOLS)
191 # CTOOLS (Natively built) Cross development tools which are specific
192 # to the target architecture.
194 # WORLD (Cross built) Our ultimate buildworld, using only BTOOLS and
197 # MACHINE_PLATFORM Platform Architecture we are building on
198 # MACHINE Machine Architecture (usually the same as MACHINE_ARCH)
199 # MACHINE_ARCH Cpu Architecture we are building on
201 # TARGET_PLATFORM Platform Architecture we are building for
202 # TARGET Machine Architecture we are building for
203 # TARGET_ARCH Cpu Architecture we are building for
205 BTOOLSDEST= ${DESTDIRBASE}/btools_${MACHINE_ARCH}
206 CTOOLSDEST= ${DESTDIRBASE}/ctools_${MACHINE_ARCH}_${TARGET_ARCH}
207 WORLDDEST= ${DESTDIRBASE}/world_${TARGET_ARCH}
209 # The bootstrap-tools path is used by the bootstrap-tools, build-tools, and
210 # cross-tools stages to augment the existing command path to access newer
211 # versions of certain utilities such as 'patch' that the cross-tools stage
214 BTOOLSPATH= ${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games
216 # The strict temporary command path contains all binaries required
217 # by the buildworld system after the cross-tools stage.
219 STRICTTMPPATH= ${CTOOLSDEST}/usr/sbin:${CTOOLSDEST}/usr/bin:${CTOOLSDEST}/bin:${CTOOLSDEST}/usr/games:${BTOOLSDEST}/usr/sbin:${BTOOLSDEST}/usr/bin:${BTOOLSDEST}/bin:${BTOOLSDEST}/usr/games:/usr/local/bin:/usr/pkg/bin
225 # Building a world goes through the following stages
227 # 1. bootstrap-tool stage [BMAKE]
228 # This stage is responsible for creating programs that
229 # are needed for backward compatibility reasons. They
230 # are not built as cross-tools.
231 # 2. build-tool stage [TMAKE]
232 # This stage is responsible for creating the object
233 # tree and building any tools that are needed during
235 # 3. cross-tool stage [XMAKE]
236 # This stage is responsible for creating any tools that
237 # are needed for cross-builds. A cross-compiler is one
239 # 4. world stage [WMAKE]
240 # This stage actually builds the world.
241 # 5. install stage (optional) [IMAKE]
242 # This stage installs a previously built world.
244 # In all cases we must carefully adjust the environment so the proper
245 # tools and header files are used.
247 # NOTE: The M4 environment variable is used by the [f]lex binary to
248 # override the location of the 'm4' binary. The override is
249 # needed for certain buildworld version transitions, specifically
250 # past a certain point in 3.3 because the older /usr/bin/m4 will
251 # generate output that will blow up the newer [f]lex/yacc/bison
255 # bootstrap-tool stage
257 BMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
259 DESTDIR=${BTOOLSDEST} \
260 PATH=${BTOOLSPATH}:${PATH} \
261 M4=${BTOOLSDEST}/usr/bin/m4 \
262 INSTALL="sh ${.CURDIR}/tools/install.sh"
264 BMAKE= ${BMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING \
265 -DNOINFO -DNOMAN -DNOPIC -DNOPROFILE -DNOSHARED \
270 TMAKEENV= MAKEOBJDIRPREFIX=${BTOOLSDEST} \
273 PATH=${BTOOLSPATH}:${PATH} \
274 M4=${BTOOLSDEST}/usr/bin/m4 \
275 INSTALL="sh ${.CURDIR}/tools/install.sh"
277 TMAKE= ${TMAKEENV} make -f Makefile.inc1 -DBOOTSTRAPPING -DNOSHARED
281 # note: TOOLS_PREFIX points to the obj root holding the cross
282 # compiler binaries, while USRDATA_PREFIX points to the obj root
283 # holding the target environment (and also determines where cross-built
284 # libraries, crt*.o, and include files are installed).
286 XMAKEENV= MAKEOBJDIRPREFIX=${CTOOLSDEST} \
288 DESTDIR=${CTOOLSDEST} \
289 _SHLIBDIRPREFIX=${CTOOLSDEST} \
290 INSTALL="sh ${.CURDIR}/tools/install.sh" \
291 TOOLS_PREFIX=${CTOOLSDEST} \
292 USRDATA_PREFIX=${WORLDDEST} \
293 M4=${BTOOLSDEST}/usr/bin/m4 \
294 PATH=${BTOOLSPATH}:${PATH}
296 XMAKE= ${XMAKEENV} make -f Makefile.inc1 -DNO_GDB \
297 -DBOOTSTRAPPING -DNOSHARED
299 # world stage, note the strict path and note that TOOLS_PREFIX is left
300 # unset and USRDATA_PREFIX (which defaults to TOOLS_PREFIX) is set to empty,
301 # which is primarily for the compiler so it targets / (e.g. /usr/<blah>)
302 # for both binary and library paths, even though it is being compiled to
303 # WORLDDEST. None of the programs in the world stage are ever actually
304 # executed during the buildworld/installworld.
306 CROSSENV= MAKEOBJDIRPREFIX=${WORLDDEST} \
308 MACHINE_ARCH=${TARGET_ARCH} \
310 MACHINE_PLATFORM=${TARGET_PLATFORM} \
311 OBJFORMAT_PATH=${CTOOLSDEST} \
312 HOST_CCVER=${HOST_CCVER} \
313 CCVER=${WORLD_CCVER} \
314 LDVER=${WORLD_LDVER} \
315 BINUTILSVER=${WORLD_BINUTILSVER}
317 WMAKEENV= ${CROSSENV} \
318 DESTDIR=${WORLDDEST} \
319 _SHLIBDIRPREFIX=${WORLDDEST} \
320 INSTALL="sh ${.CURDIR}/tools/install.sh" \
321 M4=${BTOOLSDEST}/usr/bin/m4 \
322 PATH=${STRICTTMPPATH}
324 WMAKE= ${WMAKEENV} make -f Makefile.inc1
328 IMAKEENV= ${CROSSENV} \
329 PATH=${STRICTTMPPATH}
330 IMAKE= ${IMAKEENV} make -f Makefile.inc1
334 KMAKEENV= ${WMAKEENV}
338 # Attempt to rebuild the entire system, with reasonable chance of
339 # success, regardless of how old your existing system is.
341 _worldtmp: _cleantmp _mtreetmp
342 .ORDER: _cleantmp _mtreetmp
346 @echo "--------------------------------------------------------------"
347 @echo ">>> Rebuilding the temporary build tree"
348 @echo "--------------------------------------------------------------"
349 .if !defined(NOCLEAN)
350 rm -rf ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
352 # XXX - These two can depend on any header file.
353 rm -f ${OBJTREE}${.CURDIR}/usr.bin/kdump/ioctl.c
354 rm -f ${OBJTREE}${.CURDIR}/usr.bin/truss/ioctl.c
358 mkdir -p ${DESTDIRBASE} ${BTOOLSDEST} ${CTOOLSDEST} ${WORLDDEST}
359 .for _dir in ${WORLDDEST} ${BTOOLSDEST} ${CTOOLSDEST}
360 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.root.dist \
361 -p ${_dir}/ > /dev/null
362 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.usr.dist \
363 -p ${_dir}/usr > /dev/null
365 mtree -deU -f ${.CURDIR}/etc/mtree/BSD.include.dist \
366 -p ${WORLDDEST}/usr/include > /dev/null
367 ${LN} -sf ${.CURDIR}/sys ${WORLDDEST}
371 @echo "--------------------------------------------------------------"
372 @echo ">>> stage 1: bootstrap tools"
373 @echo "--------------------------------------------------------------"
374 cd ${.CURDIR}; ${BMAKE} bootstrap-tools
377 @echo "--------------------------------------------------------------"
378 @echo ">>> stage 2a: cleaning up the object tree"
379 @echo "--------------------------------------------------------------"
380 cd ${.CURDIR}; ${WMAKE} ${CLEANDIR:S/^/par-/}
383 @echo "--------------------------------------------------------------"
384 @echo ">>> stage 2b: rebuilding the object tree"
385 @echo "--------------------------------------------------------------"
386 cd ${.CURDIR}; ${WMAKE} par-obj
389 @echo "--------------------------------------------------------------"
390 @echo ">>> stage 2c: build tools"
391 @echo "--------------------------------------------------------------"
392 cd ${.CURDIR}; ${TMAKE} build-tools
395 @echo "--------------------------------------------------------------"
396 @echo ">>> stage 3: cross tools"
397 @echo "--------------------------------------------------------------"
398 cd ${.CURDIR}; ${XMAKE} cross-tools
401 @echo "--------------------------------------------------------------"
402 @echo ">>> stage 4a: populating ${WORLDDEST}/usr/include"
403 @echo "--------------------------------------------------------------"
404 cd ${.CURDIR}; ${WMAKE} SHARED=symlinks par-includes
407 @echo "--------------------------------------------------------------"
408 @echo ">>> stage 4b: building libraries"
409 @echo "--------------------------------------------------------------"
410 cd ${.CURDIR}; ${WMAKE} -DNOHTML -DNOINFO -DNOMAN -DNOFSCHG libraries
413 @echo "--------------------------------------------------------------"
414 @echo ">>> stage 4c: make dependencies"
415 @echo "--------------------------------------------------------------"
416 cd ${.CURDIR}; ${WMAKE} par-depend
419 @echo "--------------------------------------------------------------"
420 @echo ">>> stage 4d: building everything.."
421 @echo "--------------------------------------------------------------"
422 cd ${.CURDIR}; ${WMAKE} all
424 # note: buildworld no longer depends on _cleanobj because we rm -rf the
425 # entire object tree and built the bootstrap tools in a different location.
427 # buildworld - build everything from scratch
428 # quickworld - skip the bootstrap, build, and cross-build steps
429 # realquickworld - skip the bootstrap, build, crossbuild, and depend step.
431 # note: we include _obj in realquickworld to prevent accidental creation
432 # of files in /usr/src.
435 .if !defined(SUBDIR_OVERRIDE)
436 WMAKE_TGTS+= _worldtmp _bootstrap-tools
438 WMAKE_TGTS+= _obj _build-tools
439 .if !defined(SUBDIR_OVERRIDE)
440 WMAKE_TGTS+= _cross-tools
442 WMAKE_TGTS+= _includes _libraries _depend everything
444 buildworld: ${WMAKE_TGTS}
446 quickworld: _mtreetmp _obj _includes _libraries _depend everything
448 realquickworld: _mtreetmp _obj _includes _libraries everything
450 crossworld: _worldtmp _bootstrap-tools _obj _build-tools _cross-tools
452 .ORDER: ${WMAKE_TGTS}
453 .ORDER: _obj _includes
454 .ORDER: _mtreetmp _obj
455 .ORDER: installcheck backupworld-auto
460 # Checks to be sure system is ready for installworld
463 .if !defined(NO_SENDMAIL)
464 @pw usershow smmsp || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
465 @pw groupshow smmsp || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
467 @pw usershow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
468 @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
469 @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; /usr/bin/false)
470 .if !defined(OVERRIDE_CHECKS)
471 .if !defined(DESTDIR) || ${DESTDIR} == "" || ${DESTDIR} == "/"
472 @case `uname -r` in 1.2*|1.3-*|1.3.*|1.4.*|1.5.0-*|1.5.1-*|1.5.2-*|1.5.3-*) echo "You must upgrade your kernel to at least 1.5.4 and reboot before you can safely installworld, due to libc/system call ABI changes" ; /usr/bin/false ; esac
473 @case `uname -r` in 1.*|2.*|3.0*|3.1*|3.2*|3.3*|3.4*|3.5*|3.6*) echo "Base is too old for a normal installworld, you need to use installworld-force" ; /usr/bin/false ; esac
480 # Backs up the current world if ${AUTO_BACKUP} is writable.
481 # Installs everything compiled by a 'buildworld'.
483 # Includes sleep/sync safety before running mkinitrd.
485 installworld: installcheck
486 -@mkdir -p ${AUTO_BACKUP} > /dev/null 2>&1
488 (touch ${AUTO_BACKUP}/.updating > /dev/null 2>&1 && \
489 ${IMAKE} backupworld-auto) || \
490 echo "Cannot write to ${AUTO_BACKUP} - world not backed up"
492 cd ${.CURDIR}; ${IMAKE} re${.TARGET:S/world$//}
493 ${INSTALL} -o root -g wheel -m 644 ${.CURDIR}/Makefile_upgrade.inc ${DESTDIR}/etc/upgrade/
495 @echo "installworld is done. If things work as expected after a"
496 @echo "full reboot, consider updating the rescue image with"
497 @echo "'make rescue'. Do not do it until after rebooting."
500 @echo "Doing a forced installworld. This will install to a temporary directory,"
501 @echo "then copy the main binaries and libraries with a static cpdup to ${DESTDIR}/"
502 @echo "and finally willl issue a normal installworld. Starting in 5 seconds.".
505 rm -rf /usr/obj/temp > /dev/null 2>& 1 || chflags -R noschg /usr/obj/temp
507 mkdir -p /usr/obj/temp/cpdup/bin
508 (cd ${.CURDIR}/bin/cpdup; make clean; make obj; make clean; make CFLAGS=-static all install DESTDIR=/usr/obj/temp/cpdup NOMAN=TRUE)
509 @echo "XXXXXXXXX Installing to temporary XXXXXXXXX"
511 (cd ${.CURDIR}; ${MAKE} installworld DESTDIR=/usr/obj/temp > /dev/null 2>&1)
512 @echo "XXXXXXXXX Blasting binaries and libraries XXXXXXXXX"
514 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/bin /bin
515 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/sbin /sbin
516 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/lib /lib
517 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/bin /usr/bin
518 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/sbin /usr/sbin
519 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/lib /usr/lib
520 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/libexec /libexec
521 /usr/obj/temp/cpdup/bin/cpdup -i0 /usr/obj/temp/usr/libexec /usr/libexec
522 @echo "XXXXXXXXX Doing final installworld XXXXXXXX"
524 (cd ${.CURDIR}; ${MAKE} installworld OVERRIDE_CHECKS=TRUE)
525 (cd ${.CURDIR}; ${MAKE} upgrade OVERRIDE_CHECKS=TRUE)
527 # Create a rescue image. We no longer do this automatically for several
528 # reasons, primarily that users have had serious issue with mismatched 'vn'
529 # vs the kldload image that can crash the system. But also, the rescue image
530 # is intended to be a rescue image, it is a bad idea to update it at the
531 # same time the world is installed.
534 mkinitrd -b ${DESTDIR}/boot
539 # If you have a build server, you can NFS mount the source and obj directories
540 # and do a 'make reinstall' on the *client* to install new binaries from the
541 # most recent server build.
544 @echo "--------------------------------------------------------------"
545 @echo ">>> Making hierarchy"
546 @echo "--------------------------------------------------------------"
547 cd ${.CURDIR}; make -f Makefile.inc1 hierarchy
549 @echo "--------------------------------------------------------------"
550 @echo ">>> Installing everything.."
551 @echo "--------------------------------------------------------------"
552 cd ${.CURDIR}; make -f Makefile.inc1 install
555 # buildkernel, nativekernel, quickkernel, and installkernel
557 # Which kernels to build and/or install is specified by setting
558 # KERNCONF. If not defined a GENERIC kernel is built/installed.
559 # Only the existing (depending TARGET) config files are used
560 # for building kernels and only the first of these is designated
561 # as the one being installed.
563 # You can specify INSTALLSTRIPPED=1 if you wish the installed
564 # kernel and modules to be stripped of its debug info (required
565 # symbols are left intact). You can specify INSTALLSTRIPPEDMODULES
566 # if you only want to strip the modules of their debug info. These
567 # only apply if you have DEBUG=-g in your kernel config or make line.
569 # Note that we have to use TARGET instead of TARGET_ARCH when
570 # we're in kernel-land. Since only TARGET_ARCH is (expected) to
571 # be set to cross-build, we have to make sure TARGET is set
574 .if !defined(KERNCONF) && defined(KERNEL)
578 # XXX makeshift fix to build the right kernel for the (target) architecture
579 # We should configure this in the platform files somehow
580 .if ${TARGET_ARCH} == "i386"
583 KERNCONF?= X86_64_GENERIC
586 INSTKERNNAME?= kernel
588 KRNLSRCDIR= ${.CURDIR}/sys
589 KRNLCONFDIR= ${KRNLSRCDIR}/config
590 KRNLOBJDIR= ${OBJTREE}${KRNLSRCDIR}
591 KERNCONFDIR?= ${KRNLCONFDIR}
595 .for _kernel in ${KERNCONF}
596 .if exists(${KERNCONFDIR}/${_kernel})
597 BUILDKERNELS+= ${_kernel}
598 .if empty(INSTALLKERNEL)
599 INSTALLKERNEL= ${_kernel}
604 # kernel version numbers survive rm -rf
606 .for _kernel in ${BUILDKERNELS}
607 .if exists(${KRNLOBJDIR}/${_kernel}/version)
608 KERNEL_VERSION_${_kernel} != cat ${KRNLOBJDIR}/${_kernel}/version
615 # Builds all kernels defined by BUILDKERNELS.
618 @if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
619 echo "You must buildworld before buildkernel. If you wish"; \
620 echo "to build a kernel using native tools, config it manually"; \
621 echo "or use the nativekernel target if you are in a rush"; \
626 .for _kernel in ${BUILDKERNELS}
627 @if [ ! -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
628 if [ ! -f ${WORLDDEST}/.libraries_done ]; then \
629 echo "The kernel was build using buildworld tools which no" ; \
630 echo "longer appear to exist, quickkernel failed!" ; \
637 .if empty(BUILDKERNELS)
638 @echo ">>> ERROR: Missing kernel configuration file(s) (${KERNCONF})."
639 @echo ">>> Did you move your kernel configs from i386/conf to config/?"
644 .if defined(KERNWARN)
645 @echo "--------------------------------------------------------------"
646 @echo ">>> WARNING: KERNEL= setting should be changed to KERNCONF="
647 @echo "--------------------------------------------------------------"
652 # The buildkernel target rebuilds the specified kernels from scratch
653 # using the crossbuild tools generated by the last buildworld. It is
654 # the safest (but also the most time consuming) way to build a new kernel.
656 buildkernel: bk_tools bk_build_list bk_kernwarn
657 .for _kernel in ${BUILDKERNELS}
658 @echo "--------------------------------------------------------------"
659 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
660 @echo "--------------------------------------------------------------"
661 @echo "===> ${_kernel}"
662 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
663 rm -rf ${KRNLOBJDIR}/${_kernel}
665 @if [ -f ${KRNLOBJDIR}/${_kernel}/.nativekernel_run ]; then \
666 echo "YOU ARE REBUILDING WITH BUILDKERNEL, REMOVING OLD NATIVEKERNEL BUILD"; \
667 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
669 mkdir -p ${KRNLOBJDIR}
670 .if !defined(NO_KERNELCONFIG)
672 PATH=${STRICTTMPPATH} \
673 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
674 ${KERNCONFDIR}/${_kernel}
676 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
677 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
679 touch ${KRNLOBJDIR}/${_kernel}/.buildkernel_run
680 .if !defined(NO_KERNELDEPEND)
681 cd ${KRNLOBJDIR}/${_kernel}; \
682 ${KMAKEENV} make KERNEL=${INSTKERNNAME} depend
684 cd ${KRNLOBJDIR}/${_kernel}; \
685 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
686 @echo "--------------------------------------------------------------"
687 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
688 @echo "--------------------------------------------------------------"
691 # The nativekernel target rebuilds the specified kernels from scratch
692 # using the system's standard compiler rather than using the crossbuild
693 # tools generated by the last buildworld. This is fairly safe if your
694 # system is reasonable up-to-date.
696 nativekernel: bk_build_list bk_kernwarn
697 .for _kernel in ${BUILDKERNELS}
698 @echo "--------------------------------------------------------------"
699 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
700 @echo "--------------------------------------------------------------"
701 @echo "===> ${_kernel}"
702 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN)
703 rm -rf ${KRNLOBJDIR}/${_kernel}
705 @if [ -f ${KRNLOBJDIR}/${_kernel}/.buildkernel_run ]; then \
706 echo "YOU ARE REBUILDING WITH NATIVEKERNEL, REMOVING OLD BUILDKERNEL BUILD"; \
707 rm -rf ${KRNLOBJDIR}/${_kernel}; fi
709 mkdir -p ${KRNLOBJDIR}
710 .if !defined(NO_KERNELCONFIG)
712 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
713 ${KERNCONFDIR}/${_kernel}
715 .if !defined(NOCLEAN) && !defined(NO_KERNELCLEAN) && defined(KERNEL_VERSION_${_kernel})
716 echo ${KERNEL_VERSION_${_kernel}} > ${KRNLOBJDIR}/${_kernel}/version
718 touch ${KRNLOBJDIR}/${_kernel}/.nativekernel_run
719 cd ${KRNLOBJDIR}/${_kernel}; \
720 MAKESRCPATH=${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm \
721 make -DBOOTSTRAPPING -f ${KRNLSRCDIR}/dev/disk/aic7xxx/aicasm/Makefile
722 .if !defined(NO_KERNELDEPEND)
723 cd ${KRNLOBJDIR}/${_kernel}; \
724 make KERNEL=${INSTKERNNAME} depend
726 cd ${KRNLOBJDIR}/${_kernel}; \
727 make KERNEL=${INSTKERNNAME} all
728 @echo "--------------------------------------------------------------"
729 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
730 @echo "--------------------------------------------------------------"
733 # The quickkernel target rebuilds the specified kernels as quickly
734 # as possible. It will use the native tools or the buildworld cross tools
735 # based on whether the kernel was originally generated via buildkernel or
736 # nativekernel. Config is rerun but the object hierarchy is not rebuilt,
737 # nor is the make depend step run.
739 quickkernel: maybe_bk_tools bk_build_list bk_kernwarn
740 .for _kernel in ${BUILDKERNELS}
741 @echo "--------------------------------------------------------------"
742 @echo ">>> Kernel build for ${_kernel} started on `LC_ALL=C date`"
743 @echo "--------------------------------------------------------------"
744 @echo "===> ${_kernel}"
745 .if exists(${KRNLOBJDIR}/${_kernel}/.buildkernel_run)
746 .if !defined(NO_KERNELCONFIG)
748 PATH=${STRICTTMPPATH} \
749 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
750 ${KERNCONFDIR}/${_kernel}
752 cd ${KRNLOBJDIR}/${_kernel}; \
753 ${KMAKEENV} make KERNEL=${INSTKERNNAME} all
755 .if !defined(NO_KERNELCONFIG)
757 config ${CONFIGARGS} -d ${KRNLOBJDIR}/${_kernel} \
758 ${KERNCONFDIR}/${_kernel}
760 cd ${KRNLOBJDIR}/${_kernel}; \
761 make KERNEL=${INSTKERNNAME} all
763 @echo "--------------------------------------------------------------"
764 @echo ">>> Kernel build for ${_kernel} completed on `LC_ALL=C date`"
765 @echo "--------------------------------------------------------------"
771 # Install the kernel defined by INSTALLKERNEL
773 installkernel reinstallkernel:
774 @echo "--------------------------------------------------------------"
775 @echo ">>> Kernel install for ${INSTALLKERNEL} started on `LC_ALL=C date`"
776 @echo "--------------------------------------------------------------"
777 .if exists(${KRNLOBJDIR}/${INSTALLKERNEL}/.buildkernel_run)
778 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
779 ${IMAKEENV} make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
781 cd ${KRNLOBJDIR}/${INSTALLKERNEL}; \
782 make KERNEL=${INSTKERNNAME} ${.TARGET:S/kernel$//}
788 # Build most of the user binaries on the existing system libs and includes.
791 @echo "--------------------------------------------------------------"
792 @echo ">>> Building programs only"
793 @echo "--------------------------------------------------------------"
794 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
795 cd ${.CURDIR}/${_dir}; make DIRPRFX=${_dir}/ all
801 # Install the binaries built by the 'most' target. This does not include
802 # libraries or include files.
805 @echo "--------------------------------------------------------------"
806 @echo ">>> Installing programs only"
807 @echo "--------------------------------------------------------------"
808 .for _dir in bin sbin libexec usr.bin usr.sbin gnu/libexec gnu/usr.bin gnu/usr.sbin
809 cd ${.CURDIR}/${_dir}; make DIRPRFX=${_dir}/ install
813 # ------------------------------------------------------------------------
815 # From here onwards are utility targets used by the 'make world' and
816 # related targets. If your 'world' breaks, you may like to try to fix
817 # the problem and manually run the following targets to attempt to
818 # complete the build. Beware, this is *not* guaranteed to work, you
819 # need to have a pretty good grip on the current state of the system
820 # to attempt to manually finish it. If in doubt, 'make world' again.
823 # bootstrap-tools: Build all tools required to build all tools. Note that
824 # order is important in a number of cases and also note that the bootstrap
825 # and build tools stages have access to earlier binaries they themselves
828 # patch: older patch's do not have -i. This program must be built
829 # first so other bootstrap tools that need to apply patches
831 # [x]install: dependancies on various new install features
832 # rpcgen: old rpcgen used a hardwired cpp path, newer OBJFORMAT_PATH
833 # envs are not compatible with older objformat binaries.
835 .if exists(${.CURDIR}/games) && !defined(NO_GAMES)
836 _strfile= games/fortune/strfile
839 # BSTRAPDIRS1 - must be built in strict order, no parallelism
841 # order is very important. yacc before m4 before flex. flex exec's m4,
842 # m4's parser file needs the latest byacc (insanity!).
844 BSTRAPDIRS1= ${_strfile} \
846 bin/chmod bin/cp bin/cpdup bin/dd bin/mkdir bin/rm bin/echo \
847 bin/test bin/cat bin/ln bin/mv bin/csh bin/expr bin/sh \
848 bin/hostname bin/kill \
849 usr.bin/yacc usr.bin/m4 usr.bin/colldef \
850 usr.bin/uudecode usr.bin/xinstall \
851 usr.bin/rpcgen usr.bin/bmake usr.bin/awk usr.bin/stat \
852 usr.bin/find usr.bin/flex
854 # BSTRAPDIRS2 - may built in parallel
857 usr.bin/sed usr.bin/uname usr.bin/touch \
858 usr.bin/mkdep usr.bin/mktemp usr.bin/lorder usr.bin/file2c \
859 usr.bin/tsort usr.bin/tr usr.bin/join usr.bin/wc usr.bin/basename \
860 usr.bin/gencat usr.bin/chflags usr.bin/expand usr.bin/paste \
861 usr.bin/mklocale usr.bin/uuencode usr.bin/compile_et usr.bin/hexdump \
862 usr.bin/cap_mkdb usr.bin/true usr.bin/false \
863 usr.bin/cmp usr.bin/xargs usr.bin/id usr.bin/env usr.bin/dirname \
864 usr.bin/tail usr.bin/unifdef usr.bin/tic \
865 usr.sbin/chown usr.sbin/mtree usr.sbin/config \
866 usr.sbin/btxld usr.sbin/zic usr.sbin/makewhatis \
867 gnu/usr.bin/texinfo gnu/usr.bin/grep usr.bin/sort \
868 usr.bin/gzip usr.bin/bzip2 usr.bin/mkcsmapper usr.bin/mkesdb \
871 bootstrap-tools: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
872 touch ${BTOOLSDEST}/.bootstrap_done
874 bootstrap-tools-before:
875 ${LN} -fs /bin/date ${BTOOLSDEST}/bin/date
877 bootstrap-tools-targets1: ${BSTRAPDIRS1:S/^/bstrap-/}
879 bootstrap-tools-targets2: ${BSTRAPDIRS2:S/^/bstrap-/}
881 .ORDER: bootstrap-tools-before bootstrap-tools-targets1 bootstrap-tools-targets2
883 .ORDER: ${BSTRAPDIRS1:S/^/bstrap-/}
885 .for _tool in ${BSTRAPDIRS1} ${BSTRAPDIRS2}
887 ${ECHODIR} "===> ${_tool} (bootstrap-tools)"; \
888 cd ${.CURDIR}/${_tool}; \
889 make DIRPRFX=${_tool}/ obj; \
890 make DIRPRFX=${_tool}/ depend; \
891 make DIRPRFX=${_tool}/ all; \
892 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
895 # build-tools: Build special purpose build tools.
897 # XXX we may be able to remove or consolidate this into bootstrap-tools
898 # now that we have the native helper (.nx/.no) infrastructure.
900 .if exists(${.CURDIR}/share) && !defined(NO_SHARE)
901 _share= share/syscons/scrnmaps
904 _gcc_common_cross= gnu/usr.bin/gmp gnu/usr.bin/mpfr
905 .if !defined(NO_GCC44)
906 _gcc44_cross= gnu/usr.bin/cc44
907 _gcc44_tools= gnu/usr.bin/cc44/cc_prep gnu/usr.bin/cc44/cc_tools
909 _gcc47_cross= lib/libz gnu/usr.bin/mpc gnu/usr.bin/cc47
910 _gcc47_tools= gnu/usr.bin/cc47/cc_prep gnu/usr.bin/cc47/cc_tools
911 _custom_cross= libexec/customcc
912 _binutils= gnu/usr.bin/${WORLD_BINUTILSVER}
914 BTOOLSDIRS= ${_gcc44_tools} ${_gcc47_tools} ${_share}
916 build-tools: build-tools-targets
917 touch ${BTOOLSDEST}/.build_done
919 build-tools-targets: ${BTOOLSDIRS:S/^/btools-/}
921 .ORDER: ${_gcc44_tools:S/^/btools-/}
922 .ORDER: ${_gcc47_tools:S/^/btools-/}
924 .for _tool in ${BTOOLSDIRS}
926 ${ECHODIR} "===> ${_tool} (build-tools)"; \
927 cd ${.CURDIR}/${_tool}; \
928 make DIRPRFX=${_tool}/ obj; \
929 make DIRPRFX=${_tool}/ depend; \
930 make DIRPRFX=${_tool}/ all; \
931 make DIRPRFX=${_tool}/ DESTDIR=${BTOOLSDEST} install
935 # cross-tools: Build cross-building tools
937 .if ${TARGET_ARCH} == "i386" && ${MACHINE_ARCH} != "i386"
938 _btxld= usr.sbin/btxld
941 CTOOLSDIRS= ${_btxld} ${_binutils} \
942 usr.bin/objformat usr.bin/crunch/crunchide \
943 ${_gcc_common_cross} \
944 ${_gcc44_cross} ${_gcc47_cross} ${_custom_cross}
946 cross-tools: cross-tools-targets
947 touch ${CTOOLSDEST}/.cross_done
949 cross-tools-targets: ${CTOOLSDIRS:S/^/ctools-/}
951 .for _tool in ${CTOOLSDIRS}
953 ${ECHODIR} "===> ${_tool} (cross-tools)"; \
954 cd ${.CURDIR}/${_tool}; \
955 make DIRPRFX=${_tool}/ obj; \
956 make DIRPRFX=${_tool}/ depend; \
957 make DIRPRFX=${_tool}/ all; \
958 make DIRPRFX=${_tool}/ DESTDIR=${CTOOLSDEST} install
962 # hierarchy - ensure that all the needed directories are present
965 cd ${.CURDIR}/etc; make distrib-dirs
968 # libraries - build all libraries, and install them under ${DESTDIR}.
970 # The list of libraries with dependents (${_prebuild_libs}) and their
971 # interdependencies (__L) are built automatically by the
972 # ${.CURDIR}/tools/make_libdeps.sh script.
974 # .makeenv does not work when bootstrapping from 4.x, so we must be sure
975 # to specify the correct CCVER or 'cc' will not exec the correct compiler.
979 HOST_CCVER=${HOST_CCVER} CCVER=gcc47 \
980 make -f Makefile.inc1 _startup_libs47;
981 .if !defined(NO_GCC44)
983 HOST_CCVER=${HOST_CCVER} CCVER=gcc44 \
984 make -f Makefile.inc1 _startup_libs44;
987 make -f Makefile.inc1 _startup_libs; \
988 make -f Makefile.inc1 _prebuild_libs; \
989 make -f Makefile.inc1 _generic_libs;
990 touch ${WORLDDEST}/.libraries_done
992 # These dependencies are not automatically generated:
994 # gnu/lib/${CCVER}/libgcc and gnu/lib/${CCVER}/csu must be built before all
995 # shared libraries for ELF. The target for _startup_libsXX is
996 # specifically built using gccXX.
998 _startup_libs47= gnu/usr.bin/cc47/cc_prep \
999 gnu/usr.bin/cc47/cc_tools \
1001 gnu/lib/gcc47/libgcc \
1002 gnu/lib/gcc47/libgcc_eh \
1003 gnu/lib/gcc47/libgcc_pic
1004 _startup_libs44= gnu/usr.bin/cc44/cc_prep \
1005 gnu/usr.bin/cc44/cc_tools \
1007 gnu/lib/gcc44/libgcc
1008 _startup_libs= lib/csu lib/libc lib/libc_rtld
1010 _prebuild_libs= lib/libbz2 lib/liblzma lib/libz
1011 _prebuild_libs+= lib/libutil
1013 _generic_libs= gnu/lib
1015 _prebuild_libs+= lib/libcom_err lib/libcrypt lib/libmd \
1016 lib/libncurses/libncurses lib/libopie
1018 lib/libopie__L lib/libradius__L lib/libtacplus__L: lib/libmd__L
1022 .if !defined(NO_CRYPT)
1023 .if !defined(NO_OPENSSL)
1024 _prebuild_libs+= secure/lib/libcrypto secure/lib/libssl
1025 .if !defined(NO_OPENSSH)
1026 _prebuild_libs+= secure/lib/libssh
1027 secure/lib/libssh__L: secure/lib/libcrypto__L lib/libz__L
1030 _generic_libs+= secure/lib
1033 _prebuild_libs+= lib/libradius lib/libsbuf lib/libtacplus lib/libm \
1034 lib/libpam lib/libypclnt lib/lib${THREAD_LIB} \
1035 lib/libpthread lib/libprop lib/libdevattr
1037 _generic_libs+= usr.bin/flex/lib
1039 .for _lib in ${_startup_libs44} ${_startup_libs47} \
1040 ${_startup_libs} ${_prebuild_libs} ${_generic_libs}
1042 .if exists(${.CURDIR}/${_lib})
1043 ${ECHODIR} "===> ${_lib}"; \
1044 cd ${.CURDIR}/${_lib}; \
1045 make DIRPRFX=${_lib}/ depend; \
1046 make DIRPRFX=${_lib}/ all; \
1047 make DIRPRFX=${_lib}/ install
1051 _startup_libs: ${_startup_libs:S/$/__L/}
1052 _startup_libs47: ${_startup_libs47:S/$/__L/}
1053 _startup_libs44: ${_startup_libs44:S/$/__L/}
1054 _prebuild_libs: ${_prebuild_libs:S/$/__L/}
1055 _generic_libs: ${_generic_libs:S/$/__L/}
1057 # library targets must be ordered because there are inter-library
1058 # races (e.g. generation of tconfig.h)
1060 .ORDER: ${_startup_libs47:S/$/__L/}
1061 .ORDER: ${_startup_libs44:S/$/__L/}
1062 .ORDER: ${_startup_libs:S/$/__L/}
1063 .ORDER: ${_prebuild_libs:S/$/__L/}
1064 .ORDER: ${_generic_libs:S/$/__L/}
1066 .for __target in clean cleandepend cleandir obj depend includes
1067 .for entry in ${SUBDIR}
1068 ${entry}.${__target}__D: .PHONY
1069 @if test -d ${.CURDIR}/${entry}.${MACHINE_ARCH}; then \
1070 ${ECHODIR} "===> ${DIRPRFX}${entry}.${MACHINE_ARCH}"; \
1071 edir=${entry}.${MACHINE_ARCH}; \
1072 cd ${.CURDIR}/$${edir}; \
1074 ${ECHODIR} "===> ${DIRPRFX}${entry}"; \
1076 cd ${.CURDIR}/$${edir}; \
1078 make ${__target} DIRPRFX=${DIRPRFX}$${edir}/
1080 par-${__target}: ${SUBDIR:S/$/.${__target}__D/}
1081 .ORDER: ${SUBDIR:S/$/.${__target}__D/}
1083 .ORDER: par-clean par-cleandepend par-cleandir par-obj par-depend par-includes
1085 # The wmake target is used by /usr/bin/wmake to run make in a
1086 # world build environment.
1089 @echo '${WMAKEENV} make ${WMAKE_ARGS}'
1092 @echo '${WMAKEENV} /bin/sh'
1095 @echo '${BMAKEENV} make ${BMAKE_ARGS}'
1098 @echo '${BMAKEENV} /bin/sh'
1101 @echo '${TMAKEENV} make ${TMAKE_ARGS}'
1104 @echo '${TMAKEENV} /bin/sh'
1107 @echo '${XMAKEENV} make ${XMAKE_ARGS}'
1110 @echo '${XMAKEENV} /bin/sh'
1112 backupworld: backup-clean
1113 @mkdir -p ${WORLD_BACKUP}
1114 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1115 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1116 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1117 tar -czf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1118 --options gzip:compression-level=1 \
1119 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1123 .if !defined(NO_BACKUP)
1124 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1125 @mkdir -p ${AUTO_BACKUP}
1126 .if (exists(${DESTDIR}/sbin) && exists(${DESTDIR}/bin) && \
1127 exists(${DESTDIR}/usr/sbin) && exists(${DESTDIR}/usr/bin) && \
1128 exists(${DESTDIR}/usr/lib) && exists(${DESTDIR}/usr/libexec))
1129 tar -czf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/ \
1130 --options gzip:compression-level=1 \
1131 sbin bin usr/sbin usr/bin usr/lib usr/libexec
1136 rm -f ${AUTO_BACKUP}/binaries.tar.gz
1139 rm -f ${WORLD_BACKUP}/binaries.tar.gz
1142 .if !exists(${WORLD_BACKUP}/binaries.tar.gz)
1143 @echo "There does not seem to be a valid archive present."
1145 @echo "Restoring system binaries from manual backup archive..."
1146 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1147 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1148 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1149 tar -xzf ${WORLD_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1153 .if !exists(${AUTO_BACKUP}/binaries.tar.gz)
1154 @echo "There does not seem to be a valid archive present."
1156 @echo "Restoring system binaries from auto-backup archive..."
1157 @chflags -R noschg ${DESTDIR}/sbin ${DESTDIR}/bin \
1158 ${DESTDIR}/usr/sbin ${DESTDIR}/usr/bin \
1159 ${DESTDIR}/usr/lib ${DESTDIR}/usr/libexec
1160 tar -xzf ${AUTO_BACKUP}/binaries.tar.gz -C ${DESTDIR}/
1163 # Take advantage of bmake error response
1165 MAKE_PRINT_VAR_ON_ERROR= \
1176 .include <bsd.subdir.mk>