Added compiler for pseudo-VVhitespace -> VVhitespace.
[vvhitespace] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..5ff4f11
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,22 @@
+# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
+# All rights reserved.
+
+####################################################################################################
+# Configuration
+
+CC              = cc
+CC_FLAGS        = -Wall -std=c99
+
+####################################################################################################
+# Build
+
+all: vvc vvi
+
+vvi:
+       $(CC) $(CC_FLAGS) -o $@ vv_interpreter.c
+
+vvc:
+       $(CC) $(CC_FLAGS) -o $@ vv_compiler.c
+
+clean:
+       @rm -f vvc vvc.core vvi vvi.core