diff options
| author | Joel Martin <github@martintribe.org> | 2014-04-10 19:27:42 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2014-04-10 19:27:42 -0500 |
| commit | 712af9efbe15a9a65c25ab92ee2a49c8e749ed3d (patch) | |
| tree | 52cac897ae1834cf812ff41b602885142e7a0b5a /bash/Makefile | |
| parent | a34b02006527d28db5df5c6553be804770b81f79 (diff) | |
| download | mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.tar.gz mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.zip | |
Add stats-lisp target (only env, core, stepA)
Diffstat (limited to 'bash/Makefile')
| -rw-r--r-- | bash/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bash/Makefile b/bash/Makefile index 65694ee..d5a0867 100644 --- a/bash/Makefile +++ b/bash/Makefile @@ -1,6 +1,8 @@ TESTS = tests/types.sh tests/reader.sh -SOURCES = types.sh reader.sh printer.sh env.sh core.sh stepA_more.sh +SOURCES_BASE = types.sh reader.sh printer.sh +SOURCES_LISP = env.sh core.sh stepA_more.sh +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) all: mal.sh @@ -17,6 +19,8 @@ clean: stats: $(SOURCES) @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ tests: $(TESTS) |
