aboutsummaryrefslogtreecommitdiff
path: root/clojure
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-04-10 19:27:42 -0500
committerJoel Martin <github@martintribe.org>2014-04-10 19:27:42 -0500
commit712af9efbe15a9a65c25ab92ee2a49c8e749ed3d (patch)
tree52cac897ae1834cf812ff41b602885142e7a0b5a /clojure
parenta34b02006527d28db5df5c6553be804770b81f79 (diff)
downloadmal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.tar.gz
mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.zip
Add stats-lisp target (only env, core, stepA)
Diffstat (limited to 'clojure')
-rw-r--r--clojure/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/clojure/Makefile b/clojure/Makefile
index 4bc289e..376d107 100644
--- a/clojure/Makefile
+++ b/clojure/Makefile
@@ -1,8 +1,9 @@
TESTS =
-SOURCES = src/readline.clj src/reader.clj src/printer.clj \
- src/env.clj src/core.clj src/stepA_more.clj
+SOURCES_BASE = src/readline.clj src/reader.clj src/printer.clj
+SOURCES_LISP = src/env.clj src/core.clj src/stepA_more.clj
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
all:
@@ -10,6 +11,8 @@ all:
stats: $(SOURCES)
@wc $^
+stats-lisp: $(SOURCES_LISP)
+ @wc $^
tests: $(TESTS)