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