aboutsummaryrefslogtreecommitdiff
path: root/matlab/Makefile
blob: eba8fa4355bb551e67cd5ac322fd13c7c0935839 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 \
	       types/Reader.m reader.m printer.m
SOURCES_LISP = Env.m core.m stepA_mal.m
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)


.PHONY: stats tests $(TESTS)

stats: $(SOURCES)
	@wc $^

stats-lisp: $(SOURCES_LISP)
	@wc $^