summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-05 00:04:45 -0800
committerBen Smith <binji@chromium.org>2016-03-12 20:43:50 -0800
commit4caccea63e68765fbf2e179981c677e954002ac1 (patch)
tree0cc9e6319eef75a862a0962bc65a7d03777ba34f /Makefile
parentc91538cd39bddcd7811b401ce2146de7c6307449 (diff)
downloadwabt-4caccea63e68765fbf2e179981c677e954002ac1.tar.gz
wabt-4caccea63e68765fbf2e179981c677e954002ac1.tar.bz2
wabt-4caccea63e68765fbf2e179981c677e954002ac1.zip
update README, add test-everything to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 011e86e3..0bf3910f 100644
--- a/Makefile
+++ b/Makefile
@@ -47,7 +47,10 @@ define DEFAULT
.PHONY: $(3)$$($(4)_SUFFIX) test$$($(4)_SUFFIX)
$(3)$$($(4)_SUFFIX): $$($(1)_$(2)_PREFIX)-$(3)$$($(4)_SUFFIX)
ln -sf ../$$($(1)_$(2)_DIR)/$(3)$$($(4)_SUFFIX) out/$(3)$$($(4)_SUFFIX)
+
test$$($(4)_SUFFIX): test-$$($(1)_$(2)_PREFIX)$$($(4)_SUFFIX)
+
+test-everything: test$$($(4)_SUFFIX)
endef
define CMAKE
@@ -73,6 +76,9 @@ endef
.PHONY: all
all: sexpr-wasm
+.PHONY: test-everything
+test-everything:
+
# defaults with simple names
$(foreach SANITIZER,$(SANITIZERS), \
$(eval $(call DEFAULT,$(DEFAULT_COMPILER),$(DEFAULT_BUILD_TYPE),sexpr-wasm,$(SANITIZER))))