vb: add seq and string?
[jackhill/mal.git] / forth / Makefile
1 SOURCES_BASE = types.fs str.fs reader.fs printer.fs
2 SOURCES_LISP = env.fs core.fs stepA_mal.fs
3 SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
4
5 all:
6
7 .PHONY: stats tests $(TESTS)
8
9 stats: $(SOURCES)
10 @wc $^
11 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*[\\]|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
12 stats-lisp: $(SOURCES_LISP)
13 @wc $^
14 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*[\\]|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"