aboutsummaryrefslogtreecommitdiff
path: root/matlab/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2015-02-10 01:51:28 -0600
committerJoel Martin <github@martintribe.org>2015-02-10 01:51:28 -0600
commit0b234e13a114a9f7eb6e44c1febf11158907f0a5 (patch)
tree0ee56d5e99a54ad5e987fc1a27465192b4cb042d /matlab/Makefile
parent53942f889aa103e5ea298b92b7a4fc7d7a133d1a (diff)
downloadmal-0b234e13a114a9f7eb6e44c1febf11158907f0a5.tar.gz
mal-0b234e13a114a9f7eb6e44c1febf11158907f0a5.zip
matlab: fix do/slice, strings. Self-hosting!
Fix Makefile stats/stats-lisp.
Diffstat (limited to 'matlab/Makefile')
-rw-r--r--matlab/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/matlab/Makefile b/matlab/Makefile
index 445512a..a603822 100644
--- a/matlab/Makefile
+++ b/matlab/Makefile
@@ -1,6 +1,8 @@
-SOURCES_BASE = Reader.m types/Symbol.m reader.m printer.m
-#SOURCES_LISP = env.m core.m stepA_interop.m
-SOURCES_LISP = stepA_interop.m
+SOURCES_BASE = types.m types/Nil.m types/MalException.m \
+ types/Symbol.m types/List.m types/Vector.m \
+ types/HashMap.m types/Function.m types/Atom.m \
+ Reader.m reader.m printer.m
+SOURCES_LISP = Env.m core.m stepA_interop.m
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)