Deleted Added
full compact
Makefile (216685) Makefile (216934)
1#
1#
2# $FreeBSD: head/Makefile 216685 2010-12-24 04:55:56Z imp $
2# $FreeBSD: head/Makefile 216934 2011-01-03 22:48:01Z imp $
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".

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

346.endif
347KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
348 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
349 ! -name DEFAULTS ! -name NOTES
350universe_kernconfs:
351.for kernel in ${KERNCONFS}
352TARGET_ARCH_${kernel}!= cd ${.CURDIR}/sys/${TARGET}/conf && \
353 config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} 2> /dev/null | \
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".

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

346.endif
347KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
348 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
349 ! -name DEFAULTS ! -name NOTES
350universe_kernconfs:
351.for kernel in ${KERNCONFS}
352TARGET_ARCH_${kernel}!= cd ${.CURDIR}/sys/${TARGET}/conf && \
353 config -m ${.CURDIR}/sys/${TARGET}/conf/${kernel} 2> /dev/null | \
354 cut -f 2
354 grep -v WARNING: | cut -f 2
355.if empty(TARGET_ARCH_${kernel})
356.error "Target architecture for ${TARGET}/conf/${kernel} unknown. config(8) likely too old."
357.endif
355universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
356universe_kernconf_${TARGET}_${kernel}:
357 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
358 ${MAKE} ${JFLAG} buildkernel \
359 TARGET=${TARGET} \
360 TARGET_ARCH=${TARGET_ARCH_${kernel}} \
361 KERNCONF=${kernel} \
362 > _.${TARGET}.${kernel} 2>&1 || \

--- 17 unchanged lines hidden ---
358universe_kernconfs: universe_kernconf_${TARGET}_${kernel}
359universe_kernconf_${TARGET}_${kernel}:
360 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
361 ${MAKE} ${JFLAG} buildkernel \
362 TARGET=${TARGET} \
363 TARGET_ARCH=${TARGET_ARCH_${kernel}} \
364 KERNCONF=${kernel} \
365 > _.${TARGET}.${kernel} 2>&1 || \

--- 17 unchanged lines hidden ---