Deleted Added
full compact
2c2
< # $FreeBSD: head/Makefile 216487 2010-12-16 15:27:13Z jhb $
---
> # $FreeBSD: head/Makefile 216520 2010-12-18 14:34:05Z nwhitehorn $
284c284,292
< TARGETS?=amd64 i386 ia64 pc98 powerpc sparc64 sun4v mips
---
> TARGETS?=amd64 arm i386 ia64 mips pc98 powerpc sparc64 sun4v
> TARGET_ARCHES_arm?= arm armeb
> TARGET_ARCHES_mips?= mipsel mipseb
> TARGET_ARCHES_powerpc?= powerpc powerpc64
> TARGET_ARCHES_pc98?= i386
> TARGET_ARCHES_sun4v?= sparc64
> .for target in ${TARGETS}
> TARGET_ARCHES_${target}?= ${target}
> .endfor
304,305c312,313
< universe_${target}:
< .if !defined(MAKE_JUST_KERNELS)
---
> universe_${target}: universe_${target}_prologue
> universe_${target}_prologue:
306a315,319
> .if !defined(MAKE_JUST_KERNELS)
> .for target_arch in ${TARGET_ARCHES_${target}}
> universe_${target}: universe_${target}_${target_arch}
> universe_${target}_${target_arch}: universe_${target}_prologue
> @echo ">> ${target}.${target_arch} buildworld started on `LC_ALL=C date`"
310,313c323,329
< > _.${target}.buildworld 2>&1 || \
< (echo "${target} world failed," \
< "check _.${target}.buildworld for details" | ${MAKEFAIL}))
< @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
---
> TARGET_ARCH=${target_arch} \
> > _.${target}.${target_arch}.buildworld 2>&1 || \
> (echo "${target}.${target_arch} world failed," \
> "check _.${target}.${target_arch}.buildworld for details" | \
> ${MAKEFAIL}))
> @echo ">> ${target}.${target_arch} buildworld completed on `LC_ALL=C date`"
> .endfor
335a352,356
> TARGET_ARCH_${kernel}!= cd ${.CURDIR}/sys/${TARGET}/conf && \
> config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} | \
> cut -f 2
> universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
> universe_kernconf_${TARGET}_${kernel}:
338a360
> TARGET_ARCH=${TARGET_ARCH_${kernel}} \