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 /gnu/usr.bin/binutils/c++filt | |
| 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 'gnu/usr.bin/binutils/c++filt')
| -rw-r--r-- | gnu/usr.bin/binutils/c++filt/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/usr.bin/binutils/c++filt/Makefile b/gnu/usr.bin/binutils/c++filt/Makefile index 5bfa8ad48ea..46207089501 100644 --- a/gnu/usr.bin/binutils/c++filt/Makefile +++ b/gnu/usr.bin/binutils/c++filt/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2003/10/20 01:15:03 lukem Exp $ +# $NetBSD: Makefile,v 1.14 2003/10/21 10:01:20 lukem Exp $ PROG= c++filt CPPFLAGS+= -DMAIN @@ -11,6 +11,5 @@ CLEANFILES+= c++filt.1 .PATH: ${DIST}/libiberty c++filt.1: ${DIST}/binutils/doc/cxxfilt.man - ${_MKMSGCREATE} - ${_MKCMD}\ + ${_MKTARGET_CREATE} sed -e "s/@PROGRAM@/${PROG}/" < $> > $@ |
