Deleted Added
full compact
Makefile (265449) Makefile (266383)
1#
1#
2# $FreeBSD: stable/10/Makefile 265449 2014-05-06 14:38:03Z brooks $
2# $FreeBSD: stable/10/Makefile 266383 2014-05-18 00:21:14Z ian $
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

468 universe_kernels
469.endif
470 @echo ">> ${target} completed on `LC_ALL=C date`"
471.endfor
472universe_kernels: universe_kernconfs
473.if !defined(TARGET)
474TARGET!= uname -m
475.endif
3#
4# The user-driven targets are:
5#
6# universe - *Really* build *everything* (buildworld and
7# all kernels on all architectures).
8# tinderbox - Same as universe, but presents a list of failed build
9# targets and exits with an error if there were any.
10# buildworld - Rebuild *everything*, including glue to help do

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

468 universe_kernels
469.endif
470 @echo ">> ${target} completed on `LC_ALL=C date`"
471.endfor
472universe_kernels: universe_kernconfs
473.if !defined(TARGET)
474TARGET!= uname -m
475.endif
476.if defined(MAKE_ALL_KERNELS)
477_THINNER=cat
478.else
479_THINNER=xargs grep -L "^.NO_UNIVERSE"
480.endif
476KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
477 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
481KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
482 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
478 ! -name DEFAULTS ! -name NOTES
483 ! -name DEFAULTS ! -name NOTES | \
484 ${_THINNER}
479universe_kernconfs:
480.for kernel in ${KERNCONFS}
481TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
482 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
483 grep -v WARNING: | cut -f 2
484.if empty(TARGET_ARCH_${kernel})
485.error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old."
486.endif

--- 36 unchanged lines hidden ---
485universe_kernconfs:
486.for kernel in ${KERNCONFS}
487TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
488 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
489 grep -v WARNING: | cut -f 2
490.if empty(TARGET_ARCH_${kernel})
491.error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old."
492.endif

--- 36 unchanged lines hidden ---