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 /js | |
| parent | a34b02006527d28db5df5c6553be804770b81f79 (diff) | |
| download | mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.tar.gz mal-712af9efbe15a9a65c25ab92ee2a49c8e749ed3d.zip | |
Add stats-lisp target (only env, core, stepA)
Diffstat (limited to 'js')
| -rw-r--r-- | js/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/js/Makefile b/js/Makefile index 2b7aa88..36b9caa 100644 --- a/js/Makefile +++ b/js/Makefile @@ -1,8 +1,9 @@ TESTS = tests/types.js tests/reader.js tests/step5_tco.js -SOURCES = node_readline.js types.js reader.js printer.js \ - env.js core.js stepA_more.js +SOURCES_BASE = node_readline.js types.js reader.js printer.js +SOURCES_LISP = env.js core.js stepA_more.js +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) WEB_SOURCES = $(SOURCES:node_readline.js=josh_readline.js) all: mal.js mal_web.js @@ -22,6 +23,8 @@ clean: stats: $(SOURCES) @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ tests: $(TESTS) |
