aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-25 22:24:34 -0600
committerJoel Martin <github@martintribe.org>2015-02-25 22:24:34 -0600
commitbf8237d5ee3f1cbb3a3a7eb9d5094720361c46bf (patch)
treea560864464aa6062126adecb6bbc1c82f0a32395
parent8cfab77665957e8b26935e2b1690f65585273a09 (diff)
downloadmal-bf8237d5ee3f1cbb3a3a7eb9d5094720361c46bf.tar.gz
mal-bf8237d5ee3f1cbb3a3a7eb9d5094720361c46bf.zip
forth: add Makefile for stats.
-rw-r--r--forth/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/forth/Makefile b/forth/Makefile
new file mode 100644
index 0000000..400b463
--- /dev/null
+++ b/forth/Makefile
@@ -0,0 +1,10 @@
+SOURCES_BASE = types.fs str.fs reader.fs printer.fs
+SOURCES_LISP = env.fs core.fs stepA_interop.fs
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
+
+.PHONY: stats tests $(TESTS)
+
+stats: $(SOURCES)
+ @wc $^
+stats-lisp: $(SOURCES_LISP)
+ @wc $^