Merge pull request #14 from anton-trunov/guide-small-fix
[jackhill/mal.git] / perl / Makefile
CommitLineData
1f2651c5
JM
1TESTS =
2
3SOURCES_BASE = readline.pm types.pm reader.pm printer.pm \
4 interop.pm
90f618cb 5SOURCES_LISP = env.pm core.pm stepA_mal.pl
1f2651c5
JM
6SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
7
8#all: mal.pl
9
10.PHONY: stats tests $(TESTS)
11
12stats: $(SOURCES)
13 @wc $^
14stats-lisp: $(SOURCES_LISP)
15 @wc $^
16
17tests: $(TESTS)
18
19$(TESTS):
20 @echo "Running $@"; \
21 ruby $@ || exit 1; \