Deleted Added
full compact
Makefile (148545) Makefile (152879)
1#
1#
2# $FreeBSD: head/Makefile 148330 2005-07-23 14:23:30Z netchild $
2# $FreeBSD: head/Makefile 152879 2005-11-28 11:03:59Z ru $
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".

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

264universe_prologue:
265 @echo "--------------------------------------------------------------"
266 @echo ">>> make universe started on ${STARTTIME}"
267 @echo "--------------------------------------------------------------"
268.for target in i386 i386:pc98 sparc64 alpha ia64 amd64
269.for arch in ${target:C/:.*$//}
270.for mach in ${target:C/^.*://}
271KERNCONFS!= cd ${.CURDIR}/sys/${mach}/conf && \
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".

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

264universe_prologue:
265 @echo "--------------------------------------------------------------"
266 @echo ">>> make universe started on ${STARTTIME}"
267 @echo "--------------------------------------------------------------"
268.for target in i386 i386:pc98 sparc64 alpha ia64 amd64
269.for arch in ${target:C/:.*$//}
270.for mach in ${target:C/^.*://}
271KERNCONFS!= cd ${.CURDIR}/sys/${mach}/conf && \
272 find [A-Z]*[A-Z] -type f -maxdepth 0
272 find [A-Z]*[A-Z] -type f -maxdepth 0 \
273 ! -name DEFAULTS ! -name NOTES
273KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
274universe: universe_${mach}
275.ORDER: universe_prologue universe_${mach} universe_epilogue
276universe_${mach}:
277 @echo ">> ${mach} started on `LC_ALL=C date`"
278 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
279 TARGET_ARCH=${arch} TARGET=${mach} \
280 __MAKE_CONF=/dev/null \

--- 24 unchanged lines hidden ---
274KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
275universe: universe_${mach}
276.ORDER: universe_prologue universe_${mach} universe_epilogue
277universe_${mach}:
278 @echo ">> ${mach} started on `LC_ALL=C date`"
279 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
280 TARGET_ARCH=${arch} TARGET=${mach} \
281 __MAKE_CONF=/dev/null \

--- 24 unchanged lines hidden ---