Makefile revision 232907
12061Sjkh#
250479Speter# $FreeBSD: head/Makefile 232907 2012-03-13 00:38:49Z jmallett $
32061Sjkh#
438666Sjb# The user-driven targets are:
532427Sjb#
6111131Sru# universe            - *Really* build *everything* (buildworld and
7111131Sru#                       all kernels on all architectures).
8217733Sbz# tinderbox           - Same as universe, but presents a list of failed build
9217733Sbz#                       targets and exits with an error if there were any.
1038666Sjb# buildworld          - Rebuild *everything*, including glue to help do
1138666Sjb#                       upgrades.
1238666Sjb# installworld        - Install everything built by "buildworld".
13159363Strhodes# world               - buildworld + installworld, no kernel.
1464049Salex# buildkernel         - Rebuild the kernel and the kernel-modules.
1564049Salex# installkernel       - Install the kernel and the kernel-modules.
16116679Ssimokawa# installkernel.debug
1766071Smarkm# reinstallkernel     - Reinstall the kernel and the kernel-modules.
18116679Ssimokawa# reinstallkernel.debug
1973504Sobrien# kernel              - buildkernel + installkernel.
20204661Simp# kernel-toolchain    - Builds the subset of world necessary to build a kernel
21232907Sjmallett# kernel-toolchains   - Build kernel-toolchain for all universe targets.
22158962Snetchild# doxygen             - Build API documentation of the kernel, needs doxygen.
23223148Sru# update              - Convenient way to update your source tree(s).
24169597Sdes# check-old           - List obsolete directories/files/libraries.
25169597Sdes# check-old-dirs      - List obsolete directories.
26169597Sdes# check-old-files     - List obsolete files.
27169597Sdes# check-old-libs      - List obsolete libraries.
28231821Spluknet# delete-old          - Delete obsolete directories/files.
29169597Sdes# delete-old-dirs     - Delete obsolete directories.
30169597Sdes# delete-old-files    - Delete obsolete files.
31169597Sdes# delete-old-libs     - Delete obsolete libraries.
32217815Sbz# targets             - Print a list of supported TARGET/TARGET_ARCH pairs
33217815Sbz#                       for world and kernel targets.
34218524Sjhb# toolchains          - Build a toolchain for all world and kernel targets.
3532427Sjb#
3638666Sjb# This makefile is simple by design. The FreeBSD make automatically reads
37108451Sschweikh# the /usr/share/mk/sys.mk unless the -m argument is specified on the
3838666Sjb# command line. By keeping this makefile simple, it doesn't matter too
3938666Sjb# much how different the installed mk files are from those in the source
4038666Sjb# tree. This makefile executes a child make process, forcing it to use
4138666Sjb# the mk files from the source tree which are supposed to DTRT.
4217308Speter#
43217273Simp# Most of the user-driven targets (as listed above) are implemented in
44217294Simp# Makefile.inc1.  The exceptions are universe, tinderbox and targets.
4519175Sbde#
4696205Sjwd# If you want to build your system from source be sure that /usr/obj has
47217297Simp# at least 1GB of diskspace available.  A complete 'universe' build requires
48217297Simp# about 15GB of space.
4938042Sbde#
5096205Sjwd# For individuals wanting to build from the sources currently on their
5196205Sjwd# system, the simple instructions are:
5238042Sbde#
5396205Sjwd# 1.  `cd /usr/src'  (or to the directory containing your source tree).
54159363Strhodes# 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
55159363Strhodes# 3.  `make world'
5617308Speter#
5796205Sjwd# For individuals wanting to upgrade their sources (even if only a
5896205Sjwd# delta of a few days):
5917308Speter#
60148330Snetchild#  1.  `cd /usr/src'       (or to the directory containing your source tree).
61148330Snetchild#  2.  `make buildworld'
62148330Snetchild#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
63148330Snetchild#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
64159831Sobrien#       [steps 3. & 4. can be combined by using the "kernel" target]
65148330Snetchild#  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
66148330Snetchild#  6.  `mergemaster -p'
67148330Snetchild#  7.  `make installworld'
68148330Snetchild#  8.  `make delete-old'
69220512Sdougb#  9.  `mergemaster'		(you may wish to use -i, along with -U or -F).
70148330Snetchild# 10.  `reboot'
71148330Snetchild# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
7296205Sjwd#
7396205Sjwd# See src/UPDATING `COMMON ITEMS' for more complete information.
7496205Sjwd#
75162147Sru# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
76162147Sru# cross build world for other machine types using the buildworld target,
7798723Sdillon# and once the world is built you can cross build a kernel using the
7898723Sdillon# buildkernel target.
7998723Sdillon#
8038666Sjb# Define the user-driven targets. These are listed here in alphabetical
8138666Sjb# order, but that's not important.
8217308Speter#
83123311Speter# Targets that begin with underscore are internal targets intended for
84123311Speter# developer convenience only.  They are intentionally not documented and
85123311Speter# completely subject to change without notice.
86123311Speter#
87175833Sjhb# For more information, see the build(7) manual page.
88175833Sjhb#
89169597SdesTGTS=	all all-man buildenv buildenvvars buildkernel buildworld \
90169597Sdes	check-old check-old-dirs check-old-files check-old-libs \
91169597Sdes	checkdpadd clean cleandepend cleandir \
92169597Sdes	delete-old delete-old-dirs delete-old-files delete-old-libs \
93219177Snwhitehorn	depend distribute distributekernel distributekernel.debug \
94219177Snwhitehorn	distributeworld distrib-dirs distribution doxygen \
95158962Snetchild	everything hierarchy install installcheck installkernel \
96219177Snwhitehorn	installkernel.debug packagekernel packageworld \
97219177Snwhitehorn	reinstallkernel reinstallkernel.debug \
98158962Snetchild	installworld kernel-toolchain libraries lint maninstall \
99156840Sru	obj objlink regress rerelease showconfig tags toolchain update \
100123311Speter	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
101137288Speter	_build-tools _cross-tools _includes _libraries _depend \
102209128Sraj	build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
103209128Sraj
104156740SruTGTS+=	${SUBDIR_TARGETS}
1052061Sjkh
10697769SruBITGTS=	files includes
10797252SruBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
108119579SruTGTS+=	${BITGTS}
10997252Sru
11095730Sru.ORDER: buildworld installworld
11195793Sru.ORDER: buildworld distributeworld
112111617Sru.ORDER: buildworld buildkernel
11395730Sru.ORDER: buildkernel installkernel
114116679Ssimokawa.ORDER: buildkernel installkernel.debug
11595730Sru.ORDER: buildkernel reinstallkernel
116116679Ssimokawa.ORDER: buildkernel reinstallkernel.debug
11795730Sru
118110035SruPATH=	/sbin:/bin:/usr/sbin:/usr/bin
119107516SruMAKEOBJDIRPREFIX?=	/usr/obj
120138921Sru_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
121156145Syar    ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
122138921Sru    -f /dev/null -V MAKEOBJDIRPREFIX dummy
123133942Sru.if !empty(_MAKEOBJDIRPREFIX)
124133942Sru.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
125156145Syar	(in make.conf(5)) or command-line variable.
126133942Sru.endif
127110035SruMAKEPATH=	${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
128117234SruBINMAKE= \
129110035Sru	`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
130117229Sru	-m ${.CURDIR}/share/mk
131218206Simp_MAKE=	PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
13254324Smarcel
133218130Simp# Guess machine architecture from machine type, and vice versa.
134218130Simp.if !defined(TARGET_ARCH) && defined(TARGET)
135221869Sattilio_TARGET_ARCH=	${TARGET:S/pc98/i386/:S/mips/mipsel/}
136218130Simp.elif !defined(TARGET) && defined(TARGET_ARCH) && \
137218130Simp    ${TARGET_ARCH} != ${MACHINE_ARCH}
138218130Simp_TARGET=		${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/}
139218130Simp.endif
140218130Simp# Legacy names, for a transition period mips:mips -> mipsel:mips
141218130Simp.if defined(TARGET) && defined(TARGET_ARCH) && \
142218130Simp    ${TARGET_ARCH} == "mips" && ${TARGET} == "mips"
143218130Simp.warning "TARGET_ARCH of mips is deprecated in favor of mipsel or mipseb"
144218130Simp.if defined(TARGET_BIG_ENDIAN)
145218130Simp_TARGET_ARCH=mipseb
146218130Simp.else
147218130Simp_TARGET_ARCH=mipsel
148218130Simp.endif
149218130Simp.endif
150218130Simp# arm with TARGET_BIG_ENDIAN -> armeb
151218130Simp.if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
152218130Simp.warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated.  use armeb"
153218130Simp_TARGET_ARCH=armeb
154218130Simp.endif
155218130Simp.if defined(TARGET) && !defined(_TARGET)
156218130Simp_TARGET=${TARGET}
157218130Simp.endif
158218130Simp.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
159218130Simp_TARGET_ARCH=${TARGET_ARCH}
160218130Simp.endif
161218130Simp# Otherwise, default to current machine type and architecture.
162218130Simp_TARGET?=	${MACHINE}
163218130Simp_TARGET_ARCH?=	${MACHINE_ARCH}
164218130Simp
16517308Speter#
166119519Smarcel# Make sure we have an up-to-date make(1). Only world and buildworld
167119519Smarcel# should do this as those are the initial targets used for upgrades.
168119519Smarcel# The user can define ALWAYS_CHECK_MAKE to have this check performed
169119519Smarcel# for all targets.
170119519Smarcel#
171119519Smarcel.if defined(ALWAYS_CHECK_MAKE)
172119579Sru${TGTS}: upgrade_checks
173119519Smarcel.else
174119519Smarcelbuildworld: upgrade_checks
175119519Smarcel.endif
176119519Smarcel
177119519Smarcel#
178126031Sgad# This 'cleanworld' target is not included in TGTS, because it is not a
179126024Sgad# recursive target.  All of the work for it is done right here.   It is
180126024Sgad# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
181126024Sgad# created by bsd.obj.mk, except that we don't want to .include that file
182126024Sgad# in this makefile.  
183126024Sgad#
184126024Sgad# In the following, the first 'rm' in a series will usually remove all
185126024Sgad# files and directories.  If it does not, then there are probably some
186227771Sgjb# files with file flags set, so this unsets them and tries the 'rm' a
187126024Sgad# second time.  There are situations where this target will be cleaning
188126024Sgad# some directories via more than one method, but that duplication is
189227769Sgjb# needed to correctly handle all the possible situations.  Removing all
190227771Sgjb# files without file flags set in the first 'rm' instance saves time,
191227771Sgjb# because 'chflags' will need to operate on fewer files afterwards.
192126024Sgad#
193126024SgadBW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
194126031Sgadcleanworld:
195126024Sgad.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
196126024Sgad.if exists(${BW_CANONICALOBJDIR}/)
197126024Sgad	-rm -rf ${BW_CANONICALOBJDIR}/*
198172744Sdelphij	-chflags -R 0 ${BW_CANONICALOBJDIR}
199126024Sgad	rm -rf ${BW_CANONICALOBJDIR}/*
200126024Sgad.endif
201126024Sgad	#   To be safe in this case, fall back to a 'make cleandir'
202133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
203126024Sgad.else
204126024Sgad	-rm -rf ${.OBJDIR}/*
205172744Sdelphij	-chflags -R 0 ${.OBJDIR}
206126024Sgad	rm -rf ${.OBJDIR}/*
207126024Sgad.endif
208125885Sgad
209125885Sgad#
21038666Sjb# Handle the user-driven targets, using the source relative mk files.
21117308Speter#
212119519Smarcel
213119579Sru${TGTS}:
214218206Simp	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
2152302Spaul
21639206Sjkh# Set a reasonable default
21739206Sjkh.MAIN:	all
21839206Sjkh
219133945SruSTARTTIME!= LC_ALL=C date
220220556SbzCHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s
221177609Sru.if !empty(CHECK_TIME)
222177609Sru.error check your date/time: ${STARTTIME}
223177609Sru.endif
224133945Sru
225132358Smarkm.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
22617308Speter#
22754324Smarcel# world
22854324Smarcel#
229132234Smarcel# Attempt to rebuild and reinstall everything. This target is not to be
230132234Smarcel# used for upgrading an existing FreeBSD system, because the kernel is
231132234Smarcel# not included. One can argue that this target doesn't build everything
232132234Smarcel# then.
23354324Smarcel#
23454324Smarcelworld: upgrade_checks
23554324Smarcel	@echo "--------------------------------------------------------------"
236118531Sru	@echo ">>> make world started on ${STARTTIME}"
23754324Smarcel	@echo "--------------------------------------------------------------"
23854324Smarcel.if target(pre-world)
23954324Smarcel	@echo
24054324Smarcel	@echo "--------------------------------------------------------------"
24154324Smarcel	@echo ">>> Making 'pre-world' target"
24254324Smarcel	@echo "--------------------------------------------------------------"
243133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
24454324Smarcel.endif
245133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
246133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
24754324Smarcel.if target(post-world)
24854324Smarcel	@echo
24954324Smarcel	@echo "--------------------------------------------------------------"
25054324Smarcel	@echo ">>> Making 'post-world' target"
25154324Smarcel	@echo "--------------------------------------------------------------"
252133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
25354324Smarcel.endif
25454324Smarcel	@echo
25554324Smarcel	@echo "--------------------------------------------------------------"
256118531Sru	@echo ">>> make world completed on `LC_ALL=C date`"
257118531Sru	@echo "                   (started ${STARTTIME})"
25854324Smarcel	@echo "--------------------------------------------------------------"
259132234Smarcel.else
260132234Smarcelworld:
261132234Smarcel	@echo "WARNING: make world will overwrite your existing FreeBSD"
262132234Smarcel	@echo "installation without also building and installing a new"
263132234Smarcel	@echo "kernel.  This can be dangerous.  Please read the handbook,"
264132588Skensmith	@echo "'Rebuilding world', for how to upgrade your system."
265132358Smarkm	@echo "Define DESTDIR to where you want to install FreeBSD,"
266132234Smarcel	@echo "including /, to override this warning and proceed as usual."
267132358Smarkm	@echo ""
268132234Smarcel	@echo "Bailing out now..."
269132234Smarcel	@false
270132234Smarcel.endif
27154324Smarcel
27254324Smarcel#
27395730Sru# kernel
27495730Sru#
27595730Sru# Short hand for `make buildkernel installkernel'
27695730Sru#
27795730Srukernel: buildkernel installkernel
27895730Sru
27995730Sru#
28038666Sjb# Perform a few tests to determine if the installed tools are adequate
281107374Sru# for building the world.
28217308Speter#
28355678Smarcelupgrade_checks:
284143032Sharti	@if ! (cd ${.CURDIR}/tools/build/make_check && \
285138515Sharti	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
286117793Sru	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
287110035Sru	then \
288174564Simp	    (cd ${.CURDIR} && ${MAKE} make); \
289110035Sru	fi
2902061Sjkh
29117308Speter#
292107516Sru# Upgrade make(1) to the current version using the installed
293174539Simp# headers, libraries and tools.  Also, allow the location of
294174539Simp# the system bsdmake-like utility to be overridden.
29555678Smarcel#
296107516SruMMAKEENV=	MAKEOBJDIRPREFIX=${MAKEPATH} \
297107516Sru		DESTDIR= \
298107516Sru		INSTALL="sh ${.CURDIR}/tools/install.sh"
299174564SimpMMAKE=		${MMAKEENV} ${MAKE} \
300107516Sru		-D_UPGRADING \
301139112Sru		-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
302164470Sjb		-DNO_CPU_CFLAGS -DNO_WERROR
303107516Sru
304122204Skrismake: .PHONY
30555678Smarcel	@echo
30655678Smarcel	@echo "--------------------------------------------------------------"
307116696Sru	@echo ">>> Building an up-to-date make(1)"
30855678Smarcel	@echo "--------------------------------------------------------------"
309133376Sharti	${_+_}@cd ${.CURDIR}/usr.bin/make; \
310107516Sru		${MMAKE} obj && \
311107516Sru		${MMAKE} depend && \
312107516Sru		${MMAKE} all && \
313107516Sru		${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
31455678Smarcel
315185499Salfredtinderbox:
316218524Sjhb	@cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
317185499Salfred
318218524Sjhbtoolchains:
319218524Sjhb	@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
320218524Sjhb
321232907Sjmallettkernel-toolchains:
322232907Sjmallett	@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=kernel-toolchain universe
323232907Sjmallett
32455678Smarcel#
325111131Sru# universe
326111131Sru#
327111131Sru# Attempt to rebuild *everything* for all supported architectures,
328133945Sru# with a reasonable chance of success, regardless of how old your
329111131Sru# existing system is.
330111131Sru#
331217125Simp.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
332221869SattilioTARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
333216520SnwhitehornTARGET_ARCHES_arm?=	arm armeb
334221216SjhbTARGET_ARCHES_mips?=	mipsel mipseb mips64el mips64eb mipsn32eb
335216520SnwhitehornTARGET_ARCHES_powerpc?=	powerpc powerpc64
336216520SnwhitehornTARGET_ARCHES_pc98?=	i386
337216520Snwhitehorn.for target in ${TARGETS}
338216520SnwhitehornTARGET_ARCHES_${target}?= ${target}
339216520Snwhitehorn.endfor
340168280Smarcel
341218524Sjhb.if defined(UNIVERSE_TARGET)
342218524SjhbMAKE_JUST_WORLDS=	YES
343218524Sjhb.else
344218524SjhbUNIVERSE_TARGET?=	buildworld
345218524Sjhb.endif
346219137SjhbKERNSRCDIR?=		${.CURDIR}/sys
347218524Sjhb
348217125Simptargets:
349217815Sbz	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
350217125Simp.for target in ${TARGETS}
351217125Simp.for target_arch in ${TARGET_ARCHES_${target}}
352217125Simp	@echo "    ${target}/${target_arch}"
353217125Simp.endfor
354217125Simp.endfor
355217125Simp
356185499Salfred.if defined(DOING_TINDERBOX)
357217735SbzFAILFILE=${.CURDIR}/_.tinderbox.failed
358185499SalfredMAKEFAIL=tee -a ${FAILFILE}
359185499Salfred.else
360185499SalfredMAKEFAIL=cat
361185499Salfred.endif
362185499Salfred
363133945Sruuniverse: universe_prologue
364133945Sruuniverse_prologue:
365103985Sphk	@echo "--------------------------------------------------------------"
366103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
367103985Sphk	@echo "--------------------------------------------------------------"
368185499Salfred.if defined(DOING_TINDERBOX)
369217754Sbz	@rm -f ${FAILFILE}
370185499Salfred.endif
371168280Smarcel.for target in ${TARGETS}
372162147Sruuniverse: universe_${target}
373162147Sru.ORDER: universe_prologue universe_${target} universe_epilogue
374216520Snwhitehornuniverse_${target}: universe_${target}_prologue
375216520Snwhitehornuniverse_${target}_prologue:
376216520Snwhitehorn	@echo ">> ${target} started on `LC_ALL=C date`"
377179232Sjb.if !defined(MAKE_JUST_KERNELS)
378216520Snwhitehorn.for target_arch in ${TARGET_ARCHES_${target}}
379216520Snwhitehornuniverse_${target}: universe_${target}_${target_arch}
380216520Snwhitehornuniverse_${target}_${target_arch}: universe_${target}_prologue
381218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
382185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
383218524Sjhb	    ${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
384162147Sru	    TARGET=${target} \
385216520Snwhitehorn	    TARGET_ARCH=${target_arch} \
386218524Sjhb	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
387218524Sjhb	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
388218524Sjhb	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
389216520Snwhitehorn	    ${MAKEFAIL}))
390218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
391216520Snwhitehorn.endfor
392179232Sjb.endif
393205290Sdougb.if !defined(MAKE_JUST_WORLDS)
394219137Sjhb.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
395219137Sjhb	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
396185250Sdes	    ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
397185499Salfred	    (echo "${target} 'make LINT' failed," \
398185499Salfred	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
399103985Sphk.endif
400201815Sbz	@cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
401201815Sbz	    universe_kernels
402205290Sdougb.endif
403201815Sbz	@echo ">> ${target} completed on `LC_ALL=C date`"
404201815Sbz.endfor
405201815Sbzuniverse_kernels: universe_kernconfs
406202095Sbz.if !defined(TARGET)
407202095SbzTARGET!=	uname -m
408202095Sbz.endif
409219137SjhbKERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
410201815Sbz		find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
411201815Sbz		! -name DEFAULTS ! -name NOTES
412201815Sbzuniverse_kernconfs:
413148154Sru.for kernel in ${KERNCONFS}
414219137SjhbTARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
415219137Sjhb	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
416216934Simp	grep -v WARNING: | cut -f 2
417216934Simp.if empty(TARGET_ARCH_${kernel})
418216934Simp.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
419216934Simp.endif
420216520Snwhitehornuniverse_kernconfs: universe_kernconf_${TARGET}_${kernel}
421216520Snwhitehornuniverse_kernconf_${TARGET}_${kernel}:
422185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
423185250Sdes	    ${MAKE} ${JFLAG} buildkernel \
424201815Sbz	    TARGET=${TARGET} \
425216520Snwhitehorn	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
426148154Sru	    KERNCONF=${kernel} \
427201815Sbz	    > _.${TARGET}.${kernel} 2>&1 || \
428201815Sbz	    (echo "${TARGET} ${kernel} kernel failed," \
429201815Sbz	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
430148154Sru.endfor
431133945Sruuniverse: universe_epilogue
432133945Sruuniverse_epilogue:
433103985Sphk	@echo "--------------------------------------------------------------"
434118531Sru	@echo ">>> make universe completed on `LC_ALL=C date`"
435118531Sru	@echo "                      (started ${STARTTIME})"
436103985Sphk	@echo "--------------------------------------------------------------"
437185499Salfred.if defined(DOING_TINDERBOX)
438185499Salfred	@if [ -e ${FAILFILE} ] ; then \
439185499Salfred		echo "Tinderbox failed:" ;\
440185499Salfred		cat ${FAILFILE} ;\
441185499Salfred		exit 1 ;\
442185499Salfred	fi
443133945Sru.endif
444185499Salfred.endif
445