From 270e366eb9ec9f41c16fa81bf1c43d41051c46e6 Mon Sep 17 00:00:00 2001 From: Florian Schmaus <flo@geekplace.eu> Date: Tue, 21 Mar 2017 19:31:35 +0100 Subject: [PATCH] Add MAKEFLAGS to COMMON_MARK_ARGS to allow for e.g. "make VERBOSE=1" --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d5e8c12d..2f4966f7 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ .PHONY: all clean dependencies distclean doc full release relwithdebug reldebug debug stresstest test NPROC := $(shell nproc) -COMMON_MAKE_ARGS := -j $(NPROC) -l $(NPROC) +COMMON_MAKE_ARGS := -j $(NPROC) -l $(NPROC) $(MAKEFLAGS) all: release -- GitLab