summaryrefslogtreecommitdiffstats
path: root/adventure
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2003-10-19 01:01:44 +0000
committerlukem <lukem@NetBSD.org>2003-10-19 01:01:44 +0000
commit95e5fff2a7e41ff5df14257ae6e7a7693b43d360 (patch)
tree326e0721ec62652c93eddf2109206025a2f89007 /adventure
parent2c9d660d25b79e9638f82eac75697f7a0e85a085 (diff)
downloadbsdgames-darwin-95e5fff2a7e41ff5df14257ae6e7a7693b43d360.tar.gz
bsdgames-darwin-95e5fff2a7e41ff5df14257ae6e7a7693b43d360.tar.zst
bsdgames-darwin-95e5fff2a7e41ff5df14257ae6e7a7693b43d360.zip
Support MAKEVERBOSE. (Some host tools still generate verbose runtime messages)
Diffstat (limited to 'adventure')
-rw-r--r--adventure/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/adventure/Makefile b/adventure/Makefile
index adc23f3a..5f144466 100644
--- a/adventure/Makefile
+++ b/adventure/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.9 2002/03/05 21:28:12 thorpej Exp $
+# $NetBSD: Makefile,v 1.10 2003/10/19 01:01:44 lukem Exp $
# @(#)Makefile 8.1 (Berkeley) 6/12/93
PROG= adventure
@@ -8,9 +8,13 @@ HIDEGAME=hidegame
CLEANFILES+=setup data.c
data.c: glorkz setup
+ ${_MKMSG} " create ${.TARGET}"
+ ${_MKCMD}\
./setup ${.CURDIR}/glorkz > data.c
setup: setup.c hdr.h
+ ${_MKMSG} "compile ${.TARGET}"
+ ${_MKCMD}\
${HOST_LINK.c} -o setup ${.CURDIR}/setup.c
.include <bsd.prog.mk>