]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - Makefile
Fix xdev TARGET/TARGET_ARCH assertion and expand to native-xtools.
[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 # These targets require a TARGET and TARGET_ARCH be defined.
139 XTGTS=  native-xtools xdev xdev-build xdev-install xdev-links
140
141 # XXX: r156740: This can't work since bsd.subdir.mk is not included ever.
142 # It will only work for SUBDIR_TARGETS in make.conf.
143 TGTS+=  ${SUBDIR_TARGETS}
144
145 BITGTS= files includes
146 BITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
147 TGTS+=  ${BITGTS}
148
149 # Only some targets are allowed to use meta mode.  Others get it
150 # disabled.  In some cases, such as 'install', meta mode can be dangerous
151 # as a cookie may be used to prevent redundant installations (such as
152 # for WORLDTMP staging).  For DESTDIR=/ we always want to install though.
153 # For other cases, such as delete-old-libs, meta mode may break
154 # the interactive tty prompt.  The safest route is to just whitelist
155 # the ones that benefit from it.
156 META_TGT_WHITELIST+= \
157         _* build32 buildfiles buildincludes buildkernel buildsoft \
158         buildworld everything kernel-toolchain kernel-toolchains kernel \
159         kernels libraries native-xtools showconfig test-system-compiler \
160         tinderbox toolchain \
161         toolchains universe world worlds xdev xdev-build
162
163 .ORDER: buildworld installworld
164 .ORDER: buildworld distrib-dirs
165 .ORDER: buildworld distribution
166 .ORDER: buildworld distribute
167 .ORDER: buildworld distributeworld
168 .ORDER: buildworld buildkernel
169 .ORDER: distrib-dirs distribute
170 .ORDER: distrib-dirs distributeworld
171 .ORDER: distrib-dirs installworld
172 .ORDER: distribution distribute
173 .ORDER: distributeworld distribute
174 .ORDER: distributeworld distribution
175 .ORDER: installworld distribute
176 .ORDER: installworld distribution
177 .ORDER: installworld installkernel
178 .ORDER: buildkernel installkernel
179 .ORDER: buildkernel installkernel.debug
180 .ORDER: buildkernel reinstallkernel
181 .ORDER: buildkernel reinstallkernel.debug
182
183 PATH=   /sbin:/bin:/usr/sbin:/usr/bin
184 MAKEOBJDIRPREFIX?=      /usr/obj
185 _MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} MK_AUTO_OBJ=no \
186     ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
187     -f /dev/null -V MAKEOBJDIRPREFIX dummy
188 .if !empty(_MAKEOBJDIRPREFIX)
189 .error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
190         (in make.conf(5)) or command-line variable.
191 .endif
192
193 # We often need to use the tree's version of make to build it.
194 # Choices add to complexity though.
195 # We cannot blindly use a make which may not be the one we want
196 # so be exlicit - until all choice is removed.
197 WANT_MAKE=      bmake
198 .if !empty(.MAKE.MODE:Mmeta)
199 # 20160604 - support missing-meta,missing-filemon and performance improvements
200 WANT_MAKE_VERSION= 20160604
201 .else
202 # 20160220 - support .dinclude for FAST_DEPEND.
203 WANT_MAKE_VERSION= 20160220
204 .endif
205 MYMAKE=         ${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
206 .if defined(.PARSEDIR)
207 HAVE_MAKE=      bmake
208 .else
209 HAVE_MAKE=      fmake
210 .endif
211 .if defined(ALWAYS_BOOTSTRAP_MAKE) || \
212     ${HAVE_MAKE} != ${WANT_MAKE} || \
213     (defined(WANT_MAKE_VERSION) && ${MAKE_VERSION} < ${WANT_MAKE_VERSION})
214 NEED_MAKE_UPGRADE= t
215 .endif
216 .if exists(${MYMAKE})
217 SUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
218 .elif defined(NEED_MAKE_UPGRADE)
219 # It may not exist yet but we may cause it to.
220 # In the case of fmake, upgrade_checks may cause a newer version to be built.
221 SUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
222         -m ${.CURDIR}/share/mk
223 .else
224 SUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
225 .endif
226
227 _MAKE=  PATH=${PATH} MAKE_CMD="${MAKE}" ${SUB_MAKE} -f Makefile.inc1 \
228         TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
229
230 # Only allow meta mode for the whitelisted targets.  See META_TGT_WHITELIST
231 # above.
232 .for _tgt in ${META_TGT_WHITELIST}
233 .if make(${_tgt})
234 _CAN_USE_META_MODE?= yes
235 .endif
236 .endfor
237 .if !defined(_CAN_USE_META_MODE)
238 _MAKE+= MK_META_MODE=no
239 .if defined(.PARSEDIR)
240 .unexport META_MODE
241 .endif
242 .elif defined(MK_META_MODE) && ${MK_META_MODE} == "yes"
243 .if !exists(/dev/filemon) && !defined(NO_FILEMON) && !make(showconfig)
244 # Require filemon be loaded to provide a working incremental build
245 .error ${.newline}ERROR: The filemon module (/dev/filemon) is not loaded. \
246     ${.newline}ERROR: WITH_META_MODE is enabled but requires filemon for an incremental build. \
247     ${.newline}ERROR: 'kldload filemon' or pass -DNO_FILEMON to suppress this error.
248 .endif  # !exists(/dev/filemon) && !defined(NO_FILEMON)
249 .endif  # !defined(_CAN_USE_META_MODE)
250
251 # Guess target architecture from target type, and vice versa, based on
252 # historic FreeBSD practice of tending to have TARGET == TARGET_ARCH
253 # expanding to TARGET == TARGET_CPUARCH in recent times, with known
254 # exceptions.
255 .if !defined(TARGET_ARCH) && defined(TARGET)
256 # T->TA mapping is usually TARGET with arm64 the odd man out
257 _TARGET_ARCH=   ${TARGET:S/arm64/aarch64/}
258 .elif !defined(TARGET) && defined(TARGET_ARCH) && \
259     ${TARGET_ARCH} != ${MACHINE_ARCH}
260 # TA->T mapping is accidentally CPUARCH with aarch64 the odd man out
261 _TARGET=        ${TARGET_ARCH:${__TO_CPUARCH}:C/aarch64/arm64/}
262 .endif
263 .if defined(TARGET) && !defined(_TARGET)
264 _TARGET=${TARGET}
265 .endif
266 .if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
267 _TARGET_ARCH=${TARGET_ARCH}
268 .endif
269 # for historical compatibility for xdev targets
270 .if defined(XDEV)
271 _TARGET=        ${XDEV}
272 .endif
273 .if defined(XDEV_ARCH)
274 _TARGET_ARCH=   ${XDEV_ARCH}
275 .endif
276 # Some targets require a set TARGET/TARGET_ARCH, check before the default
277 # MACHINE and after the compatibility handling.
278 .if !defined(_TARGET) || !defined(_TARGET_ARCH)
279 ${XTGTS}: _assert_target
280 .endif
281 # Otherwise, default to current machine type and architecture.
282 _TARGET?=       ${MACHINE}
283 _TARGET_ARCH?=  ${MACHINE_ARCH}
284
285 .if make(print-dir)
286 .SILENT:
287 .endif
288
289 _assert_target: .PHONY .MAKE
290 .for _tgt in ${XTGTS}
291 .if make(${_tgt})
292         @echo "*** Error: Both TARGET and TARGET_ARCH must be defined for \"${_tgt}\" target"
293         @false
294 .endif
295 .endfor
296
297 #
298 # Make sure we have an up-to-date make(1). Only world and buildworld
299 # should do this as those are the initial targets used for upgrades.
300 # The user can define ALWAYS_CHECK_MAKE to have this check performed
301 # for all targets.
302 #
303 .if defined(ALWAYS_CHECK_MAKE) || !defined(.PARSEDIR)
304 ${TGTS}: upgrade_checks
305 .else
306 buildworld: upgrade_checks
307 .endif
308
309 #
310 # Handle the user-driven targets, using the source relative mk files.
311 #
312
313 tinderbox toolchains kernel-toolchains: .MAKE
314 ${TGTS}: .PHONY .MAKE
315         ${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
316
317 # The historic default "all" target creates files which may cause stale
318 # or (in the cross build case) unlinkable results. Fail with an error
319 # when no target is given. The users can explicitly specify "all"
320 # if they want the historic behavior.
321 .MAIN:  _guard
322
323 _guard: .PHONY
324         @echo
325         @echo "Explicit target required.  Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted.  See build(7)."
326         @echo
327         @false
328
329 STARTTIME!= LC_ALL=C date
330 CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
331 .if !empty(CHECK_TIME)
332 .error check your date/time: ${STARTTIME}
333 .endif
334
335 .if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
336 #
337 # world
338 #
339 # Attempt to rebuild and reinstall everything. This target is not to be
340 # used for upgrading an existing FreeBSD system, because the kernel is
341 # not included. One can argue that this target doesn't build everything
342 # then.
343 #
344 world: upgrade_checks .PHONY
345         @echo "--------------------------------------------------------------"
346         @echo ">>> make world started on ${STARTTIME}"
347         @echo "--------------------------------------------------------------"
348 .if target(pre-world)
349         @echo
350         @echo "--------------------------------------------------------------"
351         @echo ">>> Making 'pre-world' target"
352         @echo "--------------------------------------------------------------"
353         ${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
354 .endif
355         ${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
356         ${_+_}@cd ${.CURDIR}; ${_MAKE} installworld MK_META_MODE=no
357 .if target(post-world)
358         @echo
359         @echo "--------------------------------------------------------------"
360         @echo ">>> Making 'post-world' target"
361         @echo "--------------------------------------------------------------"
362         ${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
363 .endif
364         @echo
365         @echo "--------------------------------------------------------------"
366         @echo ">>> make world completed on `LC_ALL=C date`"
367         @echo "                   (started ${STARTTIME})"
368         @echo "--------------------------------------------------------------"
369 .else
370 world: .PHONY
371         @echo "WARNING: make world will overwrite your existing FreeBSD"
372         @echo "installation without also building and installing a new"
373         @echo "kernel.  This can be dangerous.  Please read the handbook,"
374         @echo "'Rebuilding world', for how to upgrade your system."
375         @echo "Define DESTDIR to where you want to install FreeBSD,"
376         @echo "including /, to override this warning and proceed as usual."
377         @echo ""
378         @echo "Bailing out now..."
379         @false
380 .endif
381
382 #
383 # kernel
384 #
385 # Short hand for `make buildkernel installkernel'
386 #
387 kernel: buildkernel installkernel .PHONY
388
389 #
390 # Perform a few tests to determine if the installed tools are adequate
391 # for building the world.
392 #
393 upgrade_checks: .PHONY
394 .if defined(NEED_MAKE_UPGRADE)
395         @${_+_}(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
396 .endif
397
398 #
399 # Upgrade make(1) to the current version using the installed
400 # headers, libraries and tools.  Also, allow the location of
401 # the system bsdmake-like utility to be overridden.
402 #
403 MMAKEENV=       MAKEOBJDIRPREFIX=${MYMAKE:H} \
404                 DESTDIR= \
405                 INSTALL="sh ${.CURDIR}/tools/install.sh"
406 MMAKE=          ${MMAKEENV} ${MAKE} \
407                 MAN= -DNO_SHARED \
408                 -DNO_CPU_CFLAGS -DNO_WERROR \
409                 -DNO_SUBDIR \
410                 DESTDIR= PROGNAME=${MYMAKE:T}
411
412 bmake: .PHONY
413         @echo
414         @echo "--------------------------------------------------------------"
415         @echo ">>> Building an up-to-date ${.TARGET}(1)"
416         @echo "--------------------------------------------------------------"
417         ${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
418                 ${MMAKE} obj; \
419                 ${MMAKE} depend; \
420                 ${MMAKE} all; \
421                 ${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
422
423 regress: .PHONY
424         @echo "'make regress' has been renamed 'make check'" | /usr/bin/fmt
425         @false
426
427 tinderbox toolchains kernel-toolchains kernels worlds: upgrade_checks
428
429 tinderbox: .PHONY
430         @cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
431
432 toolchains: .PHONY
433         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
434
435 kernel-toolchains: .PHONY
436         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
437
438 kernels: .PHONY
439         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildkernel universe
440
441 worlds: .PHONY
442         @cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=buildworld universe
443
444 #
445 # universe
446 #
447 # Attempt to rebuild *everything* for all supported architectures,
448 # with a reasonable chance of success, regardless of how old your
449 # existing system is.
450 #
451 .if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
452 TARGETS?=amd64 arm arm64 i386 mips powerpc riscv sparc64
453 _UNIVERSE_TARGETS=      ${TARGETS}
454 TARGET_ARCHES_arm?=     arm armeb armv6 armv7
455 TARGET_ARCHES_arm64?=   aarch64
456 TARGET_ARCHES_mips?=    mipsel mips mips64el mips64 mipsn32 mipselhf mipshf mips64elhf mips64hf
457 TARGET_ARCHES_powerpc?= powerpc powerpc64 powerpcspe
458 TARGET_ARCHES_riscv?=   riscv64 riscv64sf
459 .for target in ${TARGETS}
460 TARGET_ARCHES_${target}?= ${target}
461 .endfor
462
463 MAKE_PARAMS_riscv?=     CROSS_TOOLCHAIN=riscv64-gcc
464
465 # XXX Remove architectures only supported by external toolchain from universe
466 # if required toolchain packages are missing.
467 TOOLCHAINS_riscv=       riscv64
468 .for target in riscv
469 .if ${_UNIVERSE_TARGETS:M${target}}
470 .for toolchain in ${TOOLCHAINS_${target}}
471 .if !exists(/usr/local/share/toolchains/${toolchain}-gcc.mk)
472 _UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:N${target}}
473 universe: universe_${toolchain}_skip .PHONY
474 universe_epilogue: universe_${toolchain}_skip .PHONY
475 universe_${toolchain}_skip: universe_prologue .PHONY
476         @echo ">> ${target} skipped - install ${toolchain}-xtoolchain-gcc port or package to build"
477 .endif
478 .endfor
479 .endif
480 .endfor
481
482 .if defined(UNIVERSE_TARGET)
483 MAKE_JUST_WORLDS=       YES
484 .else
485 UNIVERSE_TARGET?=       buildworld
486 .endif
487 KERNSRCDIR?=            ${.CURDIR}/sys
488
489 targets:        .PHONY
490         @echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
491 .for target in ${TARGETS}
492 .for target_arch in ${TARGET_ARCHES_${target}}
493         @echo "    ${target}/${target_arch}"
494 .endfor
495 .endfor
496
497 .if defined(DOING_TINDERBOX)
498 FAILFILE=${.CURDIR}/_.tinderbox.failed
499 MAKEFAIL=tee -a ${FAILFILE}
500 .else
501 MAKEFAIL=cat
502 .endif
503
504 universe_prologue:  upgrade_checks
505 universe: universe_prologue
506 universe_prologue: .PHONY
507         @echo "--------------------------------------------------------------"
508         @echo ">>> make universe started on ${STARTTIME}"
509         @echo "--------------------------------------------------------------"
510 .if defined(DOING_TINDERBOX)
511         @rm -f ${FAILFILE}
512 .endif
513 .for target in ${_UNIVERSE_TARGETS}
514 universe: universe_${target}
515 universe_epilogue: universe_${target}
516 universe_${target}: universe_${target}_prologue .PHONY
517 universe_${target}_prologue: universe_prologue .PHONY
518         @echo ">> ${target} started on `LC_ALL=C date`"
519 universe_${target}_worlds: .PHONY
520
521 .if !defined(MAKE_JUST_KERNELS)
522 universe_${target}_done: universe_${target}_worlds .PHONY
523 .for target_arch in ${TARGET_ARCHES_${target}}
524 universe_${target}_worlds: universe_${target}_${target_arch} .PHONY
525 universe_${target}_${target_arch}: universe_${target}_prologue .MAKE .PHONY
526         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
527         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
528             ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
529             TARGET=${target} \
530             TARGET_ARCH=${target_arch} \
531             ${MAKE_PARAMS_${target}} \
532             > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
533             (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
534             "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
535             ${MAKEFAIL}))
536         @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
537 .endfor
538 .endif # !MAKE_JUST_KERNELS
539
540 .if !defined(MAKE_JUST_WORLDS)
541 universe_${target}_done: universe_${target}_kernels .PHONY
542 universe_${target}_kernels: universe_${target}_worlds .PHONY
543 universe_${target}_kernels: universe_${target}_prologue .MAKE .PHONY
544 .if exists(${KERNSRCDIR}/${target}/conf/NOTES)
545         @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
546             ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
547             (echo "${target} 'make LINT' failed," \
548             "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
549 .endif
550         @cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
551             universe_kernels
552 .endif # !MAKE_JUST_WORLDS
553
554 # Tell the user the worlds and kernels have completed
555 universe_${target}: universe_${target}_done
556 universe_${target}_done:
557         @echo ">> ${target} completed on `LC_ALL=C date`"
558 .endfor
559 universe_kernels: universe_kernconfs .PHONY
560 .if !defined(TARGET)
561 TARGET!=        uname -m
562 .endif
563 .if defined(MAKE_ALL_KERNELS)
564 _THINNER=cat
565 .elif defined(MAKE_LINT_KERNELS)
566 _THINNER=grep 'LINT' || true
567 .else
568 _THINNER=xargs grep -L "^.NO_UNIVERSE" || true
569 .endif
570 KERNCONFS!=     cd ${KERNSRCDIR}/${TARGET}/conf && \
571                 find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
572                 -type f -maxdepth 0 \
573                 ! -name DEFAULTS ! -name NOTES | \
574                 ${_THINNER}
575 universe_kernconfs: .PHONY
576 .for kernel in ${KERNCONFS}
577 TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
578         config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
579         grep -v WARNING: | cut -f 2
580 .if empty(TARGET_ARCH_${kernel})
581 .error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
582 .endif
583 universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
584 universe_kernconf_${TARGET}_${kernel}: .MAKE
585         @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
586             ${SUB_MAKE} ${JFLAG} buildkernel \
587             TARGET=${TARGET} \
588             TARGET_ARCH=${TARGET_ARCH_${kernel}} \
589             ${MAKE_PARAMS_${TARGET}} \
590             KERNCONF=${kernel} \
591             > _.${TARGET}.${kernel} 2>&1 || \
592             (echo "${TARGET} ${kernel} kernel failed," \
593             "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
594 .endfor
595 universe: universe_epilogue
596 universe_epilogue: .PHONY
597         @echo "--------------------------------------------------------------"
598         @echo ">>> make universe completed on `LC_ALL=C date`"
599         @echo "                      (started ${STARTTIME})"
600         @echo "--------------------------------------------------------------"
601 .if defined(DOING_TINDERBOX)
602         @if [ -e ${FAILFILE} ] ; then \
603                 echo "Tinderbox failed:" ;\
604                 cat ${FAILFILE} ;\
605                 exit 1 ;\
606         fi
607 .endif
608 .endif
609
610 buildLINT: .PHONY
611         ${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
612
613 .if defined(.PARSEDIR)
614 # This makefile does not run in meta mode
615 .MAKE.MODE= normal
616 # Normally the things we run from here don't either.
617 # Using -DWITH_META_MODE
618 # we can buildworld with meta files created which are useful 
619 # for debugging, but without any of the rest of a meta mode build.
620 MK_DIRDEPS_BUILD= no
621 MK_STAGING= no
622 # tell meta.autodep.mk to not even think about updating anything.
623 UPDATE_DEPENDFILE= NO
624 .if !make(showconfig)
625 .export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE
626 .endif
627
628 .if make(universe)
629 # we do not want a failure of one branch abort all.
630 MAKE_JOB_ERROR_TOKEN= no
631 .export MAKE_JOB_ERROR_TOKEN
632 .endif
633 .endif # bmake
634
635 .endif                          # DIRDEPS_BUILD