Deleted Added
full compact
Makefile (294045) Makefile (295679)
1#
1#
2# $FreeBSD: stable/10/Makefile 294045 2016-01-14 21:59:43Z bdrewery $
2# $FreeBSD: stable/10/Makefile 295679 2016-02-16 22:37:24Z bapt $
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

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

477TARGET!= uname -m
478.endif
479.if defined(MAKE_ALL_KERNELS)
480_THINNER=cat
481.else
482_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
483.endif
484KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
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

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

477TARGET!= uname -m
478.endif
479.if defined(MAKE_ALL_KERNELS)
480_THINNER=cat
481.else
482_THINNER=xargs grep -L "^.NO_UNIVERSE" || true
483.endif
484KERNCONFS!= cd ${KERNSRCDIR}/${TARGET}/conf && \
485 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
485 find [[:upper:][:digit:]]*[[:upper:][:digit:]] \
486 -type f -maxdepth 0 \
486 ! -name DEFAULTS ! -name NOTES | \
487 ${_THINNER}
488universe_kernconfs:
489.for kernel in ${KERNCONFS}
490TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
491 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
492 grep -v WARNING: | cut -f 2
493.if empty(TARGET_ARCH_${kernel})

--- 38 unchanged lines hidden ---
487 ! -name DEFAULTS ! -name NOTES | \
488 ${_THINNER}
489universe_kernconfs:
490.for kernel in ${KERNCONFS}
491TARGET_ARCH_${kernel}!= cd ${KERNSRCDIR}/${TARGET}/conf && \
492 config -m ${KERNSRCDIR}/${TARGET}/conf/${kernel} 2> /dev/null | \
493 grep -v WARNING: | cut -f 2
494.if empty(TARGET_ARCH_${kernel})

--- 38 unchanged lines hidden ---