diff options
| author | Joel Martin <github@martintribe.org> | 2015-02-16 00:01:10 -0600 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2015-02-16 00:01:10 -0600 |
| commit | d90c784472f6131f28612eb6eaa02404e002178d (patch) | |
| tree | 81bea60b366d3168bc58a7976918b8d436e895fa /miniMAL/Makefile | |
| parent | 2774a151313c2b6bef052f5f8906b912c7f60bf8 (diff) | |
| download | mal-d90c784472f6131f28612eb6eaa02404e002178d.tar.gz mal-d90c784472f6131f28612eb6eaa02404e002178d.zip | |
miniMAL: stepA. Comments. Add impl Makefile for stats.
Diffstat (limited to 'miniMAL/Makefile')
| -rw-r--r-- | miniMAL/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/miniMAL/Makefile b/miniMAL/Makefile new file mode 100644 index 0000000..9e31c40 --- /dev/null +++ b/miniMAL/Makefile @@ -0,0 +1,12 @@ + +SOURCES_BASE = node_readline.js miniMAL-core.json \ + types.json reader.json printer.json +SOURCES_LISP = env.json core.json stepA_interop.json +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) + +.PHONY: stats tests $(TESTS) + +stats: $(SOURCES) + @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ |
