summaryrefslogtreecommitdiffstats
path: root/adventure/Makefile
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1994-10-21 20:51:44 +0000
committerjtc <jtc@NetBSD.org>1994-10-21 20:51:44 +0000
commita861bdee374ea33fbbe20e45cd8d3f644374c835 (patch)
tree20f77e0423e6294672f4d175bc7a787ca87ddebf /adventure/Makefile
parentfb73c52b499ea55b081fc042440f4524842c68b6 (diff)
downloadbsdgames-darwin-a861bdee374ea33fbbe20e45cd8d3f644374c835.tar.gz
bsdgames-darwin-a861bdee374ea33fbbe20e45cd8d3f644374c835.tar.zst
bsdgames-darwin-a861bdee374ea33fbbe20e45cd8d3f644374c835.zip
adventure(6), from 44lite
Diffstat (limited to 'adventure/Makefile')
-rw-r--r--adventure/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/adventure/Makefile b/adventure/Makefile
new file mode 100644
index 00000000..834502a8
--- /dev/null
+++ b/adventure/Makefile
@@ -0,0 +1,16 @@
+# @(#)Makefile 8.1 (Berkeley) 6/12/93
+
+PROG= adventure
+SRCS= main.c init.c done.c save.c subr.c vocab.c wizard.c io.c data.c crc.c
+MAN6= adventure.0
+CFLAGS+=-traditional-cpp
+HIDEGAME=hidegame
+CLEANFILES+=setup data.c
+
+data.c: glorkz setup
+ ./setup ${.CURDIR}/glorkz > data.c
+
+setup: setup.c hdr.h
+ ${CC} -o setup ${.CURDIR}/setup.c
+
+.include <bsd.prog.mk>