Deleted Added
full compact
Makefile (217733) Makefile (217734)
1#
1#
2# $FreeBSD: head/Makefile 217733 2011-01-22 22:57:28Z bz $
2# $FreeBSD: head/Makefile 217734 2011-01-22 23:10:58Z bz $
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

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

292TARGET_ARCHES_powerpc?= powerpc powerpc64
293TARGET_ARCHES_pc98?= i386
294TARGET_ARCHES_sun4v?= sparc64
295.for target in ${TARGETS}
296TARGET_ARCHES_${target}?= ${target}
297.endfor
298
299targets:
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

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

292TARGET_ARCHES_powerpc?= powerpc powerpc64
293TARGET_ARCHES_pc98?= i386
294TARGET_ARCHES_sun4v?= sparc64
295.for target in ${TARGETS}
296TARGET_ARCHES_${target}?= ${target}
297.endfor
298
299targets:
300 @echo "Supported TARGET/TARGET_ARCH pairs"
300 @echo "Supported TARGETS/TARGET_ARCH pairs"
301.for target in ${TARGETS}
302.for target_arch in ${TARGET_ARCHES_${target}}
303 @echo " ${target}/${target_arch}"
304.endfor
305.endfor
306
307.if defined(DOING_TINDERBOX)
308FAILFILE=tinderbox.failed

--- 87 unchanged lines hidden ---
301.for target in ${TARGETS}
302.for target_arch in ${TARGET_ARCHES_${target}}
303 @echo " ${target}/${target_arch}"
304.endfor
305.endfor
306
307.if defined(DOING_TINDERBOX)
308FAILFILE=tinderbox.failed

--- 87 unchanged lines hidden ---