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