From 415c92a08a32e0deb8facccba3db197c89be56fd Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Sat, 12 Jan 2019 15:41:02 +0100 Subject: [PATCH] squash! Makefile: run CMake with CMAKE_ARGS defined Only if specified on command line. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 1b9b232d..cc1476d4 100644 --- a/Makefile +++ b/Makefile @@ -14,8 +14,8 @@ cmake-build: $(BUILDDIR)/Makefile $(ECHO) "Building…" $(MAKE) -C $(BUILDDIR) -# Run CMake always with CMAKE_ARGS defined. -ifdef CMAKE_ARGS +# Run CMake with CMAKE_ARGS defined on command line ("make CMAKE_ARGS=…"). +ifeq ($(origin CMAKE_ARGS),command line) .PHONY: $(BUILDDIR)/Makefile endif