aboutsummaryrefslogtreecommitdiff
path: root/make/Makefile
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 /make/Makefile
parenta34b02006527d28db5df5c6553be804770b81f79 (diff)
downloadmal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.tar.gz
mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.zip
Add stats-lisp target (only env, core, stepA)
Diffstat (limited to 'make/Makefile')
-rw-r--r--make/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/make/Makefile b/make/Makefile
index 2bb1e1e..52a7a7d 100644
--- a/make/Makefile
+++ b/make/Makefile
@@ -1,8 +1,9 @@
TESTS = tests/types.mk tests/reader.mk tests/step9_interop.mk
-SOURCES = util.mk readline.mk gmsl.mk types.mk reader.mk printer.mk \
- env.mk core.mk stepA_more.mk
+SOURCES_BASE = util.mk readline.mk gmsl.mk types.mk reader.mk printer.mk
+SOURCES_LISP = env.mk core.mk stepA_more.mk
+SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
mal.mk: $(SOURCES)
echo "#!/usr/bin/make -f" > $@
@@ -16,6 +17,8 @@ clean:
stats: $(SOURCES)
@wc $^
+stats-lisp: $(SOURCES_LISP)
+ @wc $^
tests: $(TESTS)