From 97d857a5d06ba30c071815011939d7b7af11480c Mon Sep 17 00:00:00 2001 From: Quentin Glidic Date: Wed, 16 May 2012 16:47:15 +0200 Subject: [PATCH] commom.mk: Support V make variable (verbose build) --- common.mk | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.mk b/common.mk index 43949059..241576fc 100644 --- a/common.mk +++ b/common.mk @@ -140,8 +140,11 @@ CFLAGS += -fprofile-arcs -ftest-coverage LIBS += -lgcov endif +V ?= 0 +ifeq ($(V),0) # Don’t print command lines which are run .SILENT: +endif # Always remake the following targets .PHONY: install clean dist distclean -- 2.39.5