Vadim Bendebury has uploaded this change for review. ( https://review.coreboot.org/29431
Change subject: util/cbsftool: allow enabling verbose make output ......................................................................
util/cbsftool: allow enabling verbose make output
Sometimes it is necessary to be able to see exact command lines used when compiling and linking. Use the same scheme as some other Makefile's - enable verbose output when variable V is not empty.
TEST=tried building cbfstool with V=1, observed verbose output.
Change-Id: Iff25439aabff79e69d1d94a2c51c60bb0e0d7b80 Signed-off-by: Vadim Bendebury vbendeb@chromium.org --- M util/cbfstool/Makefile 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/29431/1
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index ba8fdff..f4dca3f 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -51,6 +51,8 @@ $(INSTALL) ifwitool $(DESTDIR)$(BINDIR) $(INSTALL) cbfs-compression-tool $(DESTDIR)$(BINDIR)
+ifneq ($(V),1) .SILENT: +endif
include Makefile.inc