Deleted Added
full compact
Makefile (202628) Makefile (202629)
1#
1#
2# $FreeBSD: head/Makefile 202628 2010-01-19 15:31:18Z ed $
2# $FreeBSD: head/Makefile 202629 2010-01-19 15:34:16Z ed $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# buildworld - Rebuild *everything*, including glue to help do
9# upgrades.
10# installworld - Install everything built by "buildworld".

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

298.endif
299.for target in ${TARGETS}
300universe: universe_${target}
301.ORDER: universe_prologue universe_${target} universe_epilogue
302universe_${target}:
303.if !defined(MAKE_JUST_KERNELS)
304 @echo ">> ${target} started on `LC_ALL=C date`"
305 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# buildworld - Rebuild *everything*, including glue to help do
9# upgrades.
10# installworld - Install everything built by "buildworld".

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

298.endif
299.for target in ${TARGETS}
300universe: universe_${target}
301.ORDER: universe_prologue universe_${target} universe_epilogue
302universe_${target}:
303.if !defined(MAKE_JUST_KERNELS)
304 @echo ">> ${target} started on `LC_ALL=C date`"
305 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
306 ${MAKE} ${JFLAG} kernel-toolchain \
306 ${MAKE} ${JFLAG} buildworld \
307 TARGET=${target} \
308 > _.${target}.buildworld 2>&1 || \
309 (echo "${target} world failed," \
310 "check _.${target}.buildworld for details" | ${MAKEFAIL}))
311 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
312.endif
313.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
314 @(cd ${.CURDIR}/sys/${target}/conf && env __MAKE_CONF=/dev/null \

--- 39 unchanged lines hidden ---
307 TARGET=${target} \
308 > _.${target}.buildworld 2>&1 || \
309 (echo "${target} world failed," \
310 "check _.${target}.buildworld for details" | ${MAKEFAIL}))
311 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
312.endif
313.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
314 @(cd ${.CURDIR}/sys/${target}/conf && env __MAKE_CONF=/dev/null \

--- 39 unchanged lines hidden ---