build: let 'make V=1' be equivalent to 'make Q='

The V= syntax is more familiar from other build systems, so allow both.

Change-Id: I024cf4a338c2fe10bef482311a1703bf5fb2a38e
Signed-off-by: Daniel Verkamp <daniel.verkamp@intel.com>
This commit is contained in:
Daniel Verkamp 2016-07-19 10:48:24 -07:00
parent 336ba0d09c
commit 07697ff1d2

View File

@ -34,7 +34,9 @@
include $(SPDK_ROOT_DIR)/CONFIG
C_OPT ?= -fno-omit-frame-pointer
ifneq ($(V),1)
Q ?= @
endif
S ?= $(notdir $(CURDIR))
ifeq ($(MAKECMDGOALS),)