Initial commit for Hunt the Wumpus - Adding some text strings from the original.
[vvhitespace] / examples / wump / Makefile
diff --git a/examples/wump/Makefile b/examples/wump/Makefile
new file mode 100644 (file)
index 0000000..079f0a3
--- /dev/null
@@ -0,0 +1,17 @@
+# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
+# All rights reserved.
+
+include ../config.mk
+
+all: wump
+
+wump:
+       $(CPP) $(CPP_FLAGS) -o temp.pvvs wump_strings.pvvs
+       $(VVS_COMPILER) -i temp.pvvs -o wump.vvs
+       @rm -f temp.pvvs
+
+run: wump
+       $(VVS_INTERPRETER) -i wump.vvs
+
+clean:
+       @rm -f wump.vvs temp.pvvs