Merge pull request #174 from dubek/issue_166_schemes
[jackhill/mal.git] / racket / Makefile
CommitLineData
f5223195 1SOURCES_BASE = types.rkt reader.rkt printer.rkt
90f618cb 2SOURCES_LISP = env.rkt core.rkt stepA_mal.rkt
f5223195
JM
3SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
4
5all:
6
7.PHONY: stats
8
9stats: $(SOURCES)
10 @wc $^
f15b4021 11 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*;|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"
f5223195
JM
12stats-lisp: $(SOURCES_LISP)
13 @wc $^
f15b4021 14 @printf "%5s %5s %5s %s\n" `grep -E "^[[:space:]]*;|^[[:space:]]*$$" $^ | wc` "[comments/blanks]"