summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBen Smith <binji@chromium.org>2016-03-20 16:20:20 -0700
committerBen Smith <binji@chromium.org>2016-03-20 16:20:20 -0700
commit4cdce96d43e421f714df37da03f802950bd811b1 (patch)
tree1b9bed6d4759a42c3a140e7ad92243bb12299108 /Makefile
parent5f2975e30510a210db0c39a76089e9671d153087 (diff)
downloadwabt-4cdce96d43e421f714df37da03f802950bd811b1.tar.gz
wabt-4cdce96d43e421f714df37da03f802950bd811b1.tar.bz2
wabt-4cdce96d43e421f714df37da03f802950bd811b1.zip
add option to build using ninja CMake generator
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 18 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index eb3329e0..f32050ad 100644
--- a/Makefile
+++ b/Makefile
@@ -16,6 +16,8 @@
.SUFFIXES:
+USE_NINJA ?= 0
+
DEFAULT_COMPILER = CLANG
DEFAULT_BUILD_TYPE = DEBUG
@@ -52,6 +54,16 @@ ASAN_SUFFIX := -asan
MSAN_SUFFIX := -msan
LSAN_SUFFIX := -lsan
+ifeq ($(USE_NINJA),1)
+BUILD := ninja
+BUILD_FILE := build.ninja
+GENERATOR := Ninja
+else
+BUILD := $(MAKE) --no-print-directory
+BUILD_FILE := Makefile
+GENERATOR := "Unix Makefiles"
+endif
+
define DEFAULT
.PHONY: $(3)$$($(4)_SUFFIX) test$$($(4)_SUFFIX)
$(3)$$($(4)_SUFFIX): $$($(1)_$(2)_PREFIX)$$($(4)_SUFFIX)
@@ -66,20 +78,20 @@ define CMAKE
$$($(1)_$(2)_DIR)/:
mkdir -p $$($(1)_$(2)_DIR)
-$$($(1)_$(2)_DIR)/Makefile: | $$($(1)_$(2)_DIR)/
- cd $$($(1)_$(2)_DIR) && cmake ../../.. $$($(1)_FLAG) $$($(2)_FLAG) $(3)
+$$($(1)_$(2)_DIR)/$$(BUILD_FILE): | $$($(1)_$(2)_DIR)/
+ cd $$($(1)_$(2)_DIR) && cmake -G $$(GENERATOR) ../../.. $$($(1)_FLAG) $$($(2)_FLAG) $(3)
endef
define EXE
.PHONY: $$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX)
-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/Makefile
- $$(MAKE) --no-print-directory -C $$($(1)_$(2)_DIR) all$$($(3)_SUFFIX)
+$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/$$(BUILD_FILE)
+ $$(BUILD) -C $$($(1)_$(2)_DIR) all$$($(3)_SUFFIX)
endef
define TEST
.PHONY: test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX)
-test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/Makefile
- $$(MAKE) --no-print-directory -C $$($(1)_$(2)_DIR) test$$($(3)_SUFFIX)
+test-$$($(1)_$(2)_PREFIX)$$($(3)_SUFFIX): $$($(1)_$(2)_DIR)/$$(BUILD_FILE)
+ $$(BUILD) -C $$($(1)_$(2)_DIR) test$$($(3)_SUFFIX)
endef
.PHONY: all