Makefile revision 291605
1125699Spjd#
2125699Spjd# $FreeBSD: head/Makefile 291605 2015-12-01 19:00:43Z bdrewery $
3125699Spjd#
4125699Spjd# The user-driven targets are:
5125699Spjd#
6125699Spjd# universe            - *Really* build *everything* (buildworld and
7125699Spjd#                       all kernels on all architectures).
8125699Spjd# tinderbox           - Same as universe, but presents a list of failed build
9125699Spjd#                       targets and exits with an error if there were any.
10125699Spjd# buildworld          - Rebuild *everything*, including glue to help do
11125699Spjd#                       upgrades.
12125699Spjd# installworld        - Install everything built by "buildworld".
13125699Spjd# world               - buildworld + installworld, no kernel.
14125699Spjd# buildkernel         - Rebuild the kernel and the kernel-modules.
15125699Spjd# installkernel       - Install the kernel and the kernel-modules.
16125699Spjd# installkernel.debug
17125699Spjd# reinstallkernel     - Reinstall the kernel and the kernel-modules.
18125699Spjd# reinstallkernel.debug
19125699Spjd# kernel              - buildkernel + installkernel.
20125699Spjd# kernel-toolchain    - Builds the subset of world necessary to build a kernel
21125699Spjd# kernel-toolchains   - Build kernel-toolchain for all universe targets.
22125699Spjd# doxygen             - Build API documentation of the kernel, needs doxygen.
23125699Spjd# update              - Convenient way to update your source tree(s).
24125699Spjd# check-old           - List obsolete directories/files/libraries.
25125699Spjd# check-old-dirs      - List obsolete directories.
26125699Spjd# check-old-files     - List obsolete files.
27125699Spjd# check-old-libs      - List obsolete libraries.
28131689Sru# delete-old          - Delete obsolete directories/files.
29125699Spjd# delete-old-dirs     - Delete obsolete directories.
30125699Spjd# delete-old-files    - Delete obsolete files.
31125699Spjd# delete-old-libs     - Delete obsolete libraries.
32125699Spjd# targets             - Print a list of supported TARGET/TARGET_ARCH pairs
33125699Spjd#                       for world and kernel targets.
34125699Spjd# toolchains          - Build a toolchain for all world and kernel targets.
35125699Spjd# xdev                - xdev-build + xdev-install for the architecture
36125699Spjd#                       specified with XDEV and XDEV_ARCH.
37125699Spjd# xdev-build          - Build cross-development tools.
38125699Spjd# xdev-install        - Install cross-development tools.
39125699Spjd# xdev-links          - Create traditional links in /usr/bin for cc, etc
40125699Spjd# native-xtools       - Create host binaries that produce target objects
41125699Spjd#                       for use in qemu user-mode jails.
42125699Spjd# 
43125699Spjd# "quick" way to test all kernel builds:
44125699Spjd# 	_jflag=`sysctl -n hw.ncpu`
45125699Spjd# 	_jflag=$(($_jflag * 2))
46131689Sru# 	[ $_jflag -gt 12 ] && _jflag=12
47131689Sru# 	make universe -DMAKE_JUST_KERNELS JFLAG=-j${_jflag}
48131689Sru#
49125699Spjd# This makefile is simple by design. The FreeBSD make automatically reads
50125699Spjd# the /usr/share/mk/sys.mk unless the -m argument is specified on the
51125699Spjd# command line. By keeping this makefile simple, it doesn't matter too
52125699Spjd# much how different the installed mk files are from those in the source
53125699Spjd# tree. This makefile executes a child make process, forcing it to use
54125699Spjd# the mk files from the source tree which are supposed to DTRT.
55125699Spjd#
56125699Spjd# Most of the user-driven targets (as listed above) are implemented in
57125699Spjd# Makefile.inc1.  The exceptions are universe, tinderbox and targets.
58131689Sru#
59131689Sru# If you want to build your system from source be sure that /usr/obj has
60131689Sru# at least 1GB of diskspace available.  A complete 'universe' build requires
61125699Spjd# about 15GB of space.
62125699Spjd#
63125699Spjd# For individuals wanting to build from the sources currently on their
64129386Sle# system, the simple instructions are:
65125699Spjd#
66125699Spjd# 1.  `cd /usr/src'  (or to the directory containing your source tree).
67129386Sle# 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
68125699Spjd# 3.  `make world'
69129386Sle#
70129386Sle# For individuals wanting to upgrade their sources (even if only a
71125699Spjd# delta of a few days):
72131689Sru#
73125699Spjd#  1.  `cd /usr/src'       (or to the directory containing your source tree).
74125699Spjd#  2.  `make buildworld'
75125699Spjd#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
76125699Spjd#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
77125699Spjd#       [steps 3. & 4. can be combined by using the "kernel" target]
78125699Spjd#  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
79125699Spjd#  6.  `mergemaster -p'
80125699Spjd#  7.  `make installworld'
81125699Spjd#  8.  `mergemaster'		(you may wish to use -i, along with -U or -F).
82125699Spjd#  9.  `make delete-old'
83125699Spjd# 10.  `reboot'
84125699Spjd# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
85125699Spjd#
86125699Spjd# See src/UPDATING `COMMON ITEMS' for more complete information.
87125699Spjd#
88125699Spjd# If TARGET=machine (e.g. powerpc, sparc64, ...) is specified you can
89125699Spjd# cross build world for other machine types using the buildworld target,
90125699Spjd# and once the world is built you can cross build a kernel using the
91125699Spjd# buildkernel target.
92125699Spjd#
93125699Spjd# Define the user-driven targets. These are listed here in alphabetical
94125699Spjd# order, but that's not important.
95125699Spjd#
96125699Spjd# Targets that begin with underscore are internal targets intended for
97125699Spjd# developer convenience only.  They are intentionally not documented and
98125699Spjd# completely subject to change without notice.
99125699Spjd#
100125699Spjd# For more information, see the build(7) manual page.
101125699Spjd#
102125699Spjd
103125699Spjd# This is included so CC is set to ccache for -V, and COMPILER_TYPE/VERSION
104125699Spjd# can be cached for sub-makes.
105125699Spjd.include <bsd.compiler.mk>
106125699Spjd
107125699Spjd# Note: we use this awkward construct to be compatible with FreeBSD's
108125699Spjd# old make used in 10.0 and 9.2 and earlier.
109125699Spjd.if defined(MK_DIRDEPS_BUILD) && ${MK_DIRDEPS_BUILD} == "yes" && !make(showconfig)
110125699Spjd# targets/Makefile plays the role of top-level
111125699Spjd.include "targets/Makefile"
112211397Sjoel.else
113125699Spjd
114211397SjoelTGTS=	all all-man buildenv buildenvvars buildkernel buildworld \
115125699Spjd	check-old check-old-dirs check-old-files check-old-libs \
116125699Spjd	checkdpadd clean cleandepend cleandir cleanworld \
117125699Spjd	delete-old delete-old-dirs delete-old-files delete-old-libs \
118125699Spjd	depend distribute distributekernel distributekernel.debug \
119131689Sru	distributeworld distrib-dirs distribution doxygen \
120125699Spjd	everything hier hierarchy install installcheck installkernel \
121131689Sru	installkernel.debug packagekernel packageworld \
122127371Spjd	reinstallkernel reinstallkernel.debug \
123125699Spjd	installworld kernel-toolchain libraries lint maninstall \
124125699Spjd	obj objlink regress rerelease showconfig tags toolchain update \
125125699Spjd	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
126125699Spjd	_build-tools _cross-tools _includes _libraries _depend \
127125699Spjd	build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
128125699Spjd	xdev-links native-xtools installconfig \
129125699Spjd
130125699SpjdTGTS+=	${SUBDIR_TARGETS}
131125699Spjd
132125699SpjdBITGTS=	files includes
133125699SpjdBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
134125699SpjdTGTS+=	${BITGTS}
135125699Spjd
136125699Spjd.ORDER: buildworld installworld
137125699Spjd.ORDER: buildworld distributeworld
138125699Spjd.ORDER: buildworld buildkernel
139125699Spjd.ORDER: buildkernel installkernel
140125699Spjd.ORDER: buildkernel installkernel.debug
141125699Spjd.ORDER: buildkernel reinstallkernel
142125699Spjd.ORDER: buildkernel reinstallkernel.debug
143125699Spjd
144125699SpjdPATH=	/sbin:/bin:/usr/sbin:/usr/bin
145125699SpjdMAKEOBJDIRPREFIX?=	/usr/obj
146125699Spjd_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
147125699Spjd    ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
148125699Spjd    -f /dev/null -V MAKEOBJDIRPREFIX dummy
149125699Spjd.if !empty(_MAKEOBJDIRPREFIX)
150125699Spjd.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
151125699Spjd	(in make.conf(5)) or command-line variable.
152125699Spjd.endif
153125699Spjd
154125699Spjd# We often need to use the tree's version of make to build it.
155125699Spjd# Choices add to complexity though.
156125699Spjd# We cannot blindly use a make which may not be the one we want
157125699Spjd# so be exlicit - until all choice is removed.
158125699SpjdWANT_MAKE=	bmake
159125699SpjdMYMAKE=		${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}/${WANT_MAKE}
160125699Spjd.if defined(.PARSEDIR)
161125699SpjdHAVE_MAKE=	bmake
162125699Spjd.else
163125699SpjdHAVE_MAKE=	fmake
164125699Spjd.endif
165125699Spjd.if exists(${MYMAKE})
166127371SpjdSUB_MAKE:= ${MYMAKE} -m ${.CURDIR}/share/mk
167127371Spjd.elif ${WANT_MAKE} != ${HAVE_MAKE}
168127371Spjd# It may not exist yet but we may cause it to.
169127371Spjd# In the case of fmake, upgrade_checks may cause a newer version to be built.
170127371SpjdSUB_MAKE= `test -x ${MYMAKE} && echo ${MYMAKE} || echo ${MAKE}` \
171125699Spjd	-m ${.CURDIR}/share/mk
172125699Spjd.else
173125699SpjdSUB_MAKE= ${MAKE} -m ${.CURDIR}/share/mk
174125699Spjd.endif
175125699Spjd
176125699Spjd_MAKE=	PATH=${PATH} ${SUB_MAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
177125699Spjd
178125699Spjd# Guess machine architecture from machine type, and vice versa.
179125699Spjd.if !defined(TARGET_ARCH) && defined(TARGET)
180125699Spjd_TARGET_ARCH=	${TARGET:S/pc98/i386/:S/arm64/aarch64/}
181125699Spjd.elif !defined(TARGET) && defined(TARGET_ARCH) && \
182125699Spjd    ${TARGET_ARCH} != ${MACHINE_ARCH}
183125699Spjd_TARGET=		${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb|hf)?/arm/:C/aarch64/arm64/:C/powerpc64/powerpc/}
184125699Spjd.endif
185125699Spjd.if defined(TARGET) && !defined(_TARGET)
186125699Spjd_TARGET=${TARGET}
187125699Spjd.endif
188125699Spjd.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
189125699Spjd_TARGET_ARCH=${TARGET_ARCH}
190125699Spjd.endif
191125699Spjd# for historical compatibility for xdev targets
192131594Sru.if defined(XDEV)
193125699Spjd_TARGET=	${XDEV}
194126861Spjd.endif
195125699Spjd.if defined(XDEV_ARCH)
196125699Spjd_TARGET_ARCH=	${XDEV_ARCH}
197125699Spjd.endif
198125699Spjd# Otherwise, default to current machine type and architecture.
199125699Spjd_TARGET?=	${MACHINE}
200125699Spjd_TARGET_ARCH?=	${MACHINE_ARCH}
201125699Spjd
202125699Spjd#
203125699Spjd# Make sure we have an up-to-date make(1). Only world and buildworld
204125699Spjd# should do this as those are the initial targets used for upgrades.
205125699Spjd# The user can define ALWAYS_CHECK_MAKE to have this check performed
206125699Spjd# for all targets.
207#
208.if defined(ALWAYS_CHECK_MAKE)
209${TGTS}: upgrade_checks
210.else
211buildworld: upgrade_checks
212.endif
213
214#
215# Handle the user-driven targets, using the source relative mk files.
216#
217
218tinderbox toolchains kernel-toolchains: .MAKE
219${TGTS}: .PHONY .MAKE
220	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
221
222# The historic default "all" target creates files which may cause stale
223# or (in the cross build case) unlinkable results. Fail with an error
224# when no target is given. The users can explicitly specify "all"
225# if they want the historic behavior.
226.MAIN:	_guard
227
228_guard: .PHONY
229	@echo
230	@echo "Explicit target required.  Likely \"${SUBDIR_OVERRIDE:Dall:Ubuildworld}\" is wanted.  See build(7)."
231	@echo
232	@false
233
234STARTTIME!= LC_ALL=C date
235CHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s ; echo
236.if !empty(CHECK_TIME)
237.error check your date/time: ${STARTTIME}
238.endif
239
240.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
241#
242# world
243#
244# Attempt to rebuild and reinstall everything. This target is not to be
245# used for upgrading an existing FreeBSD system, because the kernel is
246# not included. One can argue that this target doesn't build everything
247# then.
248#
249world: upgrade_checks
250	@echo "--------------------------------------------------------------"
251	@echo ">>> make world started on ${STARTTIME}"
252	@echo "--------------------------------------------------------------"
253.if target(pre-world)
254	@echo
255	@echo "--------------------------------------------------------------"
256	@echo ">>> Making 'pre-world' target"
257	@echo "--------------------------------------------------------------"
258	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
259.endif
260	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
261	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
262.if target(post-world)
263	@echo
264	@echo "--------------------------------------------------------------"
265	@echo ">>> Making 'post-world' target"
266	@echo "--------------------------------------------------------------"
267	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
268.endif
269	@echo
270	@echo "--------------------------------------------------------------"
271	@echo ">>> make world completed on `LC_ALL=C date`"
272	@echo "                   (started ${STARTTIME})"
273	@echo "--------------------------------------------------------------"
274.else
275world:
276	@echo "WARNING: make world will overwrite your existing FreeBSD"
277	@echo "installation without also building and installing a new"
278	@echo "kernel.  This can be dangerous.  Please read the handbook,"
279	@echo "'Rebuilding world', for how to upgrade your system."
280	@echo "Define DESTDIR to where you want to install FreeBSD,"
281	@echo "including /, to override this warning and proceed as usual."
282	@echo ""
283	@echo "Bailing out now..."
284	@false
285.endif
286
287#
288# kernel
289#
290# Short hand for `make buildkernel installkernel'
291#
292kernel: buildkernel installkernel
293
294#
295# Perform a few tests to determine if the installed tools are adequate
296# for building the world.
297#
298# Note: if we ever need to care about the version of bmake, simply testing
299# MAKE_VERSION against a required version should suffice.
300#
301upgrade_checks:
302.if ${HAVE_MAKE} != ${WANT_MAKE}
303	@(cd ${.CURDIR} && ${MAKE} ${WANT_MAKE:S,^f,,})
304.endif
305
306#
307# Upgrade make(1) to the current version using the installed
308# headers, libraries and tools.  Also, allow the location of
309# the system bsdmake-like utility to be overridden.
310#
311MMAKEENV=	MAKEOBJDIRPREFIX=${MYMAKE:H} \
312		DESTDIR= \
313		INSTALL="sh ${.CURDIR}/tools/install.sh"
314MMAKE=		${MMAKEENV} ${MAKE} \
315		-DNO_MAN -DNO_SHARED \
316		-DNO_CPU_CFLAGS -DNO_WERROR \
317		MK_TESTS=no \
318		DESTDIR= PROGNAME=${MYMAKE:T}
319
320bmake: .PHONY
321	@echo
322	@echo "--------------------------------------------------------------"
323	@echo ">>> Building an up-to-date ${.TARGET}(1)"
324	@echo "--------------------------------------------------------------"
325	${_+_}@cd ${.CURDIR}/usr.bin/${.TARGET}; \
326		${MMAKE} obj; \
327		${MMAKE} depend; \
328		${MMAKE} all; \
329		${MMAKE} install DESTDIR=${MYMAKE:H} BINDIR=
330
331tinderbox toolchains kernel-toolchains: upgrade_checks
332
333tinderbox:
334	@cd ${.CURDIR}; ${SUB_MAKE} DOING_TINDERBOX=YES universe
335
336toolchains:
337	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=toolchain universe
338
339kernel-toolchains:
340	@cd ${.CURDIR}; ${SUB_MAKE} UNIVERSE_TARGET=kernel-toolchain universe
341
342#
343# universe
344#
345# Attempt to rebuild *everything* for all supported architectures,
346# with a reasonable chance of success, regardless of how old your
347# existing system is.
348#
349.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
350TARGETS?=amd64 arm arm64 i386 mips pc98 powerpc sparc64
351_UNIVERSE_TARGETS=	${TARGETS}
352TARGET_ARCHES_arm?=	arm armeb armv6 armv6hf
353TARGET_ARCHES_arm64?=	aarch64
354TARGET_ARCHES_mips?=	mipsel mips mips64el mips64 mipsn32
355TARGET_ARCHES_powerpc?=	powerpc powerpc64
356TARGET_ARCHES_pc98?=	i386
357.for target in ${TARGETS}
358TARGET_ARCHES_${target}?= ${target}
359.endfor
360
361# XXX Add arm64 to universe only if we have an external binutils installed.
362# It does not build with the in-tree linker.
363.if !exists(/usr/local/aarch64-freebsd/bin/ld) && empty(${TARGETS})
364_UNIVERSE_TARGETS:= ${_UNIVERSE_TARGETS:Narm64}
365universe: universe_arm64_skip
366universe_epilogue: universe_arm64_skip
367universe_arm64_skip: universe_prologue
368	@echo ">> arm64 skipped - install aarch64-binutils port or package to build"
369.endif
370
371.if defined(UNIVERSE_TARGET)
372MAKE_JUST_WORLDS=	YES
373.else
374UNIVERSE_TARGET?=	buildworld
375.endif
376KERNSRCDIR?=		${.CURDIR}/sys
377
378targets:	.PHONY
379	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
380.for target in ${TARGETS}
381.for target_arch in ${TARGET_ARCHES_${target}}
382	@echo "    ${target}/${target_arch}"
383.endfor
384.endfor
385
386.if defined(DOING_TINDERBOX)
387FAILFILE=${.CURDIR}/_.tinderbox.failed
388MAKEFAIL=tee -a ${FAILFILE}
389.else
390MAKEFAIL=cat
391.endif
392
393universe_prologue:  upgrade_checks
394universe: universe_prologue
395universe_prologue:
396	@echo "--------------------------------------------------------------"
397	@echo ">>> make universe started on ${STARTTIME}"
398	@echo "--------------------------------------------------------------"
399.if defined(DOING_TINDERBOX)
400	@rm -f ${FAILFILE}
401.endif
402.for target in ${_UNIVERSE_TARGETS}
403universe: universe_${target}
404universe_epilogue: universe_${target}
405universe_${target}: universe_${target}_prologue
406universe_${target}_prologue: universe_prologue
407	@echo ">> ${target} started on `LC_ALL=C date`"
408universe_${target}_worlds:
409
410.if !defined(MAKE_JUST_KERNELS)
411universe_${target}_done: universe_${target}_worlds
412.for target_arch in ${TARGET_ARCHES_${target}}
413universe_${target}_worlds: universe_${target}_${target_arch}
414universe_${target}_${target_arch}: universe_${target}_prologue .MAKE
415	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
416	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
417	    ${SUB_MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
418	    TARGET=${target} \
419	    TARGET_ARCH=${target_arch} \
420	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
421	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
422	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
423	    ${MAKEFAIL}))
424	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
425.endfor
426.endif # !MAKE_JUST_KERNELS
427
428.if !defined(MAKE_JUST_WORLDS)
429universe_${target}_done: universe_${target}_kernels
430universe_${target}_kernels: universe_${target}_worlds
431universe_${target}_kernels: universe_${target}_prologue .MAKE
432.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
433	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
434	    ${SUB_MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
435	    (echo "${target} 'make LINT' failed," \
436	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
437.endif
438	@cd ${.CURDIR}; ${SUB_MAKE} ${.MAKEFLAGS} TARGET=${target} \
439	    universe_kernels
440.endif # !MAKE_JUST_WORLDS
441
442# Tell the user the worlds and kernels have completed
443universe_${target}: universe_${target}_done
444universe_${target}_done:
445	@echo ">> ${target} completed on `LC_ALL=C date`"
446.endfor
447universe_kernels: universe_kernconfs
448.if !defined(TARGET)
449TARGET!=	uname -m
450.endif
451.if defined(MAKE_ALL_KERNELS)
452_THINNER=cat
453.else
454_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
455.endif
456KERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
457		find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
458		! -name DEFAULTS ! -name NOTES | \
459		${_THINNER}
460universe_kernconfs:
461.for kernel in ${KERNCONFS}
462TARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
463	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
464	grep -v WARNING: | cut -f 2
465.if empty(TARGET_ARCH_${kernel})
466.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
467.endif
468universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
469universe_kernconf_${TARGET}_${kernel}: .MAKE
470	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
471	    ${SUB_MAKE} ${JFLAG} buildkernel \
472	    TARGET=${TARGET} \
473	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
474	    KERNCONF=${kernel} \
475	    > _.${TARGET}.${kernel} 2>&1 || \
476	    (echo "${TARGET} ${kernel} kernel failed," \
477	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
478.endfor
479universe: universe_epilogue
480universe_epilogue:
481	@echo "--------------------------------------------------------------"
482	@echo ">>> make universe completed on `LC_ALL=C date`"
483	@echo "                      (started ${STARTTIME})"
484	@echo "--------------------------------------------------------------"
485.if defined(DOING_TINDERBOX)
486	@if [ -e ${FAILFILE} ] ; then \
487		echo "Tinderbox failed:" ;\
488		cat ${FAILFILE} ;\
489		exit 1 ;\
490	fi
491.endif
492.endif
493
494buildLINT:
495	${MAKE} -C ${.CURDIR}/sys/${_TARGET}/conf LINT
496
497.if defined(.PARSEDIR)
498# This makefile does not run in meta mode
499.MAKE.MODE= normal
500# Normally the things we run from here don't either.
501# Using -DWITH_META_MODE
502# we can buildworld with meta files created which are useful 
503# for debugging, but without any of the rest of a meta mode build.
504MK_DIRDEPS_BUILD= no
505MK_STAGING= no
506# tell meta.autodep.mk to not even think about updating anything.
507UPDATE_DEPENDFILE= NO
508.if !make(showconfig)
509.export MK_DIRDEPS_BUILD MK_STAGING UPDATE_DEPENDFILE
510.endif
511
512.if make(universe)
513# we do not want a failure of one branch abort all.
514MAKE_JOB_ERROR_TOKEN= no
515.export MAKE_JOB_ERROR_TOKEN
516.endif
517.endif # bmake
518
519.endif				# DIRDEPS_BUILD
520