summaryrefslogtreecommitdiffstats
path: root/monop/Makefile
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
commit47fe34534d39c17510dd5a46864a7a2d60fdbae1 (patch)
tree8a5bbeb085c6c5138d2ce4d49c050f25e62b9f91 /monop/Makefile
parentd4e4a71f81eb9c3ce5f272f40ec57feed1ff39d1 (diff)
downloadbsdgames-darwin-47fe34534d39c17510dd5a46864a7a2d60fdbae1.tar.gz
bsdgames-darwin-47fe34534d39c17510dd5a46864a7a2d60fdbae1.tar.zst
bsdgames-darwin-47fe34534d39c17510dd5a46864a7a2d60fdbae1.zip
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 'monop/Makefile')
-rw-r--r--monop/Makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/monop/Makefile b/monop/Makefile
index 77dd527b..8197de30 100644
--- a/monop/Makefile
+++ b/monop/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.25 2003/10/19 04:45:01 lukem Exp $
+# $NetBSD: Makefile,v 1.26 2003/10/21 10:01:19 lukem Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
.include <bsd.own.mk>
@@ -17,13 +17,11 @@ FILESDIR=/usr/share/games
realall: ${FILES}
initdeck: initdeck.c
- ${_MKMSGLINK}
- ${_MKCMD}\
+ ${_MKTARGET_LINK}
${HOST_LINK.c} -o initdeck ${.CURDIR}/initdeck.c
cards.pck: initdeck
- ${_MKMSGCREATE}
- ${_MKCMD}\
+ ${_MKTARGET_CREATE}
./initdeck ${.CURDIR}/cards.inp
.include <bsd.prog.mk>