From d05122258f7a5e8e60b7539b31eec2e3574d42c0 Mon Sep 17 00:00:00 2001 From: Christoph Scholtes Date: Mon, 19 Oct 2020 20:22:31 -0600 Subject: [PATCH] Add MFLAGS to pass make options to Docker build. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 60290ec..37ad5d8 100644 --- a/Makefile +++ b/Makefile @@ -196,19 +196,19 @@ docker-run: docker-plugin-build-mac: mkdir -p $(PLUGIN_BUILD_DIR) - $(DOCKER_RUN) -c "$(MAKE) plugin-build-mac" + $(DOCKER_RUN) -c "$(MAKE) plugin-build-mac $(MFLAGS)" docker-plugin-build-win: mkdir -p $(PLUGIN_BUILD_DIR) - $(DOCKER_RUN) -c "$(MAKE) plugin-build-win" + $(DOCKER_RUN) -c "$(MAKE) plugin-build-win $(MFLAGS)" docker-plugin-build-lin: mkdir -p $(PLUGIN_BUILD_DIR) - $(DOCKER_RUN) -c "$(MAKE) plugin-build-lin" + $(DOCKER_RUN) -c "$(MAKE) plugin-build-lin $(MFLAGS)" docker-plugin-build: mkdir -p $(PLUGIN_BUILD_DIR) - $(DOCKER_RUN) -c "$(MAKE) plugin-build" + $(DOCKER_RUN) -c "$(MAKE) plugin-build $(MFLAGS)" .NOTPARALLEL: