diff options
| author | lukem <lukem@NetBSD.org> | 2003-10-21 10:01:19 +0000 |
|---|---|---|
| committer | lukem <lukem@NetBSD.org> | 2003-10-21 10:01:19 +0000 |
| commit | 130ab7336bea0fe7c219d37974bfa8396d9f7dc7 (patch) | |
| tree | 573f7f3868259a4b9dfd74c58c6f0f03d26a278e /usr.bin/vgrind | |
| parent | 73704c4ce4ee2a60eb617e693ce7e9f03902613e (diff) | |
Rework how MAKEVERBOSE operates:
* Don't bother prefixing commands with a line of ${_MKCMD}\
and instead rely upon "make -s". This is less intrusive on
all the Makefiles than the former. Idea from David Laight.
* Rename the variables use to print messages. The scheme now is:
_MKMSG_FOO Run _MKMSG 'foo'
_MKTARGET_FOO Run _MKMSG_FOO ${.TARGET}
From discussion with Alistair Crooks.
Diffstat (limited to 'usr.bin/vgrind')
| -rw-r--r-- | usr.bin/vgrind/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/vgrind/Makefile b/usr.bin/vgrind/Makefile index be0d58dfd4b..01edbfa5f02 100644 --- a/usr.bin/vgrind/Makefile +++ b/usr.bin/vgrind/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2003/10/19 04:30:30 lukem Exp $ +# $NetBSD: Makefile,v 1.19 2003/10/21 10:01:22 lukem Exp $ # @(#)Makefile 8.1 (Berkeley) 6/9/93 .include <bsd.own.mk> @@ -34,8 +34,7 @@ CAP_MKDB_ENDIAN= .if ${MKSHARE} != "no" vgrindefs.src.db: vgrindefs.src - ${_MKMSGCREATE} - ${_MKCMD}\ + ${_MKTARGET_CREATE} ${TOOL_CAP_MKDB} ${CAP_MKDB_ENDIAN} -f vgrindefs.src \ ${.CURDIR}/vgrindefs.src .else |
