blob: 8c838d3f79aaa0d9e36ad2fcc282327cb4b3ccc0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
SOURCES_BASE = node_readline.js miniMAL-core.json \
types.json reader.json printer.json
SOURCES_LISP = env.json core.json stepA_mal.json
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
|