blob: 9e31c40b908e24ecc71f1e0c1fa911a5f2c8d235 (
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_interop.json
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
|