python: remove extraneous macroexpand call.
[jackhill/mal.git] / dart / Makefile
CommitLineData
eb8bc504
HT
1all:
2 @true
3
4SOURCES_BASE = types.dart reader.dart printer.dart
5SOURCES_LISP = env.dart core.dart stepA_mal.dart
6SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
7
8.PHONY: stats tests $(TESTS)
9
10stats: $(SOURCES)
11 @wc $^
12 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
13stats-lisp: $(SOURCES_LISP)
14 @wc $^
15 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*//|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
16