blob: db694282f697fc7f58ec20242796e74e03829f3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SOURCES_BASE = Reader.m types/Symbol.m reader.m printer.m
#SOURCES_LISP = env.m core.m stepA_interop.m
SOURCES_LISP = step1_read_print.m
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
.PHONY: stats tests $(TESTS)
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
|