summaryrefslogtreecommitdiff
path: root/lib/make/make.config.rules.in
diff options
context:
space:
mode:
Diffstat (limited to 'lib/make/make.config.rules.in')
-rw-r--r--lib/make/make.config.rules.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/make/make.config.rules.in b/lib/make/make.config.rules.in
index bddad398..e6b7637d 100644
--- a/lib/make/make.config.rules.in
+++ b/lib/make/make.config.rules.in
@@ -30,19 +30,24 @@ INCLUDE_LINE = $(patsubst %,-I"%",$(call TRANSFORM_DIRS,$(INC_DIRS)))
#####################################################################
define NOTIFY_PREPROCESSING
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo Preprocessing $<; fi
endef
define NOTIFY_COPYING
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo Copying $<; fi
endef
define NOTIFY_COMPILING
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo Compiling $<; \
else echo COMPILING $<; fi
endef
define NOTIFY_POSTPROCESSING
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo Postprocessing $<; fi
endef
define NOTIFY_DIVIDER
+ VERBOSE=`echo $VERBOSE | tr '[:upper:]' '[:lower:]'`; \
if test "$(VERBOSE)" = "yes"; then echo $(DIVIDER); fi
endef