summaryrefslogtreecommitdiffstats
path: root/adventure/Makefile
diff options
context:
space:
mode:
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>