diff options
| author | Joel Martin <github@martintribe.org> | 2014-04-23 22:42:36 -0500 |
|---|---|---|
| committer | Joel Martin <github@martintribe.org> | 2014-04-23 22:42:36 -0500 |
| commit | 1f2651c54ee30039b6a1289a63e44d538ecf6d6a (patch) | |
| tree | b0164f0e644ba82b76ff59fcabea81152f08e556 /perl/Makefile | |
| parent | e6a1697802135bf29a1ed50074d9244653235e4b (diff) | |
| download | mal-1f2651c54ee30039b6a1289a63e44d538ecf6d6a.tar.gz mal-1f2651c54ee30039b6a1289a63e44d538ecf6d6a.zip | |
Perl: add Makefile and time-ms for perf tests.
Diffstat (limited to 'perl/Makefile')
| -rw-r--r-- | perl/Makefile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/perl/Makefile b/perl/Makefile new file mode 100644 index 0000000..772bba7 --- /dev/null +++ b/perl/Makefile @@ -0,0 +1,21 @@ +TESTS = + +SOURCES_BASE = readline.pm types.pm reader.pm printer.pm \ + interop.pm +SOURCES_LISP = env.pm core.pm stepA_more.pl +SOURCES = $(SOURCES_BASE) $(SOURCES_LISP) + +#all: mal.pl + +.PHONY: stats tests $(TESTS) + +stats: $(SOURCES) + @wc $^ +stats-lisp: $(SOURCES_LISP) + @wc $^ + +tests: $(TESTS) + +$(TESTS): + @echo "Running $@"; \ + ruby $@ || exit 1; \ |
