summaryrefslogtreecommitdiff
path: root/gnu/libexec
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2003-10-21 10:01:19 +0000
committerlukem <lukem@NetBSD.org>2003-10-21 10:01:19 +0000
commit130ab7336bea0fe7c219d37974bfa8396d9f7dc7 (patch)
tree573f7f3868259a4b9dfd74c58c6f0f03d26a278e /gnu/libexec
parent73704c4ce4ee2a60eb617e693ce7e9f03902613e (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 'gnu/libexec')
-rw-r--r--gnu/libexec/uucp/uusched/Makefile5
-rw-r--r--gnu/libexec/uucp/uuto/Makefile5
2 files changed, 4 insertions, 6 deletions
diff --git a/gnu/libexec/uucp/uusched/Makefile b/gnu/libexec/uucp/uusched/Makefile
index 8936af9a000..47295d5eb36 100644
--- a/gnu/libexec/uucp/uusched/Makefile
+++ b/gnu/libexec/uucp/uusched/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2003/10/20 00:40:53 lukem Exp $
+# $NetBSD: Makefile,v 1.11 2003/10/21 10:01:20 lukem Exp $
# Makefile for uusched
BINDIR= $(bindir)
@@ -8,8 +8,7 @@ CLEANFILES= uusched
realall: ${CLEANFILES}
uusched: uusched.in
- ${_MKMSGCREATE}
- ${_MKCMD}\
+ ${_MKTARGET_CREATE}
sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \
$(.CURDIR)/uusched.in > $(.TARGET)
diff --git a/gnu/libexec/uucp/uuto/Makefile b/gnu/libexec/uucp/uuto/Makefile
index f2bffe74f96..891d90f443c 100644
--- a/gnu/libexec/uucp/uuto/Makefile
+++ b/gnu/libexec/uucp/uuto/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2003/10/20 00:40:53 lukem Exp $
+# $NetBSD: Makefile,v 1.11 2003/10/21 10:01:20 lukem Exp $
# Makefile for uuto
BINDIR= $(bindir)
@@ -8,8 +8,7 @@ CLEANFILES= uuto
realall: ${CLEANFILES}
uuto: uuto.in
- ${_MKMSGCREATE}
- ${_MKCMD}\
+ ${_MKTARGET_CREATE}
sed -e "s|@BINDIR@|$(bindir)|g" -e "s|@SBINDIR@|$(sbindir)|g" \
$(.CURDIR)/uuto.in > $(.TARGET)