Deleted Added
full compact
Makefile (201960) Makefile (202095)
1#
1#
2# $FreeBSD: head/Makefile 201960 2010-01-09 23:37:29Z bz $
2# $FreeBSD: head/Makefile 202095 2010-01-11 17:58:15Z bz $
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".

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

316 (echo "${target} 'make LINT' failed," \
317 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
318.endif
319 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
320 universe_kernels
321 @echo ">> ${target} completed on `LC_ALL=C date`"
322.endfor
323universe_kernels: universe_kernconfs
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".

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

316 (echo "${target} 'make LINT' failed," \
317 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
318.endif
319 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
320 universe_kernels
321 @echo ">> ${target} completed on `LC_ALL=C date`"
322.endfor
323universe_kernels: universe_kernconfs
324XMACHINE!= uname -m
325TARGET?= ${XMACHINE}
324.if !defined(TARGET)
325TARGET!= uname -m
326.endif
326KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
327 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
328 ! -name DEFAULTS ! -name NOTES
329universe_kernconfs:
330.for kernel in ${KERNCONFS}
331 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
332 ${MAKE} ${JFLAG} buildkernel \
333 TARGET=${TARGET} \

--- 19 unchanged lines hidden ---
327KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
328 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \
329 ! -name DEFAULTS ! -name NOTES
330universe_kernconfs:
331.for kernel in ${KERNCONFS}
332 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
333 ${MAKE} ${JFLAG} buildkernel \
334 TARGET=${TARGET} \

--- 19 unchanged lines hidden ---