aboutsummaryrefslogtreecommitdiff
path: root/matlab/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-07 20:32:06 -0600
committerJoel Martin <github@martintribe.org>2015-02-07 20:32:24 -0600
commit9a54ea186c2c7646d014b97774adfc418e9ab9c9 (patch)
tree7fcb4abf81594a0075c5356724140e65554eefe6 /matlab/Makefile
parent882b43289ecc0c13a030605b68be52107b1c64b5 (diff)
downloadmal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.tar.gz
mal-9a54ea186c2c7646d014b97774adfc418e9ab9c9.zip
matlab: step0 and step1 basics.
Diffstat (limited to 'matlab/Makefile')
-rw-r--r--matlab/Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/matlab/Makefile b/matlab/Makefile
new file mode 100644
index 0000000..db69428
--- /dev/null
+++ b/matlab/Makefile
@@ -0,0 +1,13 @@
+SOURCES_BASE = Reader.m types/Symbol.m reader.m printer.m
+#SOURCES_LISP = env.m core.m stepA_interop.m
+SOURCES_LISP = step1_read_print.m
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
+
+
+.PHONY: stats tests $(TESTS)
+
+stats: $(SOURCES)
+ @wc $^
+
+stats-lisp: $(SOURCES_LISP)
+ @wc $^