Deleted Added
full compact
Makefile (204661) Makefile (205290)
1#
1#
2# $FreeBSD: head/Makefile 204661 2010-03-03 21:08:44Z imp $
2# $FreeBSD: head/Makefile 205290 2010-03-18 18:58:17Z dougb $
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".

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

306 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
307 ${MAKE} ${JFLAG} buildworld \
308 TARGET=${target} \
309 > _.${target}.buildworld 2>&1 || \
310 (echo "${target} world failed," \
311 "check _.${target}.buildworld for details" | ${MAKEFAIL}))
312 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
313.endif
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".

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

306 @(cd ${.CURDIR} && env __MAKE_CONF=/dev/null \
307 ${MAKE} ${JFLAG} buildworld \
308 TARGET=${target} \
309 > _.${target}.buildworld 2>&1 || \
310 (echo "${target} world failed," \
311 "check _.${target}.buildworld for details" | ${MAKEFAIL}))
312 @echo ">> ${target} buildworld completed on `LC_ALL=C date`"
313.endif
314.if !defined(MAKE_JUST_WORLDS)
314.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
315 @(cd ${.CURDIR}/sys/${target}/conf && env __MAKE_CONF=/dev/null \
316 ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
317 (echo "${target} 'make LINT' failed," \
318 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
319.endif
320 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
321 universe_kernels
315.if exists(${.CURDIR}/sys/${target}/conf/NOTES)
316 @(cd ${.CURDIR}/sys/${target}/conf && env __MAKE_CONF=/dev/null \
317 ${MAKE} LINT > ${.CURDIR}/_.${target}.makeLINT 2>&1 || \
318 (echo "${target} 'make LINT' failed," \
319 "check _.${target}.makeLINT for details"| ${MAKEFAIL}))
320.endif
321 @cd ${.CURDIR} && ${MAKE} ${.MAKEFLAGS} TARGET=${target} \
322 universe_kernels
323.endif
322 @echo ">> ${target} completed on `LC_ALL=C date`"
323.endfor
324universe_kernels: universe_kernconfs
325.if !defined(TARGET)
326TARGET!= uname -m
327.endif
328KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
329 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \

--- 25 unchanged lines hidden ---
324 @echo ">> ${target} completed on `LC_ALL=C date`"
325.endfor
326universe_kernels: universe_kernconfs
327.if !defined(TARGET)
328TARGET!= uname -m
329.endif
330KERNCONFS!= cd ${.CURDIR}/sys/${TARGET}/conf && \
331 find [A-Z0-9]*[A-Z0-9] -type f -maxdepth 0 \

--- 25 unchanged lines hidden ---