Makefile revision 249534
12061Sjkh#
250479Speter# $FreeBSD: stable/9/Makefile 249534 2013-04-16 06:51:07Z dim $
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.
22223148Sru# update              - Convenient way to update your source tree(s).
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.
27231941Spluknet# delete-old          - Delete obsolete directories/files.
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)
134221869Sattilio_TARGET_ARCH=	${TARGET:S/pc98/i386/: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
185227879Sgjb# files with file flags 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
188227879Sgjb# needed to correctly handle all the possible situations.  Removing all
189227879Sgjb# files without file flags set in the first 'rm' instance saves time,
190227879Sgjb# because 'chflags' will need to operate on fewer files afterwards.
191126024Sgad#
192126024SgadBW_CANONICALOBJDIR:=${MAKEOBJDIRPREFIX}${.CURDIR}
193126031Sgadcleanworld:
194126024Sgad.if ${.CURDIR} == ${.OBJDIR} || ${.CURDIR}/obj == ${.OBJDIR}
195126024Sgad.if exists(${BW_CANONICALOBJDIR}/)
196126024Sgad	-rm -rf ${BW_CANONICALOBJDIR}/*
197172744Sdelphij	-chflags -R 0 ${BW_CANONICALOBJDIR}
198126024Sgad	rm -rf ${BW_CANONICALOBJDIR}/*
199126024Sgad.endif
200126024Sgad	#   To be safe in this case, fall back to a 'make cleandir'
201133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} cleandir
202126024Sgad.else
203126024Sgad	-rm -rf ${.OBJDIR}/*
204172744Sdelphij	-chflags -R 0 ${.OBJDIR}
205126024Sgad	rm -rf ${.OBJDIR}/*
206126024Sgad.endif
207125885Sgad
208125885Sgad#
20938666Sjb# Handle the user-driven targets, using the source relative mk files.
21017308Speter#
211119519Smarcel
212119579Sru${TGTS}:
213218206Simp	${_+_}@cd ${.CURDIR}; ${_MAKE} ${.TARGET}
2142302Spaul
21539206Sjkh# Set a reasonable default
21639206Sjkh.MAIN:	all
21739206Sjkh
218133945SruSTARTTIME!= LC_ALL=C date
219220556SbzCHECK_TIME!= find ${.CURDIR}/sys/sys/param.h -mtime -0s
220177609Sru.if !empty(CHECK_TIME)
221177609Sru.error check your date/time: ${STARTTIME}
222177609Sru.endif
223133945Sru
224132358Smarkm.if defined(HISTORICAL_MAKE_WORLD) || defined(DESTDIR)
22517308Speter#
22654324Smarcel# world
22754324Smarcel#
228132234Smarcel# Attempt to rebuild and reinstall everything. This target is not to be
229132234Smarcel# used for upgrading an existing FreeBSD system, because the kernel is
230132234Smarcel# not included. One can argue that this target doesn't build everything
231132234Smarcel# then.
23254324Smarcel#
23354324Smarcelworld: upgrade_checks
23454324Smarcel	@echo "--------------------------------------------------------------"
235118531Sru	@echo ">>> make world started on ${STARTTIME}"
23654324Smarcel	@echo "--------------------------------------------------------------"
23754324Smarcel.if target(pre-world)
23854324Smarcel	@echo
23954324Smarcel	@echo "--------------------------------------------------------------"
24054324Smarcel	@echo ">>> Making 'pre-world' target"
24154324Smarcel	@echo "--------------------------------------------------------------"
242133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} pre-world
24354324Smarcel.endif
244133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} buildworld
245133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} -B installworld
24654324Smarcel.if target(post-world)
24754324Smarcel	@echo
24854324Smarcel	@echo "--------------------------------------------------------------"
24954324Smarcel	@echo ">>> Making 'post-world' target"
25054324Smarcel	@echo "--------------------------------------------------------------"
251133376Sharti	${_+_}@cd ${.CURDIR}; ${_MAKE} post-world
25254324Smarcel.endif
25354324Smarcel	@echo
25454324Smarcel	@echo "--------------------------------------------------------------"
255118531Sru	@echo ">>> make world completed on `LC_ALL=C date`"
256118531Sru	@echo "                   (started ${STARTTIME})"
25754324Smarcel	@echo "--------------------------------------------------------------"
258132234Smarcel.else
259132234Smarcelworld:
260132234Smarcel	@echo "WARNING: make world will overwrite your existing FreeBSD"
261132234Smarcel	@echo "installation without also building and installing a new"
262132234Smarcel	@echo "kernel.  This can be dangerous.  Please read the handbook,"
263132588Skensmith	@echo "'Rebuilding world', for how to upgrade your system."
264132358Smarkm	@echo "Define DESTDIR to where you want to install FreeBSD,"
265132234Smarcel	@echo "including /, to override this warning and proceed as usual."
266132358Smarkm	@echo ""
267132234Smarcel	@echo "Bailing out now..."
268132234Smarcel	@false
269132234Smarcel.endif
27054324Smarcel
27154324Smarcel#
27295730Sru# kernel
27395730Sru#
27495730Sru# Short hand for `make buildkernel installkernel'
27595730Sru#
27695730Srukernel: buildkernel installkernel
27795730Sru
27895730Sru#
27938666Sjb# Perform a few tests to determine if the installed tools are adequate
280107374Sru# for building the world.
28117308Speter#
28255678Smarcelupgrade_checks:
283143032Sharti	@if ! (cd ${.CURDIR}/tools/build/make_check && \
284138515Sharti	    PATH=${PATH} ${BINMAKE} obj >/dev/null 2>&1 && \
285117793Sru	    PATH=${PATH} ${BINMAKE} >/dev/null 2>&1); \
286110035Sru	then \
287174564Simp	    (cd ${.CURDIR} && ${MAKE} make); \
288110035Sru	fi
2892061Sjkh
29017308Speter#
291107516Sru# Upgrade make(1) to the current version using the installed
292174539Simp# headers, libraries and tools.  Also, allow the location of
293174539Simp# the system bsdmake-like utility to be overridden.
29455678Smarcel#
295107516SruMMAKEENV=	MAKEOBJDIRPREFIX=${MAKEPATH} \
296107516Sru		DESTDIR= \
297107516Sru		INSTALL="sh ${.CURDIR}/tools/install.sh"
298174564SimpMMAKE=		${MMAKEENV} ${MAKE} \
299107516Sru		-D_UPGRADING \
300139112Sru		-DNOMAN -DNO_MAN -DNOSHARED -DNO_SHARED \
301164470Sjb		-DNO_CPU_CFLAGS -DNO_WERROR
302107516Sru
303122204Skrismake: .PHONY
30455678Smarcel	@echo
30555678Smarcel	@echo "--------------------------------------------------------------"
306116696Sru	@echo ">>> Building an up-to-date make(1)"
30755678Smarcel	@echo "--------------------------------------------------------------"
308133376Sharti	${_+_}@cd ${.CURDIR}/usr.bin/make; \
309107516Sru		${MMAKE} obj && \
310107516Sru		${MMAKE} depend && \
311107516Sru		${MMAKE} all && \
312107516Sru		${MMAKE} install DESTDIR=${MAKEPATH} BINDIR=
31355678Smarcel
314185499Salfredtinderbox:
315218524Sjhb	@cd ${.CURDIR} && ${MAKE} DOING_TINDERBOX=YES universe
316185499Salfred
317218524Sjhbtoolchains:
318218524Sjhb	@cd ${.CURDIR} && ${MAKE} UNIVERSE_TARGET=toolchain universe
319218524Sjhb
32055678Smarcel#
321111131Sru# universe
322111131Sru#
323111131Sru# Attempt to rebuild *everything* for all supported architectures,
324133945Sru# with a reasonable chance of success, regardless of how old your
325111131Sru# existing system is.
326111131Sru#
327217125Simp.if make(universe) || make(universe_kernels) || make(tinderbox) || make(targets)
328221869SattilioTARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64
329216520SnwhitehornTARGET_ARCHES_arm?=	arm armeb
330221216SjhbTARGET_ARCHES_mips?=	mipsel mipseb mips64el mips64eb mipsn32eb
331216520SnwhitehornTARGET_ARCHES_powerpc?=	powerpc powerpc64
332216520SnwhitehornTARGET_ARCHES_pc98?=	i386
333216520Snwhitehorn.for target in ${TARGETS}
334216520SnwhitehornTARGET_ARCHES_${target}?= ${target}
335216520Snwhitehorn.endfor
336168280Smarcel
337218524Sjhb.if defined(UNIVERSE_TARGET)
338218524SjhbMAKE_JUST_WORLDS=	YES
339218524Sjhb.else
340218524SjhbUNIVERSE_TARGET?=	buildworld
341218524Sjhb.endif
342219137SjhbKERNSRCDIR?=		${.CURDIR}/sys
343218524Sjhb
344217125Simptargets:
345217815Sbz	@echo "Supported TARGET/TARGET_ARCH pairs for world and kernel targets"
346217125Simp.for target in ${TARGETS}
347217125Simp.for target_arch in ${TARGET_ARCHES_${target}}
348217125Simp	@echo "    ${target}/${target_arch}"
349217125Simp.endfor
350217125Simp.endfor
351217125Simp
352185499Salfred.if defined(DOING_TINDERBOX)
353217735SbzFAILFILE=${.CURDIR}/_.tinderbox.failed
354185499SalfredMAKEFAIL=tee -a ${FAILFILE}
355185499Salfred.else
356185499SalfredMAKEFAIL=cat
357185499Salfred.endif
358185499Salfred
359249534Sdimuniverse: universe_prologue upgrade_checks
360133945Sruuniverse_prologue:
361103985Sphk	@echo "--------------------------------------------------------------"
362103985Sphk	@echo ">>> make universe started on ${STARTTIME}"
363103985Sphk	@echo "--------------------------------------------------------------"
364185499Salfred.if defined(DOING_TINDERBOX)
365217754Sbz	@rm -f ${FAILFILE}
366185499Salfred.endif
367168280Smarcel.for target in ${TARGETS}
368162147Sruuniverse: universe_${target}
369249534Sdim.ORDER: universe_prologue upgrade_checks universe_${target}_prologue universe_${target} universe_epilogue
370216520Snwhitehornuniverse_${target}: universe_${target}_prologue
371216520Snwhitehornuniverse_${target}_prologue:
372216520Snwhitehorn	@echo ">> ${target} started on `LC_ALL=C date`"
373179232Sjb.if !defined(MAKE_JUST_KERNELS)
374216520Snwhitehorn.for target_arch in ${TARGET_ARCHES_${target}}
375216520Snwhitehornuniverse_${target}: universe_${target}_${target_arch}
376216520Snwhitehornuniverse_${target}_${target_arch}: universe_${target}_prologue
377218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} started on `LC_ALL=C date`"
378185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
379218524Sjhb	    ${MAKE} ${JFLAG} ${UNIVERSE_TARGET} \
380162147Sru	    TARGET=${target} \
381216520Snwhitehorn	    TARGET_ARCH=${target_arch} \
382218524Sjhb	    > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
383218524Sjhb	    (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
384218524Sjhb	    "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
385216520Snwhitehorn	    ${MAKEFAIL}))
386218524Sjhb	@echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
387216520Snwhitehorn.endfor
388179232Sjb.endif
389205290Sdougb.if !defined(MAKE_JUST_WORLDS)
390219137Sjhb.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
391219137Sjhb	@(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
392185250Sdes	    ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
393185499Salfred	    (echo "${target} 'make LINT' failed," \
394185499Salfred	    "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
395103985Sphk.endif
396201815Sbz	@cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
397201815Sbz	    universe_kernels
398205290Sdougb.endif
399201815Sbz	@echo ">> ${target} completed on `LC_ALL=C date`"
400201815Sbz.endfor
401201815Sbzuniverse_kernels: universe_kernconfs
402202095Sbz.if !defined(TARGET)
403202095SbzTARGET!=	uname -m
404202095Sbz.endif
405219137SjhbKERNCONFS!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
406201815Sbz		find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
407201815Sbz		! -name DEFAULTS ! -name NOTES
408201815Sbzuniverse_kernconfs:
409148154Sru.for kernel in ${KERNCONFS}
410219137SjhbTARGET_ARCH_${kernel}!=	cd ${KERNSRCDIR}/${TARGET}/conf && \
411219137Sjhb	config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
412216934Simp	grep -v WARNING: | cut -f 2
413216934Simp.if empty(TARGET_ARCH_${kernel})
414216934Simp.error "Target architecture for ${TARGET}/conf/${kernel} unknown.  config(8) likely too old."
415216934Simp.endif
416216520Snwhitehornuniverse_kernconfs: universe_kernconf_${TARGET}_${kernel}
417216520Snwhitehornuniverse_kernconf_${TARGET}_${kernel}:
418185250Sdes	@(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
419185250Sdes	    ${MAKE} ${JFLAG} buildkernel \
420201815Sbz	    TARGET=${TARGET} \
421216520Snwhitehorn	    TARGET_ARCH=${TARGET_ARCH_${kernel}} \
422148154Sru	    KERNCONF=${kernel} \
423201815Sbz	    > _.${TARGET}.${kernel} 2>&1 || \
424201815Sbz	    (echo "${TARGET} ${kernel} kernel failed," \
425201815Sbz	    "check _.${TARGET}.${kernel} for details"| ${MAKEFAIL}))
426148154Sru.endfor
427133945Sruuniverse: universe_epilogue
428133945Sruuniverse_epilogue:
429103985Sphk	@echo "--------------------------------------------------------------"
430118531Sru	@echo ">>> make universe completed on `LC_ALL=C date`"
431118531Sru	@echo "                      (started ${STARTTIME})"
432103985Sphk	@echo "--------------------------------------------------------------"
433185499Salfred.if defined(DOING_TINDERBOX)
434185499Salfred	@if [ -e ${FAILFILE} ] ; then \
435185499Salfred		echo "Tinderbox failed:" ;\
436185499Salfred		cat ${FAILFILE} ;\
437185499Salfred		exit 1 ;\
438185499Salfred	fi
439133945Sru.endif
440185499Salfred.endif
441