Module Name: src
Committed By: mrg
Date: Thu Oct 29 00:18:55 UTC 2015
Modified Files:
src/sys/lib/libkern: Makefile.inc
Log Message:
remove "@echo done" from 4 rules that don't need it and the random "done"
in my build logs don't help understanding.
To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 src/sys/lib/libkern/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/lib/libkern/Makefile.inc
diff -u src/sys/lib/libkern/Makefile.inc:1.43 src/sys/lib/libkern/Makefile.inc:1.44
--- src/sys/lib/libkern/Makefile.inc:1.43 Sun Sep 6 15:34:55 2015
+++ src/sys/lib/libkern/Makefile.inc Thu Oct 29 00:18:55 2015
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.43 2015/09/06 15:34:55 uebayasi Exp $
+# $NetBSD: Makefile.inc,v 1.44 2015/10/29 00:18:55 mrg Exp $
#
# Configuration variables (default values are below):
#
@@ -58,7 +58,6 @@ ${KERNLIB}: .NOTMAIN .MAKE __always_mak
.else
@${KERNMAKE} libkern.o
.endif
- @echo done
${KERNLIB_PROF}: .NOTMAIN .MAKE __always_make_kernlib
@echo making sure the profiled kern library is up to date...
@@ -67,30 +66,25 @@ ${KERNLIB_PROF}: .NOTMAIN .MAKE __always
.else
@${KERNMAKE} libkern.po
.endif
- @echo done
${KERNLIBLN}: .NOTMAIN .MAKE __always_make_kernlib
@echo making sure the kern lint library is up to date...
@${KERNMAKE} ${LIBKERNLNBN}
- @echo done
clean: .NOTMAIN cleankernlib
cleankernlib: .NOTMAIN
@echo cleaning the kern library objects
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} clean; fi
- @echo done
cleandir distclean: .NOTMAIN cleandirkernlib
cleandirkernlib: .NOTMAIN
@echo cleandiring the kern library objects
@if [ -d "${KERNDST}" ]; then ${KERNMAKE} cleandir; fi
- @echo done
dependall depend: .NOTMAIN dependkernlib
dependkernlib: .NOTMAIN .MAKE __always_make_kernlib
@echo depending the kern library objects
@${KERNMAKE} depend
- @echo done
__always_make_kernlib: .NOTMAIN
@(mkdir -p ${KERNDST})