All: rename stepA_interop to stepA_mal
[jackhill/mal.git] / mal / Makefile
1
2 TESTS =
3
4 SOURCES_BASE =
5 SOURCES_LISP = env.mal core.mal stepA_mal.mal
6 SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
7
8 #.PHONY: stats tests $(TESTS)
9 .PHONY: stats
10
11 stats: $(SOURCES)
12 @wc $^
13 stats-lisp: $(SOURCES_LISP)
14 @wc $^
15
16 #tests: $(TESTS)
17 #
18 #$(TESTS):
19 # @echo "Running $@"; \
20 # python $@ || exit 1; \