]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile
Upgrade to OpenSSH 7.5p1.
[FreeBSD/FreeBSD.git] / Makefile
1 #
2 # $FreeBSD$
3 #
4 # The user-driven targets are:
5 #
6 # universe            - *Really* build *everything* (buildworld and
7 #                       all kernels on all architectures).
8 # tinderbox           - Same as universe, but presents a list of failed build
9 #                       targets and exits with an error if there were any.
10 # buildworld          - Rebuild *everything*, including glue to help do
11 #                       upgrades.
12 # installworld        - Install everything built by "buildworld".
13 # world               - buildworld + installworld, no kernel.
14 # buildkernel         - Rebuild the kernel and the kernel-modules.
15 # installkernel       - Install the kernel and the kernel-modules.
16 # installkernel.debug
17 # reinstallkernel     - Reinstall the kernel and the kernel-modules.
18 # reinstallkernel.debug
19 # kernel              - buildkernel + installkernel.
20 # kernel-toolchain    - Builds the subset of world necessary to build a kernel
21 # kernel-toolchains   - Build kernel-toolchain for all universe targets.
22 # doxygen             - Build API documentation of the kernel, needs doxygen.
23 # update              - Convenient way to update your source tree(s).
24 # checkworld          - Run test suite on installed world.
25 # check-old           - List obsolete directories/files/libraries.
26 # check-old-dirs      - List obsolete directories.
27 # check-old-files     - List obsolete files.
28 # check-old-libs      - List obsolete libraries.
29 # delete-old          - Delete obsolete directories/files.
30 # delete-old-dirs     - Delete obsolete directories.
31 # delete-old-files    - Delete obsolete files.
32 # delete-old-libs     - Delete obsolete libraries.
33 # targets             - Print a list of supported TARGET/TARGET_ARCH pairs
34 #                       for world and kernel targets.
35 # toolchains          - Build a toolchain for all world and kernel targets.
36 # xdev                - xdev-build + xdev-install for the architecture
37 #                       specified with XDEV and XDEV_ARCH.
38 # xdev-build          - Build cross-development tools.
39 # xdev-install        - Install cross-development tools.
40 # xdev-links          - Create traditional links in /usr/bin for cc, etc
41 # native-xtools       - Create host binaries that produce target objects
42 #                       for use in qemu user-mode jails.
43
44 # "quick" way to test all kernel builds:
45 #       _jflag=`sysctl -n hw.ncpu`
46 #       _jflag=$(($_jflag * 2))
47 #       [ $_jflag -gt 12 ] && _jflag=12
48 #       make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
49 #
50 # This makefile is simple by design. The FreeBSD make automatically reads
51 # the /usr/share/mk/sys.mk unless the -m argument is specified on the
52 # command line. By keeping this makefile simple, it doesn't matter too
53 # much how different the installed mk files are from those in the source
54 # tree. This makefile executes a child make process, forcing it to use
55 # the mk files from the source tree which are supposed to DTRT.
56 #
57 # Most of the user-driven targets (as listed above) are implemented in
58 # Makefile.inc1.  The exceptions are universe, tinderbox and targets.
59 #
60 # If you want to build your system from source be sure that /usr/obj has
61 # at least 6GB of diskspace available.  A complete 'universe' build requires
62 # about 100GB of space.
63 #
64 # For individuals wanting to build from the sources currently on their
65 # system, the simple instructions are:
66 #
67 # 1.  `cd /usr/src'  (or to the directory containing your source tree).
68 # 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
69 # 3.  `make world'
70 #
71 # For individuals wanting to upgrade their sources (even if only a
72 # delta of a few days):
73 #
74 #  1.  `cd /usr/src'       (or to the directory containing your source tree).
75 #  2.  `make buildworld'
76 #  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
77 #  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
78 #       [steps 3. & 4. can be combined by using the "kernel" target]
79 #  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
80 #  6.  `mergemaster -p'
81 #  7.  `make installworld'
82 #  8.  `mergemaster'            (you may wish to use -i, along with -U or -F).
83 #  9.  `make delete-old'
84 # 10.  `reboot'
85 # 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
86 #
87 # See src/UPDATING `COMMON ITEMS' for more complete information.
88 #
89 # If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can
90 # cross build world for other machine types using the buildworld target,
91 # and once the world is built you can cross build a kernel using the
92 # buildkernel target.
93 #
94 # Define the user-driven targets. These are listed here in alphabetical
95 # order, but that's not important.
96 #
97 # Targets that begin with underscore are internal targets intended for
98 # developer convenience only.  They are intentionally not documented and
99 # completely subject to change without notice.
100 #
101 # For more information, see the build(7) manual page.
102 #
103
104 # This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION
105 # can be cached for sub-makes.
106 .if ${MAKE_VERSION} >= 20140620 && defined(.PARSEDIR)
107 .include <bsd.compiler.mk>
108 .endif
109
110 # Note: we use this awkward construct to be compatible with FreeBSD's
111 # old make used in 10.0 and 9.2 and earlier.
112 .if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && \
113     !make(showconfig) && !make(print-dir)
114 # targets/Makefile plays the role of top-level
115 .include "targets/Makefile"
116 .else
117
118 TGTS=   all all-man buildenv buildenvvars buildkernel buildworld \
119         check check-old check-old-dirs check-old-files check-old-libs \
120         checkdpadd checkworld clean cleandepend cleandir cleanworld \
121         delete-old delete-old-dirs delete-old-files delete-old-libs \
122         depend distribute distributekernel distributekernel.debug \
123         distributeworld distrib-dirs distribution doxygen \
124         everything hier hierarchy install installcheck installkernel \
125         installkernel.debug packagekernel packageworld \
126         reinstallkernel reinstallkernel.debug \
127         installworld kernel-toolchain libraries lint maninstall \
128         obj objlink rerelease showconfig tags toolchain update \
129         _worldtmp _legacy _bootstrap-tools _cleanobj _obj \
130         _build-tools _build-metadata _cross-tools _includes _libraries \
131         build32 distribute32 install32 buildsoft distributesoft installsoft \
132         builddtb xdev xdev-build xdev-install \
133         xdev-links native-xtools stageworld stagekernel stage-packages \
134         create-packages-world create-packages-kernel create-packages \
135         packages installconfig real-packages sign-packages package-pkg \
136         print-dir test-system-compiler
137
138 # XXX: r156740: This can't work since bsd.subdir.mk is not included ever.
139 # It will only work for SUBDIR_TARGETS in make.conf.
140 TGTS+=  ${SUBDIR_TARGETS}
141
142 BITGTS= files includes
143 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
144 TGTS+=  ${BITGTS}
145
146 # Only some targets are allowed to use meta mode.  Others get it
147 # disabled.  In some cases, such as 'install', meta mode can be dangerous
148 # as a cookie may be used to prevent redundant installations (such as
149 # for WORLDTMP staging).  For DESTDIR=/ we always want to install though.
150 # For other cases, such as delete-old-libs, meta mode may break
151 # the interactive tty prompt.  The safest route is to just whitelist
152 # the ones that benefit from it.
153 META_TGT_WHITELIST+= \
154         _* build32 buildfiles buildincludes buildkernel buildsoft \
155         buildworld everything kernel-toolchain kernel-toolchains kernel \
156         kernels libraries native-xtools showconfig test-system-compiler \
157         tinderbox toolchain \
158         toolchains universe world worlds xdev xdev-build
159
160 .ORDER: buildworld installworld
161 .ORDER: buildworld distrib-dirs
162 .ORDER: buildworld distribution
163 .ORDER: buildworld distribute
164 .ORDER: buildworld distributeworld
165 .ORDER: buildworld buildkernel
166 .ORDER: distrib-dirs distribute
167 .ORDER: distrib-dirs distributeworld
168 .ORDER: distrib-dirs installworld
169 .ORDER: distribution distribute
170 .ORDER: distributeworld distribute
171 .ORDER: distributeworld distribution
172 .ORDER: installworld distribute
173 .ORDER: installworld distribution
174 .ORDER: installworld installkernel
175 .ORDER: buildkernel installkernel
176 .ORDER: buildkernel installkernel.debug
177 .ORDER: buildkernel reinstallkernel
178 .ORDER: buildkernel reinstallkernel.debug
179
180 PATH=   /sbin:/bin:/usr/sbin:/usr/bin
181 MAKEOBJDIRPREFIX?=      /usr/obj
182 _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} MK_AUTO_OBJ=no ${MAKE} \
183     ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
184     -f /dev/null -V MAKEOBJDIRPREFIX dummy
185 .if !empty(_MAKEOBJDIRPREFIX)
186 .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
187         (in make.conf(5)) or command-line variable.
188 .endif
189
190 # We often need to use the tree's version of make to build it.
191 # Choices add to complexity though.
192 # We cannot blindly use a make which may not be the one we want
193 # so be exlicit - until all choice is removed.
194 WANT_MAKE=      bmake
195 .if !empty(.MAKE.MODE:Mmeta)
196 # 20160604 - support missing-meta,missing-filemon and performance improvements
197 WANT_MAKE_VERSION= 20160604
198 .else
199 # 20160220 - support .dinclude for FAST_DEPEND.
200 WANT_MAKE_VERSION= 20160220
201 .endif
202 MYMAKE=         ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
203 .if defined(.PARSEDIR)
204 HAVE_MAKE=      bmake
205 .else
206 HAVE_MAKE=      fmake
207 .endif
208 .if defined(ALWAYS_BOOTSTRAP_MAKE) || \
209     ${HAVE_MAKE} != ${WANT_MAKE} || \
210     (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
211 NEED_MAKE_UPGRADE= t
212 .endif
213 .if exists(${MYMAKE})
214 SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
215 .elif defined(NEED_MAKE_UPGRADE)
216 # It may not exist yet but we may cause it to.
217 # In the case of fmake, upgrade_checks may cause a newer version to be built.
218 SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
219         -m ${.CURDIR}/share/mk
220 .else
221 SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
222 .endif
223
224 _MAKE=  PATH=${PATH} MAKE_CMD=${MAKE} ${SUB_MAKE} -f Makefile.inc1 \
225         TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
226
227 # Only allow meta mode for the whitelisted targets.  See META_TGT_WHITELIST
228 # above.
229 .for _tgt in ${META_TGT_WHITELIST}
230 .if make(${_tgt})
231 _CAN_USE_META_MODE?= yes
232 .endif
233 .endfor
234 .if !defined(_CAN_USE_META_MODE)
235 _MAKE+= MK_META_MODE=no
236 .if defined(.PARSEDIR)
237 .unexport META_MODE
238 .endif
239 .elif defined(MK_META_MODE) && ${MK_META_MODE} == "yes"
240 .if !exists(/dev/filemon) && !defined(NO_FILEMON) && !make(showconfig)
241 # Require filemon be loaded to provide a working incremental build
242 .error ${.newline}ERROR: The filemon module (/dev/filemon) is not loaded. \
243     ${.newline}ERROR: WITH_META_MODE is enabled but requires filemon for an incremental build. \
244     ${.newline}ERROR: 'kldload filemon' or pass -DNO_FILEMON to suppress this error.
245 .endif  # !exists(/dev/filemon) && !defined(NO_FILEMON)
246 .endif  # !defined(_CAN_USE_META_MODE)
247
248 # Guess machine architecture from machine type, and vice versa.
249 .if !defined(TARGET_ARCH) && defined(TARGET)
250 _TARGET_ARCH=   ${TARGET:S/arm64/aarch64/}
251 .elif !defined(TARGET) && defined(TARGET_ARCH) && \
252     ${TARGET_ARCH} != ${MACHINE_ARCH}
253 _TARGET=                ${TARGET_ARCH:C/mips(n32|64)?(el)?(hf)?/mips/:C/arm(v6)?(eb)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/:C/powerpcspe/powerpc/:C/riscv64(sf)?/riscv/}
254 .endif
255 .if defined(TARGET) && !defined(_TARGET)
256 _TARGET=${TARGET}
257 .endif
258 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
259 _TARGET_ARCH=${TARGET_ARCH}
260 .endif
261 # for historical compatibility for xdev targets
262 .if defined(XDEV)
263 _TARGET=        ${XDEV}
264 .endif
265 .if defined(XDEV_ARCH)
266 _TARGET_ARCH=   ${XDEV_ARCH}
267 .endif
268 # Otherwise, default to current machine type and architecture.
269 _TARGET?=       ${MACHINE}
270 _TARGET_ARCH?=  ${MACHINE_ARCH}
271
272 .if make(print-dir)
273 .SILENT:
274 .endif
275
276 #
277 # Make sure we have an up-to-date make(1). Only world and buildworld
278 # should do this as those are the initial targets used for upgrades.
279 # The user can define ALWAYS_CHECK_MAKE to have this check performed
280 # for all targets.
281 #
282 .if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
283 ${TGTS}: upgrade_checks
284 .else
285 buildworld: upgrade_checks
286 .endif
287
288 #
289 # Handle the user-driven targets, using the source relative mk files.
290 #
291
292 tinderbox toolchains kernel-toolchains: .MAKE
293 ${TGTS}: .PHONY .MAKE
294         ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
295
296 # The historic default "all" target creates files which may cause stale
297 # or (in the cross build case) unlinkable results. Fail with an error
298 # when no target is given. The users can explicitly specify "all"
299 # if they want the historic behavior.
300 .MAIN:  _guard
301
302 _guard: .PHONY
303         @echo
304         @echo "Explicit target required.  Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted.  See build(7)."
305         @echo
306         @false
307
308 STARTTIME!= LC_ALL=C date
309 CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
310 .if !empty(CHECK_TIME)
311 .error check your date/time: ${STARTTIME}
312 .endif
313
314 .if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
315 #
316 # world
317 #
318 # Attempt to rebuild and reinstall everything. This target is not to be
319 # used for upgrading an existing FreeBSD system, because the kernel is
320 # not included. One can argue that this target doesn't build everything
321 # then.
322 #
323 world: upgrade_checks .PHONY
324         @echo "--------------------------------------------------------------"
325         @echo ">>> make world started on ${STARTTIME}"
326         @echo "--------------------------------------------------------------"
327 .if target(pre-world)
328         @echo
329         @echo "--------------------------------------------------------------"
330         @echo ">>> Making 'pre-world' target"
331         @echo "--------------------------------------------------------------"
332         ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
333 .endif
334         ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
335         ${_+_}@cd ${.CURDIR}; ${_MAKE} installworld MK_META_MODE=no
336 .if target(post-world)
337         @echo
338         @echo "--------------------------------------------------------------"
339         @echo ">>> Making 'post-world' target"
340         @echo "--------------------------------------------------------------"
341         ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
342 .endif
343         @echo
344         @echo "--------------------------------------------------------------"
345         @echo ">>> make world completed on `LC_ALL=C date`"
346         @echo "                   (started ${STARTTIME})"
347         @echo "--------------------------------------------------------------"
348 .else
349 world: .PHONY
350         @echo "WARNING: make world will overwrite your existing FreeBSD"
351         @echo "installation without also building and installing a new"
352         @echo "kernel.  This can be dangerous.  Please read the handbook,"
353         @echo "'Rebuilding world', for how to upgrade your system."
354         @echo "Define DESTDIR to where you want to install FreeBSD,"
355         @echo "including /, to override this warning and proceed as usual."
356         @echo ""
357         @echo "Bailing out now..."
358         @false
359 .endif
360
361 #
362 # kernel
363 #
364 # Short hand for `make buildkernel installkernel'
365 #
366 kernel: buildkernel installkernel .PHONY
367
368 #
369 # Perform a few tests to determine if the installed tools are adequate
370 # for building the world.
371 #
372 upgrade_checks: .PHONY
373 .if defined(NEED_MAKE_UPGRADE)
374         @${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
375 .endif
376
377 #
378 # Upgrade make(1) to the current version using the installed
379 # headers, libraries and tools.  Also, allow the location of
380 # the system bsdmake-like utility to be overridden.
381 #
382 MMAKEENV=       MAKEOBJDIRPREFIX=${MYMAKE:H} \
383                 DESTDIR= \
384                 INSTALL="sh ${.CURDIR}/tools/install.sh"
385 MMAKE=          ${MMAKEENV} ${MAKE} \
386                 MAN= -DNO_SHARED \
387                 -DNO_CPU_CFLAGS -DNO_WERROR \
388                 -DNO_SUBDIR \
389                 DESTDIR= PROGNAME=${MYMAKE:T}
390
391 bmake: .PHONY
392         @echo
393         @echo "--------------------------------------------------------------"
394         @echo ">>> Building an up-to-date ${.TARGET}(1)"
395         @echo "--------------------------------------------------------------"
396         ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
397                 ${MMAKE} obj; \
398                 ${MMAKE} depend; \
399                 ${MMAKE} all; \
400                 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
401
402 regress: .PHONY
403         @echo "'make regress' has been renamed 'make check'" | /usr/bin/fmt
404         @false
405
406 tinderbox toolchains kernel-toolchains kernels worlds: upgrade_checks
407
408 tinderbox: .PHONY
409         @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
410
411 toolchains: .PHONY
412         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
413
414 kernel-toolchains: .PHONY
415         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
416
417 kernels: .PHONY
418         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildkernel universe
419
420 worlds: .PHONY
421         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildworld universe
422
423 #
424 # universe
425 #
426 # Attempt to rebuild *everything* for all supported architectures,
427 # with a reasonable chance of success, regardless of how old your
428 # existing system is.
429 #
430 .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
431 TARGETS?=amd64 arm arm64 i386 mips powerpc riscv sparc64
432 _UNIVERSE_TARGETS=      ${TARGETS}
433 TARGET_ARCHES_arm?=     arm armeb armv6
434 TARGET_ARCHES_arm64?=   aarch64
435 TARGET_ARCHES_mips?=    mipsel mips mips64el mips64 mipsn32 mipselhf mipshf mips64elhf mips64hf
436 TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpcspe
437 TARGET_ARCHES_riscv?=   riscv64 riscv64sf
438 .for target in ${TARGETS}
439 TARGET_ARCHES_${target}?= ${target}
440 .endfor
441
442 MAKE_PARAMS_riscv?=     CROSS_TOOLCHAIN=riscv64-gcc
443
444 # XXX Remove architectures only supported by external toolchain from universe
445 # if required toolchain packages are missing.
446 TOOLCHAINS_riscv=       riscv64
447 .for target in riscv
448 .if ${_UNIVERSE_TARGETS:M${target}}
449 .for toolchain in ${TOOLCHAINS_${target}}
450 .if !exists(/usr/local/share/toolchains/${toolchain}-gcc.mk)
451 _UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:N${target}}
452 universe: universe_${toolchain}_skip .PHONY
453 universe_epilogue: universe_${toolchain}_skip .PHONY
454 universe_${toolchain}_skip: universe_prologue .PHONY
455         @echo ">> ${target} skipped - install ${toolchain}-xtoolchain-gcc port or package to build"
456 .endif
457 .endfor
458 .endif
459 .endfor
460
461 .if defined(UNIVERSE_TARGET)
462 MAKE_JUST_WORLDS=       YES
463 .else
464 UNIVERSE_TARGET?=       buildworld
465 .endif
466 KERNSRCDIR?=            ${.CURDIR}/sys
467
468 targets:        .PHONY
469         @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
470 .for target in ${TARGETS}
471 .for target_arch in ${TARGET_ARCHES_${target}}
472         @echo "    ${target}/${target_arch}"
473 .endfor
474 .endfor
475
476 .if defined(DOING_TINDERBOX)
477 FAILFILE=${.CURDIR}/_.tinderbox.failed
478 MAKEFAIL=tee -a ${FAILFILE}
479 .else
480 MAKEFAIL=cat
481 .endif
482
483 universe_prologue:  upgrade_checks
484 universe: universe_prologue
485 universe_prologue: .PHONY
486         @echo "--------------------------------------------------------------"
487         @echo ">>> make universe started on ${STARTTIME}"
488         @echo "--------------------------------------------------------------"
489 .if defined(DOING_TINDERBOX)
490         @rm -f ${FAILFILE}
491 .endif
492 .for target in ${_UNIVERSE_TARGETS}
493 universe: universe_${target}
494 universe_epilogue: universe_${target}
495 universe_${target}: universe_${target}_prologue .PHONY
496 universe_${target}_prologue: universe_prologue .PHONY
497         @echo ">> ${target} started on `LC_ALL=C date`"
498 universe_${target}_worlds: .PHONY
499
500 .if !defined(MAKE_JUST_KERNELS)
501 universe_${target}_done: universe_${target}_worlds .PHONY
502 .for target_arch in ${TARGET_ARCHES_${target}}
503 universe_${target}_worlds: universe_${target}_${target_arch} .PHONY
504 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE .PHONY
505         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
506         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
507             ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
508             TARGET=${target} \
509             TARGET_ARCH=${target_arch} \
510             ${MAKE_PARAMS_${target}} \
511             > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
512             (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
513             "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
514             ${MAKEFAIL}))
515         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
516 .endfor
517 .endif # !MAKE_JUST_KERNELS
518
519 .if !defined(MAKE_JUST_WORLDS)
520 universe_${target}_done: universe_${target}_kernels .PHONY
521 universe_${target}_kernels: universe_${target}_worlds .PHONY
522 universe_${target}_kernels: universe_${target}_prologue .MAKE .PHONY
523 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
524         @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
525             ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
526             (echo "${target} 'make LINT' failed," \
527             "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
528 .endif
529         @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
530             universe_kernels
531 .endif # !MAKE_JUST_WORLDS
532
533 # Tell the user the worlds and kernels have completed
534 universe_${target}: universe_${target}_done
535 universe_${target}_done:
536         @echo ">> ${target} completed on `LC_ALL=C date`"
537 .endfor
538 universe_kernels: universe_kernconfs .PHONY
539 .if !defined(TARGET)
540 TARGET!=        uname -m
541 .endif
542 .if defined(MAKE_ALL_KERNELS)
543 _THINNER=cat
544 .elif defined(MAKE_LINT_KERNELS)
545 _THINNER=grep 'LINT' || true
546 .else
547 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
548 .endif
549 KERNCONFS!=     cd ${KERNSRCDIR}/${TARGET}/conf && \
550                 find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
551                 -type f -maxdepth 0 \
552                 ! -name DEFAULTS ! -name NOTES | \
553                 ${_THINNER}
554 universe_kernconfs: .PHONY
555 .for kernel in ${KERNCONFS}
556 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
557         config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
558         grep -v WARNING: | cut -f 2
559 .if empty(TARGET_ARCH_${kernel})
560 .error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
561 .endif
562 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
563 universe_kernconf_${TARGET}_${kernel}: .MAKE
564         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
565             ${SUB_MAKE} ${JFLAG} buildkernel \
566             TARGET=${TARGET} \
567             TARGET_ARCH=${TARGET_ARCH_${kernel}} \
568             ${MAKE_PARAMS_${TARGET}} \
569             KERNCONF=${kernel} \
570             > _.${TARGET}.${kernel} 2>&1 || \
571             (echo "${TARGET} ${kernel} kernel failed," \
572             "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
573 .endfor
574 universe: universe_epilogue
575 universe_epilogue: .PHONY
576         @echo "--------------------------------------------------------------"
577         @echo ">>> make universe completed on `LC_ALL=C date`"
578         @echo "                      (started ${STARTTIME})"
579         @echo "--------------------------------------------------------------"
580 .if defined(DOING_TINDERBOX)
581         @if [ -e ${FAILFILE} ] ; then \
582                 echo "Tinderbox failed:" ;\
583                 cat ${FAILFILE} ;\
584                 exit 1 ;\
585         fi
586 .endif
587 .endif
588
589 buildLINT: .PHONY
590         ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
591
592 .if defined(.PARSEDIR)
593 # This makefile does not run in meta mode
594 .MAKE.MODE= normal
595 # Normally the things we run from here don't either.
596 # Using -DWITH_META_MODE
597 # we can buildworld with meta files created which are useful 
598 # for debugging, but without any of the rest of a meta mode build.
599 MK_DIRDEPS_BUILD= no
600 MK_STAGING= no
601 # tell meta.autodep.mk to not even think about updating anything.
602 UPDATE_DEPENDFILE= NO
603 .if !make(showconfig)
604 .export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE
605 .endif
606
607 .if make(universe)
608 # we do not want a failure of one branch abort all.
609 MAKE_JOB_ERROR_TOKEN= no
610 .export MAKE_JOB_ERROR_TOKEN
611 .endif
612 .endif # bmake
613
614 .endif                          # DIRDEPS_BUILD