Commit 5808ed85 authored by davidcunado-arm's avatar davidcunado-arm Committed by GitHub
Browse files

Merge pull request #980 from dp-arm/dp/make-fix

tools: Use exported quiet flag from top-level Makefile
parents 500c0eda a9673900
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
PROJECT := cert_create PROJECT := cert_create
PLAT := none PLAT := none
V := 0 V ?= 0
DEBUG := 0 DEBUG := 0
BINARY := ${PROJECT}${BIN_EXT} BINARY := ${PROJECT}${BIN_EXT}
OPENSSL_DIR := /usr OPENSSL_DIR := /usr
...@@ -50,9 +50,9 @@ else ...@@ -50,9 +50,9 @@ else
CFLAGS += -O2 -DLOG_LEVEL=20 CFLAGS += -O2 -DLOG_LEVEL=20
endif endif
ifeq (${V},0) ifeq (${V},0)
Q := @ Q := @
else else
Q := Q :=
endif endif
$(eval $(call add_define,USE_TBBR_DEFS)) $(eval $(call add_define,USE_TBBR_DEFS))
......
...@@ -10,7 +10,7 @@ include ${MAKE_HELPERS_DIRECTORY}build_env.mk ...@@ -10,7 +10,7 @@ include ${MAKE_HELPERS_DIRECTORY}build_env.mk
PROJECT := fiptool${BIN_EXT} PROJECT := fiptool${BIN_EXT}
OBJECTS := fiptool.o tbbr_config.o OBJECTS := fiptool.o tbbr_config.o
V := 0 V ?= 0
override CPPFLAGS += -D_GNU_SOURCE -D_XOPEN_SOURCE=700 override CPPFLAGS += -D_GNU_SOURCE -D_XOPEN_SOURCE=700
CFLAGS := -Wall -Werror -pedantic -std=c99 CFLAGS := -Wall -Werror -pedantic -std=c99
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment