Deleted Added
full compact
Makefile (178653) Makefile (179232)
1#
1#
2# $FreeBSD: head/Makefile 178653 2008-04-29 09:08:33Z rwatson $
2# $FreeBSD: head/Makefile 179232 2008-05-23 04:20:59Z jb $
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".

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

285.for target in ${TARGETS}
286KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
287 find [A-Z]*[A-Z] -type f -maxdepth 0 \
288 ! -name DEFAULTS ! -name LINT
289KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
290universe: universe_${target}
291.ORDER: universe_prologue universe_${target} universe_epilogue
292universe_${target}:
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".

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

285.for target in ${TARGETS}
286KERNCONFS!= cd ${.CURDIR}/sys/${target}/conf && \
287 find [A-Z]*[A-Z] -type f -maxdepth 0 \
288 ! -name DEFAULTS ! -name LINT
289KERNCONFS:= ${KERNCONFS:S/^NOTES$/LINT/}
290universe: universe_${target}
291.ORDER: universe_prologue universe_${target} universe_epilogue
292universe_${target}:
293.if !defined(MAKE_JUST_KERNELS)
293 @echo ">> ${target} started on `LC_ALL=C date`"
294 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
295 TARGET=${target} \
296 __MAKE_CONF=/dev/null \
297 > _.${target}.buildworld 2>&1
298 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
294 @echo ">> ${target} started on `LC_ALL=C date`"
295 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildworld \
296 TARGET=${target} \
297 __MAKE_CONF=/dev/null \
298 > _.${target}.buildworld 2>&1
299 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
300.endif
299.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
300 -cd ${.CURDIR}/sys/${target}/conf && ${MAKE} LINT \
301 > ${.CURDIR}/_.${target}.makeLINT 2>&1
302.endif
303.for kernel in ${KERNCONFS}
304 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernel \
305 TARGET=${target} \
306 KERNCONF=${kernel} \

--- 12 unchanged lines hidden ---
301.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
302 -cd ${.CURDIR}/sys/${target}/conf && ${MAKE} LINT \
303 > ${.CURDIR}/_.${target}.makeLINT 2>&1
304.endif
305.for kernel in ${KERNCONFS}
306 -cd ${.CURDIR} && ${MAKE} ${JFLAG} buildkernel \
307 TARGET=${target} \
308 KERNCONF=${kernel} \

--- 12 unchanged lines hidden ---