summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-21 11:16:45 -0700
committerBen Smith <binji@chromium.org>2016-03-21 12:40:32 -0700
commitc95ef67dfe5c24b000f4f24752b81c5169743223 (patch)
tree1eb8b9dd77ef32ea21e2a1ab40c49052eae84ed7 /Makefile
parent02634375f056e8cae5176bc6ebb9bf4e160fe936 (diff)
downloadwabt-c95ef67dfe5c24b000f4f24752b81c5169743223.tar.gz
wabt-c95ef67dfe5c24b000f4f24752b81c5169743223.tar.bz2
wabt-c95ef67dfe5c24b000f4f24752b81c5169743223.zip
Add options to build without GTest submodule
This is used by the Wasm waterfall. Also, rename the CMake "test" target to "run-tests", to avoid the nasty warning.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f32050ad..d07bc4a8 100644
--- a/Makefile
+++ b/Makefile
@@ -33,6 +33,7 @@ GCC_I686_DEBUG_DIR := out/gcc-i686/Debug
GCC_I686_RELEASE_DIR := out/gcc-i686/Release
CLANG_DEBUG_DIR := out/clang/Debug
CLANG_RELEASE_DIR := out/clang/Release
+CLANG_DEBUG_NO_TESTS_DIR := out/clang/Debug-no-tests
DEBUG_FLAG := -DCMAKE_BUILD_TYPE=Debug
RELEASE_FLAG := -DCMAKE_BUILD_TYPE=Release
@@ -48,6 +49,7 @@ GCC_I686_DEBUG_PREFIX := gcc-i686-debug
GCC_I686_RELEASE_PREFIX := gcc-i686-release
CLANG_DEBUG_PREFIX := clang-debug
CLANG_RELEASE_PREFIX := clang-release
+CLANG_DEBUG_NO_TESTS_PREFIX := clang-debug-no-tests
NO_SUFFIX :=
ASAN_SUFFIX := -asan
@@ -91,7 +93,7 @@ endef
define TEST
.PHONY: test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX)
test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/$$(BUILD_FILE)
- $$(BUILD) -C $$($(1)_$(2)_DIR) test$$($(3)_SUFFIX)
+ $$(BUILD) -C $$($(1)_$(2)_DIR) run-tests$$($(3)_SUFFIX)
endef
.PHONY: all
@@ -140,3 +142,8 @@ $(foreach SANITIZER,$(SANITIZERS), \
$(eval $(call CMAKE,GCC,DEBUG_NO_FLEX_BISON,-DRUN_FLEX_BISON=OFF))
$(eval $(call EXE,GCC,DEBUG_NO_FLEX_BISON,NO))
$(eval $(call TEST,GCC,DEBUG_NO_FLEX_BISON,NO))
+
+# One-off build target for running w/out gtest
+$(eval $(call CMAKE,CLANG,DEBUG_NO_TESTS,-DBUILD_TESTS=OFF))
+$(eval $(call EXE,CLANG,DEBUG_NO_TESTS,NO))
+$(eval $(call TEST,CLANG,DEBUG_NO_TESTS,NO))