Add 3 small lines which add to the utility of the "finished on date"

output in the world target.
This commit is contained in:
Jordan K. Hubbard 1996-09-18 18:14:37 +00:00
parent 46ffd5c47b
commit 6fcd2a4757
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18362

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile,v 1.99 1996/08/30 22:35:30 peter Exp $
# $Id: Makefile,v 1.100 1996/09/10 04:21:36 jfieber Exp $
#
# Make command line options:
# -DCLOBBER will remove /usr/include
@ -122,6 +122,9 @@ MK_FLAGS= -DNOMAN -DNOPROFILE
# >> Beware, it overwrites the local build environment! <<
#
world:
@echo "--------------------------------------------------------------"
@echo "make world started on `date`"
@echo "--------------------------------------------------------------"
.if target(pre-world)
@echo "--------------------------------------------------------------"
@echo " Making 'pre-world' target"
@ -509,5 +512,7 @@ build-tools:
${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR}
cd ${.CURDIR}/usr.sbin/zic && ${MAKE} depend && \
${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR}
cd ${.CURDIR}/gnu/usr.bin/groff && ${MAKE} depend && \
${MAKE} ${MK_FLAGS} all install ${CLEANDIR} ${OBJDIR}
.include <bsd.subdir.mk>