aboutsummaryrefslogtreecommitdiff
path: root/miniMAL/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-16 00:01:10 -0600
committerJoel Martin <github@martintribe.org>2015-02-16 00:01:10 -0600
commitd90c784472f6131f28612eb6eaa02404e002178d (patch)
tree81bea60b366d3168bc58a7976918b8d436e895fa /miniMAL/Makefile
parent2774a151313c2b6bef052f5f8906b912c7f60bf8 (diff)
downloadmal-d90c784472f6131f28612eb6eaa02404e002178d.tar.gz
mal-d90c784472f6131f28612eb6eaa02404e002178d.zip
miniMAL: stepA. Comments. Add impl Makefile for stats.
Diffstat (limited to 'miniMAL/Makefile')
-rw-r--r--miniMAL/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/miniMAL/Makefile b/miniMAL/Makefile
new file mode 100644
index 0000000..9e31c40
--- /dev/null
+++ b/miniMAL/Makefile
@@ -0,0 +1,12 @@
+
+SOURCES_BASE = node_readline.js miniMAL-core.json \
+ types.json reader.json printer.json
+SOURCES_LISP = env.json core.json stepA_interop.json
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
+
+.PHONY: stats tests $(TESTS)
+
+stats: $(SOURCES)
+ @wc $^
+stats-lisp: $(SOURCES_LISP)
+ @wc $^