From ac84c6359b20bf65598de88459d8b614fd431d98 Mon Sep 17 00:00:00 2001 From: Ivan Zorin Date: Sat, 13 Jan 2024 10:50:43 +0300 Subject: [PATCH] src/Makefile: add V=1 parsing to enable verbose compile in easier classic way (#158) --- src/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile b/src/Makefile index c5bfac34..874fa5ca 100644 --- a/src/Makefile +++ b/src/Makefile @@ -79,6 +79,10 @@ ifeq ($(USE_THUMB),) endif # Enable this if you want to see the full log while compiling. +ifeq ($(V),1) + USE_VERBOSE_COMPILE = yes +endif + # Also set directives to use with commands depending on verbosity status. ifeq ($(USE_VERBOSE_COMPILE),yes) # if verbose build then print out the full commands without description