aboutsummaryrefslogtreecommitdiff
path: root/bash/Makefile
diff options
context:
space:
mode:
authorJoel Martin <github@martintribe.org>2014-04-27 17:58:48 -0500
committerJoel Martin <github@martintribe.org>2014-04-27 17:58:48 -0500
commitcc021efe10380039a13da5300990639203450634 (patch)
tree02977d571ee6b42e7d5429ff8e922f183422eeb5 /bash/Makefile
parentb58698b257fb6552e053cd245d63a140d3f7a478 (diff)
downloadmal-cc021efe10380039a13da5300990639203450634.tar.gz
mal-cc021efe10380039a13da5300990639203450634.zip
Add step5/9 tests for impls that support it.
- Also remove broken make/tests/*.mk tests. Not used any more.
Diffstat (limited to 'bash/Makefile')
-rw-r--r--bash/Makefile10
1 files changed, 1 insertions, 9 deletions
diff --git a/bash/Makefile b/bash/Makefile
index d5a0867..e171f69 100644
--- a/bash/Makefile
+++ b/bash/Makefile
@@ -1,5 +1,3 @@
-TESTS = tests/types.sh tests/reader.sh
-
SOURCES_BASE = types.sh reader.sh printer.sh
SOURCES_LISP = env.sh core.sh stepA_more.sh
SOURCES = $(SOURCES_BASE) $(SOURCES_LISP)
@@ -15,15 +13,9 @@ mal.sh: $(SOURCES)
clean:
rm -f mal.sh
-.PHONY: stats tests $(TESTS)
+.PHONY: stats
stats: $(SOURCES)
@wc $^
stats-lisp: $(SOURCES_LISP)
@wc $^
-
-tests: $(TESTS)
-
-$(TESTS):
- @echo "Running $@"; \
- bash $@ || exit 1; \