From 4cdce96d43e421f714df37da03f802950bd811b1 Mon Sep 17 00:00:00 2001 From: Ben Smith Date: Sun, 20 Mar 2016 16:20:20 -0700 Subject: add option to build using ninja CMake generator --- Makefile | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3