diff options
author | Ben Smith <binji@chromium.org> | 2016-03-05 00:04:45 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2016-03-12 20:43:50 -0800 |
commit | 4caccea63e68765fbf2e179981c677e954002ac1 (patch) | |
tree | 0cc9e6319eef75a862a0962bc65a7d03777ba34f /Makefile | |
parent | c91538cd39bddcd7811b401ce2146de7c6307449 (diff) | |
download | wabt-4caccea63e68765fbf2e179981c677e954002ac1.tar.gz wabt-4caccea63e68765fbf2e179981c677e954002ac1.tar.bz2 wabt-4caccea63e68765fbf2e179981c677e954002ac1.zip |
update README, add test-everything to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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)))) |