Makefile revision 220512
12061Sjkh#
250479Speter# $FreeBSD: head/Makefile 220512 2011-04-10 03:53:06Z dougb $
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
21158962Snetchild# doxygen             - Build API documentation of the kernel, needs doxygen.
2238666Sjb# update              - Convenient way to update your source tree (cvs).
23169597Sdes# check-old           - List obsolete directories/files/libraries.
24169597Sdes# check-old-dirs      - List obsolete directories.
25169597Sdes# check-old-files     - List obsolete files.
26169597Sdes# check-old-libs      - List obsolete libraries.
27169597Sdes# delete-old          - Delete obsolete directories/files/libraries.
28169597Sdes# delete-old-dirs     - Delete obsolete directories.
29169597Sdes# delete-old-files    - Delete obsolete files.
30169597Sdes# delete-old-libs     - Delete obsolete libraries.
31217815Sbz# targets             - Print a list of supported TARGET/TARGET_ARCH pairs
32217815Sbz#                       for world and kernel targets.
33218524Sjhb# toolchains          - Build a toolchain for all world and kernel targets.
3432427Sjb#
3538666Sjb# This makefile is simple by design. The FreeBSD make automatically reads
36108451Sschweikh# the /usr/share/mk/sys.mk unless the -m argument is specified on the
3738666Sjb# command line. By keeping this makefile simple, it doesn't matter too
3838666Sjb# much how different the installed mk files are from those in the source
3938666Sjb# tree. This makefile executes a child make process, forcing it to use
4038666Sjb# the mk files from the source tree which are supposed to DTRT.
4117308Speter#
42217273Simp# Most of the user-driven targets (as listed above) are implemented in
43217294Simp# Makefile.inc1.  The exceptions are universe, tinderbox and targets.
4419175Sbde#
4596205Sjwd# If you want to build your system from source be sure that /usr/obj has
46217297Simp# at least 1GB of diskspace available.  A complete 'universe' build requires
47217297Simp# about 15GB of space.
4838042Sbde#
4996205Sjwd# For individuals wanting to build from the sources currently on their
5096205Sjwd# system, the simple instructions are:
5138042Sbde#
5296205Sjwd# 1.  `cd /usr/src'  (or to the directory containing your source tree).
53159363Strhodes# 2.  Define `HISTORICAL_MAKE_WORLD' variable (see README).
54159363Strhodes# 3.  `make world'
5517308Speter#
5696205Sjwd# For individuals wanting to upgrade their sources (even if only a
5796205Sjwd# delta of a few days):
5817308Speter#
59148330Snetchild#  1.  `cd /usr/src'       (or to the directory containing your source tree).
60148330Snetchild#  2.  `make buildworld'
61148330Snetchild#  3.  `make buildkernel KERNCONF=YOUR_KERNEL_HERE'     (default is GENERIC).
62148330Snetchild#  4.  `make installkernel KERNCONF=YOUR_KERNEL_HERE'   (default is GENERIC).
63159831Sobrien#       [steps 3. & 4. can be combined by using the "kernel" target]
64148330Snetchild#  5.  `reboot'        (in single user mode: boot -s from the loader prompt).
65148330Snetchild#  6.  `mergemaster -p'
66148330Snetchild#  7.  `make installworld'
67148330Snetchild#  8.  `make delete-old'
68220512Sdougb#  9.  `mergemaster'		(you may wish to use -i, along with -U or -F).
69148330Snetchild# 10.  `reboot'
70148330Snetchild# 11.  `make delete-old-libs' (in case no 3rd party program uses them anymore)
7196205Sjwd#
7296205Sjwd# See src/UPDATING `COMMON ITEMS' for more complete information.
7396205Sjwd#
74162147Sru# If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
75162147Sru# cross build world for other machine types using the buildworld target,
7698723Sdillon# and once the world is built you can cross build a kernel using the
7798723Sdillon# buildkernel target.
7898723Sdillon#
7938666Sjb# Define the user-driven targets. These are listed here in alphabetical
8038666Sjb# order, but that's not important.
8117308Speter#
82123311Speter# Targets that begin with underscore are internal targets intended for
83123311Speter# developer convenience only.  They are intentionally not documented and
84123311Speter# completely subject to change without notice.
85123311Speter#
86175833Sjhb# For more information, see the build(7) manual page.
87175833Sjhb#
88169597SdesTGTS=	all all-man buildenv buildenvvars buildkernel buildworld \
89169597Sdes	check-old check-old-dirs check-old-files check-old-libs \
90169597Sdes	checkdpadd clean cleandepend cleandir \
91169597Sdes	delete-old delete-old-dirs delete-old-files delete-old-libs \
92219177Snwhitehorn	depend distribute distributekernel distributekernel.debug \
93219177Snwhitehorn	distributeworld distrib-dirs distribution doxygen \
94158962Snetchild	everything hierarchy install installcheck installkernel \
95219177Snwhitehorn	installkernel.debug packagekernel packageworld \
96219177Snwhitehorn	reinstallkernel reinstallkernel.debug \
97158962Snetchild	installworld kernel-toolchain libraries lint maninstall \
98156840Sru	obj objlink regress rerelease showconfig tags toolchain update \
99123311Speter	_worldtmp _legacy _bootstrap-tools _cleanobj _obj \
100137288Speter	_build-tools _cross-tools _includes _libraries _depend \
101209128Sraj	build32 builddtb distribute32 install32 xdev xdev-build xdev-install \
102209128Sraj
103156740SruTGTS+=	${SUBDIR_TARGETS}
1042061Sjkh
10597769SruBITGTS=	files includes
10697252SruBITGTS:=${BITGTS} ${BITGTS:S/^/build/} ${BITGTS:S/^/install/}
107119579SruTGTS+=	${BITGTS}
10897252Sru
10995730Sru.ORDER: buildworld installworld
11095793Sru.ORDER: buildworld distributeworld
111111617Sru.ORDER: buildworld buildkernel
11295730Sru.ORDER: buildkernel installkernel
113116679Ssimokawa.ORDER: buildkernel installkernel.debug
11495730Sru.ORDER: buildkernel reinstallkernel
115116679Ssimokawa.ORDER: buildkernel reinstallkernel.debug
11695730Sru
117110035SruPATH=	/sbin:/bin:/usr/sbin:/usr/bin
118107516SruMAKEOBJDIRPREFIX?=	/usr/obj
119138921Sru_MAKEOBJDIRPREFIX!= /usr/bin/env -i PATH=${PATH} ${MAKE} \
120156145Syar    ${.MAKEFLAGS:MMAKEOBJDIRPREFIX=*} __MAKE_CONF=${__MAKE_CONF} \
121138921Sru    -f /dev/null -V MAKEOBJDIRPREFIX dummy
122133942Sru.if !empty(_MAKEOBJDIRPREFIX)
123133942Sru.error MAKEOBJDIRPREFIX can only be set in environment, not as a global\
124156145Syar	(in make.conf(5)) or command-line variable.
125133942Sru.endif
126110035SruMAKEPATH=	${MAKEOBJDIRPREFIX}${.CURDIR}/make.${MACHINE}
127117234SruBINMAKE= \
128110035Sru	`if [ -x ${MAKEPATH}/make ]; then echo ${MAKEPATH}/make; else echo ${MAKE}; fi` \
129117229Sru	-m ${.CURDIR}/share/mk
130218206Simp_MAKE=	PATH=${PATH} ${BINMAKE} -f Makefile.inc1 TARGET=${_TARGET} TARGET_ARCH=${_TARGET_ARCH}
13154324Smarcel
132218130Simp# Guess machine architecture from machine type, and vice versa.
133218130Simp.if !defined(TARGET_ARCH) && defined(TARGET)
134218130Simp_TARGET_ARCH=	${TARGET:S/pc98/i386/:S/sun4v/sparc64/:S/mips/mipsel/}
135218130Simp.elif !defined(TARGET) && defined(TARGET_ARCH) && \
136218130Simp    ${TARGET_ARCH} != ${MACHINE_ARCH}
137218130Simp_TARGET=		${TARGET_ARCH:C/mips.*e[lb]/mips/:C/armeb/arm/}
138218130Simp.endif
139218130Simp# Legacy names, for a transition period mips:mips -> mipsel:mips
140218130Simp.if defined(TARGET) && defined(TARGET_ARCH) && \
141218130Simp    ${TARGET_ARCH} == "mips" && ${TARGET} == "mips"
142218130Simp.warning "TARGET_ARCH of mips is deprecated in favor of mipsel or mipseb"
143218130Simp.if defined(TARGET_BIG_ENDIAN)
144218130Simp_TARGET_ARCH=mipseb
145218130Simp.else
146218130Simp_TARGET_ARCH=mipsel
147218130Simp.endif
148218130Simp.endif
149218130Simp# arm with TARGET_BIG_ENDIAN -> armeb
150218130Simp.if defined(TARGET_ARCH) && ${TARGET_ARCH} == "arm" && defined(TARGET_BIG_ENDIAN)
151218130Simp.warning "TARGET_ARCH of arm with TARGET_BIG_ENDIAN is deprecated.  use armeb"
152218130Simp_TARGET_ARCH=armeb
153218130Simp.endif
154218130Simp.if defined(TARGET) && !defined(_TARGET)
155218130Simp_TARGET=${TARGET}
156218130Simp.endif
157218130Simp.if defined(TARGET_ARCH) && !defined(_TARGET_ARCH)
158218130Simp_TARGET_ARCH=${TARGET_ARCH}
159218130Simp.endif
160218130Simp# Otherwise, default to current machine type and architecture.
161218130Simp_TARGET?=	${MACHINE}
162218130Simp_TARGET_ARCH?=	${MACHINE_ARCH}
163218130Simp
16417308Speter#
165119519Smarcel# Make sure we have an up-to-date make(1). Only world and buildworld
166119519Smarcel# should do this as those are the initial targets used for upgrades.
167119519Smarcel# The user can define ALWAYS_CHECK_MAKE to have this check performed
168119519Smarcel# for all targets.
169119519Smarcel#
170119519Smarcel.if defined(ALWAYS_CHECK_MAKE)
171119579Sru${TGTS}: upgrade_checks
172119519Smarcel.else
173119519Smarcelbuildworld: upgrade_checks
174119519Smarcel.endif
175119519Smarcel
176119519Smarcel#
177126031Sgad# This 'cleanworld' target is not included in TGTS, because it is not a
178126024Sgad# recursive target.  All of the work for it is done right here.   It is
179126024Sgad# expected that BW_CANONICALOBJDIR == the CANONICALOBJDIR as would be
180126024Sgad# created by bsd.obj.mk, except that we don't want to .include that file
181126024Sgad# in this makefile.  
182126024Sgad#
183126024Sgad# In the following, the first 'rm' in a series will usually remove all
184126024Sgad# files and directories.  If it does not, then there are probably some
185126024Sgad# files with chflags set, so this unsets them and tries the 'rm' a
186126024Sgad# second time.  There are situations where this target will be cleaning
187126024Sgad# some directories via more than one method, but that duplication is
188126024Sgad# needed to correctly handle all the possible situations.
189126024Sgad#
190126024SgadBW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
191126031Sgadcleanworld:
192126024Sgad.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
193126024Sgad.if exists(${BW_CANONICALOBJDIR}/)
194126024Sgad	-rm -rf ${BW_CANONICALOBJDIR}/*
195172744Sdelphij	-chflags -R 0 ${BW_CANONICALOBJDIR}
196126024Sgad	rm -rf ${BW_CANONICALOBJDIR}/*
197126024Sgad.endif
198126024Sgad	#   To be safe in this case, fall back to a 'make cleandir'
199133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
200126024Sgad.else
201126024Sgad	-rm -rf ${.OBJDIR}/*
202172744Sdelphij	-chflags -R 0 ${.OBJDIR}
203126024Sgad	rm -rf ${.OBJDIR}/*
204126024Sgad.endif
205125885Sgad
206125885Sgad#
20738666Sjb# Handle the user-driven targets, using the source relative mk files.
20817308Speter#
209119519Smarcel
210119579Sru${TGTS}:
211218206Simp	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
2122302Spaul
21339206Sjkh# Set a reasonable default
21439206Sjkh.MAIN:	all
21539206Sjkh
216133945SruSTARTTIME!= LC_ALL=C date
217177609SruCHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0
218177609Sru.if !empty(CHECK_TIME)
219177609Sru.error check your date/time: ${STARTTIME}
220177609Sru.endif
221133945Sru
222132358Smarkm.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
22317308Speter#
22454324Smarcel# world
22554324Smarcel#
226132234Smarcel# Attempt to rebuild and reinstall everything. This target is not to be
227132234Smarcel# used for upgrading an existing FreeBSD system, because the kernel is
228132234Smarcel# not included. One can argue that this target doesn't build everything
229132234Smarcel# then.
23054324Smarcel#
23154324Smarcelworld: upgrade_checks
23254324Smarcel	@echo "--------------------------------------------------------------"
233118531Sru	@echo ">>> make world started on ${STARTTIME}"
23454324Smarcel	@echo "--------------------------------------------------------------"
23554324Smarcel.if target(pre-world)
23654324Smarcel	@echo
23754324Smarcel	@echo "--------------------------------------------------------------"
23854324Smarcel	@echo ">>> Making 'pre-world' target"
23954324Smarcel	@echo "--------------------------------------------------------------"
240133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
24154324Smarcel.endif
242133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
243133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
24454324Smarcel.if target(post-world)
24554324Smarcel	@echo
24654324Smarcel	@echo "--------------------------------------------------------------"
24754324Smarcel	@echo ">>> Making 'post-world' target"
24854324Smarcel	@echo "--------------------------------------------------------------"
249133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
25054324Smarcel.endif
25154324Smarcel	@echo
25254324Smarcel	@echo "--------------------------------------------------------------"
253118531Sru	@echo ">>> make world completed on `LC_ALL=C date`"
254118531Sru	@echo "                   (started ${STARTTIME})"
25554324Smarcel	@echo "--------------------------------------------------------------"
256132234Smarcel.else
257132234Smarcelworld:
258132234Smarcel	@echo "WARNING: make world will overwrite your existing FreeBSD"
259132234Smarcel	@echo "installation without also building and installing a new"
260132234Smarcel	@echo "kernel.  This can be dangerous.  Please read the handbook,"
261132588Skensmith	@echo "'Rebuilding world', for how to upgrade your system."
262132358Smarkm	@echo "Define DESTDIR to where you want to install FreeBSD,"
263132234Smarcel	@echo "including /, to override this warning and proceed as usual."
264132358Smarkm	@echo ""
265132234Smarcel	@echo "Bailing out now..."
266132234Smarcel	@false
267132234Smarcel.endif
26854324Smarcel
26954324Smarcel#
27095730Sru# kernel
27195730Sru#
27295730Sru# Short hand for `make buildkernel installkernel'
27395730Sru#
27495730Srukernel: buildkernel installkernel
27595730Sru
27695730Sru#
27738666Sjb# Perform a few tests to determine if the installed tools are adequate
278107374Sru# for building the world.
27917308Speter#
28055678Smarcelupgrade_checks:
281143032Sharti	@if ! (cd ${.CURDIR}/tools/build/make_check && \
282138515Sharti	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
283117793Sru	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
284110035Sru	then \
285174564Simp	    (cd ${.CURDIR} && ${MAKE} make); \
286110035Sru	fi
2872061Sjkh
28817308Speter#
289107516Sru# Upgrade make(1) to the current version using the installed
290174539Simp# headers, libraries and tools.  Also, allow the location of
291174539Simp# the system bsdmake-like utility to be overridden.
29255678Smarcel#
293107516SruMMAKEENV=	MAKEOBJDIRPREFIX=${MAKEPATH} \
294107516Sru		DESTDIR= \
295107516Sru		INSTALL="sh ${.CURDIR}/tools/install.sh"
296174564SimpMMAKE=		${MMAKEENV} ${MAKE} \
297107516Sru		-D_UPGRADING \
298139112Sru		-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
299164470Sjb		-DNO_CPU_CFLAGS -DNO_WERROR
300107516Sru
301122204Skrismake: .PHONY
30255678Smarcel	@echo
30355678Smarcel	@echo "--------------------------------------------------------------"
304116696Sru	@echo ">>> Building an up-to-date make(1)"
30555678Smarcel	@echo "--------------------------------------------------------------"
306133376Sharti	${_+_}@cd ${.CURDIR}/usr.bin/make; \
307107516Sru		${MMAKE} obj && \
308107516Sru		${MMAKE} depend && \
309107516Sru		${MMAKE} all && \
310107516Sru		${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
31155678Smarcel
312185499Salfredtinderbox:
313218524Sjhb	@cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
314185499Salfred
315218524Sjhbtoolchains:
316218524Sjhb	@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
317218524Sjhb
31855678Smarcel#
319111131Sru# universe
320111131Sru#
321111131Sru# Attempt to rebuild *everything* for all supported architectures,
322133945Sru# with a reasonable chance of success, regardless of how old your
323111131Sru# existing system is.
324111131Sru#
325217125Simp.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
326216520SnwhitehornTARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 sun4v
327216520SnwhitehornTARGET_ARCHES_arm?=	arm armeb
328217123SimpTARGET_ARCHES_mips?=	mipsel mipseb mips64el mips64eb
329216520SnwhitehornTARGET_ARCHES_powerpc?=	powerpc powerpc64
330216520SnwhitehornTARGET_ARCHES_pc98?=	i386
331216520SnwhitehornTARGET_ARCHES_sun4v?=	sparc64
332216520Snwhitehorn.for target in ${TARGETS}
333216520SnwhitehornTARGET_ARCHES_${target}?= ${target}
334216520Snwhitehorn.endfor
335168280Smarcel
336218524Sjhb.if defined(UNIVERSE_TARGET)
337218524SjhbMAKE_JUST_WORLDS=	YES
338218524Sjhb.else
339218524SjhbUNIVERSE_TARGET?=	buildworld
340218524Sjhb.endif
341219137SjhbKERNSRCDIR?=		${.CURDIR}/sys
342218524Sjhb
343217125Simptargets:
344217815Sbz	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
345217125Simp.for target in ${TARGETS}
346217125Simp.for target_arch in ${TARGET_ARCHES_${target}}
347217125Simp	@echo "    ${target}/${target_arch}"
348217125Simp.endfor
349217125Simp.endfor
350217125Simp
351185499Salfred.if defined(DOING_TINDERBOX)
352217735SbzFAILFILE=${.CURDIR}/_.tinderbox.failed
353185499SalfredMAKEFAIL=tee -a ${FAILFILE}
354185499Salfred.else
355185499SalfredMAKEFAIL=cat
356185499Salfred.endif
357185499Salfred
358133945Sruuniverse: universe_prologue
359133945Sruuniverse_prologue:
360103985Sphk	@echo "--------------------------------------------------------------"
361103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
362103985Sphk	@echo "--------------------------------------------------------------"
363185499Salfred.if defined(DOING_TINDERBOX)
364217754Sbz	@rm -f ${FAILFILE}
365185499Salfred.endif
366168280Smarcel.for target in ${TARGETS}
367162147Sruuniverse: universe_${target}
368162147Sru.ORDER: universe_prologue universe_${target} universe_epilogue
369216520Snwhitehornuniverse_${target}: universe_${target}_prologue
370216520Snwhitehornuniverse_${target}_prologue:
371216520Snwhitehorn	@echo ">> ${target} started on `LC_ALL=C date`"
372179232Sjb.if !defined(MAKE_JUST_KERNELS)
373216520Snwhitehorn.for target_arch in ${TARGET_ARCHES_${target}}
374216520Snwhitehornuniverse_${target}: universe_${target}_${target_arch}
375216520Snwhitehornuniverse_${target}_${target_arch}: universe_${target}_prologue
376218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
377185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
378218524Sjhb	    ${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
379162147Sru	    TARGET=${target} \
380216520Snwhitehorn	    TARGET_ARCH=${target_arch} \
381218524Sjhb	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
382218524Sjhb	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
383218524Sjhb	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
384216520Snwhitehorn	    ${MAKEFAIL}))
385218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
386216520Snwhitehorn.endfor
387179232Sjb.endif
388205290Sdougb.if !defined(MAKE_JUST_WORLDS)
389219137Sjhb.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
390219137Sjhb	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
391185250Sdes	    ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
392185499Salfred	    (echo "${target} 'make LINT' failed," \
393185499Salfred	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
394103985Sphk.endif
395201815Sbz	@cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
396201815Sbz	    universe_kernels
397205290Sdougb.endif
398201815Sbz	@echo ">> ${target} completed on `LC_ALL=C date`"
399201815Sbz.endfor
400201815Sbzuniverse_kernels: universe_kernconfs
401202095Sbz.if !defined(TARGET)
402202095SbzTARGET!=	uname -m
403202095Sbz.endif
404219137SjhbKERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
405201815Sbz		find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
406201815Sbz		! -name DEFAULTS ! -name NOTES
407201815Sbzuniverse_kernconfs:
408148154Sru.for kernel in ${KERNCONFS}
409219137SjhbTARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
410219137Sjhb	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
411216934Simp	grep -v WARNING: | cut -f 2
412216934Simp.if empty(TARGET_ARCH_${kernel})
413216934Simp.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
414216934Simp.endif
415216520Snwhitehornuniverse_kernconfs: universe_kernconf_${TARGET}_${kernel}
416216520Snwhitehornuniverse_kernconf_${TARGET}_${kernel}:
417185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
418185250Sdes	    ${MAKE} ${JFLAG} buildkernel \
419201815Sbz	    TARGET=${TARGET} \
420216520Snwhitehorn	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
421148154Sru	    KERNCONF=${kernel} \
422201815Sbz	    > _.${TARGET}.${kernel} 2>&1 || \
423201815Sbz	    (echo "${TARGET} ${kernel} kernel failed," \
424201815Sbz	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
425148154Sru.endfor
426133945Sruuniverse: universe_epilogue
427133945Sruuniverse_epilogue:
428103985Sphk	@echo "--------------------------------------------------------------"
429118531Sru	@echo ">>> make universe completed on `LC_ALL=C date`"
430118531Sru	@echo "                      (started ${STARTTIME})"
431103985Sphk	@echo "--------------------------------------------------------------"
432185499Salfred.if defined(DOING_TINDERBOX)
433185499Salfred	@if [ -e ${FAILFILE} ] ; then \
434185499Salfred		echo "Tinderbox failed:" ;\
435185499Salfred		cat ${FAILFILE} ;\
436185499Salfred		exit 1 ;\
437185499Salfred	fi
438133945Sru.endif
439185499Salfred.endif
440