Deleted Added
full compact
2c2
< # $FreeBSD: head/Makefile 159862 2006-06-22 16:52:53Z imp $
---
> # $FreeBSD: head/Makefile 162147 2006-09-08 10:13:15Z ru $
61,62c61,62
< # If TARGET_ARCH=arch (e.g. ia64, sparc64, ...) is specified you can
< # cross build world for other architectures using the buildworld target,
---
> # If TARGET=machine (e.g. ia64, sparc64, ...) is specified you can
> # cross build world for other machine types using the buildworld target,
269,272c269,270
< .for target in i386 i386:pc98 sparc64 ia64 amd64
< .for arch in ${target:C/:.*$//}
< .for mach in ${target:C/^.*://}
< KERNCONFS!= cd ${.CURDIR}/sys/${mach}/conf && \
---
> .for target in amd64 i386 ia64 pc98 sparc64
> KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
276,279c274,277
< universe: universe_${mach}
< .ORDER: universe_prologue universe_${mach} universe_epilogue
< universe_${mach}:
< @echo ">> ${mach} started on `LC_ALL=C date`"
---
> universe: universe_${target}
> .ORDER: universe_prologue universe_${target} universe_epilogue
> universe_${target}:
> @echo ">> ${target} started on `LC_ALL=C date`"
281c279
< TARGET_ARCH=${arch} TARGET=${mach} \
---
> TARGET=${target} \
283,287c281,285
< > _.${mach}.buildworld 2>&1
< @echo ">> ${mach} buildworld completed on `LC_ALL=C date`"
< .if exists(${.CURDIR}/sys/${mach}/conf/NOTES)
< -cd ${.CURDIR}/sys/${mach}/conf && ${MAKE} LINT \
< > ${.CURDIR}/_.${mach}.makeLINT 2>&1
---
> > _.${target}.buildworld 2>&1
> @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
> .if exists(${.CURDIR}/sys/${target}/conf/NOTES)
> -cd ${.CURDIR}/sys/${target}/conf && ${MAKE} LINT \
> > ${.CURDIR}/_.${target}.makeLINT 2>&1
291c289
< TARGET_ARCH=${arch} TARGET=${mach} \
---
> TARGET=${target} \
294c292
< > _.${mach}.${kernel} 2>&1
---
> > _.${target}.${kernel} 2>&1
296c294
< @echo ">> ${mach} completed on `LC_ALL=C date`"
---
> @echo ">> ${target} completed on `LC_ALL=C date`"
298,299d295
< .endfor
< .endfor