Deleted Added
full compact
Makefile (103985) Makefile (104277)
1#
1#
2# $FreeBSD: head/Makefile 103985 2002-09-26 04:40:54Z phk $
2# $FreeBSD: head/Makefile 104277 2002-10-01 09:58:50Z phk $
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".

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

216 @cd ${.CURDIR}; \
217 ${MAKE} -f Makefile.upgrade -m ${.CURDIR}/share/mk ${.TARGET}
218
219
220universe:
221 @echo "--------------------------------------------------------------"
222 @echo ">>> make universe started on ${STARTTIME}"
223 @echo "--------------------------------------------------------------"
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".

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

216 @cd ${.CURDIR}; \
217 ${MAKE} -f Makefile.upgrade -m ${.CURDIR}/share/mk ${.TARGET}
218
219
220universe:
221 @echo "--------------------------------------------------------------"
222 @echo ">>> make universe started on ${STARTTIME}"
223 @echo "--------------------------------------------------------------"
224.for arch in i386 sparc64 alpha ia64
224.for arch in i386 sparc64 pc98 alpha ia64
225 @printf ">> ${arch} started on `LC_ALL=C date`\n"
226 -cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \
227 __MAKE_CONF=/dev/null \
228 > _.${arch}.buildworld 2>&1
229 @printf ">> ${arch} buildworld ended on `LC_ALL=C date`\n"
225 @printf ">> ${arch} started on `LC_ALL=C date`\n"
226 -cd ${.CURDIR} && make ${JFLAG} buildworld TARGET_ARCH=${arch} \
227 __MAKE_CONF=/dev/null \
228 > _.${arch}.buildworld 2>&1
229 @printf ">> ${arch} buildworld ended on `LC_ALL=C date`\n"
230.if exists(sys/${arch}/conf/NOTES)
231 cd ${.CURDIR}/sys/${arch}/conf && make LINT \
230.if exists(${.CURDIR}/sys/${arch}/conf/NOTES)
231 -cd ${.CURDIR}/sys/${arch}/conf && make LINT \
232 > _.${arch}.makeLINT 2>&1
233.endif
234 cd ${.CURDIR} && make buildkernels TARGET_ARCH=${arch} JFLAG="${JFLAG}"
235 @printf ">> ${arch} ended on `LC_ALL=C date`\n"
236.endfor
237 @echo "--------------------------------------------------------------"
238 @printf ">>> make universe completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
239 @echo "--------------------------------------------------------------"

--- 14 unchanged lines hidden ---
232 > _.${arch}.makeLINT 2>&1
233.endif
234 cd ${.CURDIR} && make buildkernels TARGET_ARCH=${arch} JFLAG="${JFLAG}"
235 @printf ">> ${arch} ended on `LC_ALL=C date`\n"
236.endfor
237 @echo "--------------------------------------------------------------"
238 @printf ">>> make universe completed on `LC_ALL=C date`\n (started ${STARTTIME})\n"
239 @echo "--------------------------------------------------------------"

--- 14 unchanged lines hidden ---