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