Deleted Added
full compact
Makefile (242522) Makefile (248937)
1#
1#
2# $FreeBSD: head/Makefile 242522 2012-11-03 20:43:12Z marcel $
2# $FreeBSD: head/Makefile 248937 2013-03-31 02:03:34Z andrew $
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

--- 376 unchanged lines hidden (view full) ---

387 > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
388 (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
389 "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
390 ${MAKEFAIL}))
391 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
392.endfor
393.endif
394.if !defined(MAKE_JUST_WORLDS)
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

--- 376 unchanged lines hidden (view full) ---

387 > _.${target}.${target_arch}.${UNIVERSE_TARGET} 2>&1 || \
388 (echo "${target}.${target_arch} ${UNIVERSE_TARGET} failed," \
389 "check _.${target}.${target_arch}.${UNIVERSE_TARGET} for details" | \
390 ${MAKEFAIL}))
391 @echo ">> ${target}.${target_arch} ${UNIVERSE_TARGET} completed on `LC_ALL=C date`"
392.endfor
393.endif
394.if !defined(MAKE_JUST_WORLDS)
395# If we are building world and kernels wait for the required worlds to finish
396.if !defined(MAKE_JUST_KERNELS)
397.for target_arch in ${TARGET_ARCHES_${target}}
398universe_${target}_kernels: universe_${target}_${target_arch}
399.endfor
400.endif
401universe_${target}: universe_${target}_kernels
402universe_${target}_kernels: universe_${target}_prologue
395.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
396 @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
397 ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
398 (echo "${target} 'make LINT' failed," \
399 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
400.endif
401 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
402 universe_kernels

--- 46 unchanged lines hidden ---
403.if exists(${KERNSRCDIR}/${target}/conf/NOTES)
404 @(cd ${KERNSRCDIR}/${target}/conf && env __MAKE_CONF=/dev/null \
405 ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
406 (echo "${target} 'make LINT' failed," \
407 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
408.endif
409 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
410 universe_kernels

--- 46 unchanged lines hidden ---