blob: 29bf79922dbd32ba7d805b2728518f5ea5d135a4 (
plain)
1
2
3
4
5
6
7
8
9
10
|
SOURCES_BASE = types.fs str.fs reader.fs printer.fs
SOURCES_LISP = env.fs core.fs stepA_mal.fs
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
|