From 712af9efbe15a9a65c25ab92ee2a49c8e749ed3d Mon Sep 17 00:00:00 2001 From: Joel Martin Date: Thu, 10 Apr 2014 19:27:42 -0500 Subject: Add stats-lisp target (only env, core, stepA) --- clojure/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'clojure') 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) -- cgit v1.2.3