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