From: Markham Date: Sat, 24 Mar 2018 17:05:03 +0000 (+0100) Subject: add Verbose; Use 'make V=1' to see the full commands X-Git-Url: https://git.webhop.me/?a=commitdiff_plain;h=c3256b37812a495c32affa636d74e822ca313ab7;p=bs-cst-neutrino-hd.git add Verbose; Use 'make V=1' to see the full commands --- diff --git a/make/environment.mk b/make/environment.mk index d367b41..effdb49 100755 --- a/make/environment.mk +++ b/make/environment.mk @@ -33,6 +33,13 @@ GCC = $(shell gcc -dumpversion | cut -c 1-3) # default platform... MAKEFLAGS = --no-print-directory + +# To put more focus on warnings, be less verbose as default +# Use 'make V=1' to see the full commands +ifeq ("$(origin V)", "command line") +VERBOSE = $(V) +endif + # If VERBOSE equals 0 then the above command will be hidden. # If VERBOSE equals 1 then the above command is displayed. ifeq ($(VERBOSE),1)