Deleted Added
full compact
Makefile (164709) Makefile (168280)
1#
1#
2# $FreeBSD: head/Makefile 164709 2006-11-28 01:03:29Z ru $
2# $FreeBSD: head/Makefile 168280 2007-04-02 21:32:44Z marcel $
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".

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

256#
257# universe
258#
259# Attempt to rebuild *everything* for all supported architectures,
260# with a reasonable chance of success, regardless of how old your
261# existing system is.
262#
263.if make(universe)
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".

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

256#
257# universe
258#
259# Attempt to rebuild *everything* for all supported architectures,
260# with a reasonable chance of success, regardless of how old your
261# existing system is.
262#
263.if make(universe)
264TARGETS?=amd64 arm i386 ia64 pc98 powerpc sparc64 sun4v
265
264universe: universe_prologue
265universe_prologue:
266 @echo "--------------------------------------------------------------"
267 @echo ">>> make universe started on ${STARTTIME}"
268 @echo "--------------------------------------------------------------"
266universe: universe_prologue
267universe_prologue:
268 @echo "--------------------------------------------------------------"
269 @echo ">>> make universe started on ${STARTTIME}"
270 @echo "--------------------------------------------------------------"
269.for target in amd64 arm i386 ia64 pc98 powerpc sparc64 sun4v
271.for target in ${TARGETS}
270KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
271 find [A-Z]*[A-Z] -type f -maxdepth 0 \
272 ! -name DEFAULTS ! -name LINT
273KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
274universe: universe_${target}
275.ORDER: universe_prologue universe_${target} universe_epilogue
276universe_${target}:
277 @echo ">> ${target} started on `LC_ALL=C date`"

--- 25 unchanged lines hidden ---
272KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
273 find [A-Z]*[A-Z] -type f -maxdepth 0 \
274 ! -name DEFAULTS ! -name LINT
275KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
276universe: universe_${target}
277.ORDER: universe_prologue universe_${target} universe_epilogue
278universe_${target}:
279 @echo ">> ${target} started on `LC_ALL=C date`"

--- 25 unchanged lines hidden ---