aboutsummaryrefslogtreecommitdiff
path: root/cs
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 /cs
parenta34b02006527d28db5df5c6553be804770b81f79 (diff)
downloadmal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.tar.gz
mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.zip
Add stats-lisp target (only env, core, stepA)
Diffstat (limited to 'cs')
-rw-r--r--cs/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/cs/Makefile b/cs/Makefile
index 8d05ec0..f8aefcc 100644
--- a/cs/Makefile
+++ b/cs/Makefile
@@ -4,8 +4,9 @@ DEBUG =
TESTS =
-SOURCES = readline.cs types.cs reader.cs printer.cs env.cs core.cs \
- stepA_more.cs
+SOURCES_BASE = readline.cs types.cs reader.cs printer.cs
+SOURCES_LISP = env.cs core.cs stepA_more.cs
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
OTHER_SOURCES = getline.cs
@@ -39,6 +40,8 @@ clean:
stats: $(SOURCES)
@wc $^
+stats-lisp: $(SOURCES_LISP)
+ @wc $^
tests: $(TESTS)