From: Quentin Glidic Date: Wed, 16 May 2012 14:47:15 +0000 (+0200) Subject: commom.mk: Support V make variable (verbose build) X-Git-Tag: 4.3~189 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=97d857a5d06ba30c071815011939d7b7af11480c;p=i3%2Fi3 commom.mk: Support V make variable (verbose build) --- 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