summaryrefslogtreecommitdiffstats
path: root/Makefile.inc1
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>2001-01-21 23:44:41 +0000
committerjkh <jkh@FreeBSD.org>2001-01-21 23:44:41 +0000
commit64445bb95aef0b985530c029ca510c23e5f4bead (patch)
treea883bbc4c9017b7fdd88703e4c6eab043e9636a9 /Makefile.inc1
parent506e7f0e1857384b72b5be1d65335df18a6a9977 (diff)
downloadFreeBSD-src-64445bb95aef0b985530c029ca510c23e5f4bead.zip
FreeBSD-src-64445bb95aef0b985530c029ca510c23e5f4bead.tar.gz
Also add some timing information for kernel builds so that it's
easy to do "make world kernel |grep -e '^>>>'" and get a complete event log.
Diffstat (limited to 'Makefile.inc1')
-rw-r--r--Makefile.inc17
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.inc1 b/Makefile.inc1
index 96cefb4..c7fdc79 100644
--- a/Makefile.inc1
+++ b/Makefile.inc1
@@ -392,10 +392,10 @@ buildkernel:
@false
.endif
@echo
+.for _kernel in ${BUILDKERNELS}
@echo "--------------------------------------------------------------"
- @echo ">>> Rebuilding kernel(s)"
+ @echo ">>> Kernel build for ${_kernel} started on `LC_TIME=C date`"
@echo "--------------------------------------------------------------"
-.for _kernel in ${BUILDKERNELS}
@echo "===> ${_kernel}"
mkdir -p ${KRNLOBJDIR}
.if !defined(NO_KERNELCONFIG)
@@ -412,6 +412,9 @@ buildkernel:
.endif
cd ${KRNLOBJDIR}/${_kernel}; \
${WMAKEENV} MACHINE=${MACHINE} ${MAKE} KERNEL=${INSTKERNNAME} all
+ @echo "--------------------------------------------------------------"
+ @echo ">>> Kernel build for ${_kernel} completed on `LC_TIME=C date`"
+ @echo "--------------------------------------------------------------"
.endfor
#
OpenPOWER on IntegriCloud