blob: a603822c782b6e19ba03d3a56933a5b70527a3f0 (
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 \
Reader.m reader.m printer.m
SOURCES_LISP = Env.m core.m stepA_interop.m
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
|