add date printout at beginning and end of 'make build's
This commit is contained in:
parent
e08a44b196
commit
14580efdcf
10
Makefile
10
Makefile
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.44 1998/01/30 07:10:31 mellon Exp $
|
||||
# $NetBSD: Makefile,v 1.45 1998/02/06 23:11:57 perry Exp $
|
||||
|
||||
.include <bsd.own.mk> # for configuration variables.
|
||||
|
||||
|
@ -29,6 +29,10 @@ regression-tests:
|
|||
.endif
|
||||
|
||||
beforeinstall:
|
||||
.ifmake build
|
||||
@echo -n "Build started at: "
|
||||
@date
|
||||
.endif
|
||||
.ifndef DESTDIR
|
||||
(cd ${.CURDIR}/etc && ${MAKE} DESTDIR=/ distrib-dirs)
|
||||
.else
|
||||
|
@ -39,6 +43,10 @@ afterinstall:
|
|||
.ifndef NOMAN
|
||||
(cd ${.CURDIR}/share/man && ${MAKE} makedb)
|
||||
.endif
|
||||
.ifmake build
|
||||
@echo -n "Build finished at: "
|
||||
@date
|
||||
.endif
|
||||
|
||||
build: beforeinstall
|
||||
(cd ${.CURDIR}/share/mk && ${MAKE} install)
|
||||
|
|
Loading…
Reference in New Issue