diff options
Diffstat (limited to 'clojure')
| -rw-r--r-- | clojure/Makefile | 7 |
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) |
