aboutsummaryrefslogtreecommitdiff
path: root/Makefile.common
diff options
context:
space:
mode:
authorJohannes Schickel2011-05-05 20:24:57 +0200
committerJohannes Schickel2011-05-05 20:24:57 +0200
commit09b9e3ab9d6a914129e82d8dd97891041bc8e37b (patch)
treea161850a72aaa5cce7024bdf31ed3f3d589c436e /Makefile.common
parent297834017a56140d1a33a4ce642bc9f39f54cf28 (diff)
downloadscummvm-rg350-09b9e3ab9d6a914129e82d8dd97891041bc8e37b.tar.gz
scummvm-rg350-09b9e3ab9d6a914129e82d8dd97891041bc8e37b.tar.bz2
scummvm-rg350-09b9e3ab9d6a914129e82d8dd97891041bc8e37b.zip
BUILD: Silence windres command line when a non-verbose build is done.
Diffstat (limited to 'Makefile.common')
-rw-r--r--Makefile.common17
1 files changed, 9 insertions, 8 deletions
diff --git a/Makefile.common b/Makefile.common
index e96774fe4e..8aee2b6d6e 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -63,14 +63,15 @@ endif
ifneq ($(findstring $(MAKEFLAGS),s),s)
ifneq ($(VERBOSE_BUILD),1)
ifneq ($(VERBOSE_BUILD),yes)
-QUIET_CXX = @echo ' ' C++ ' ' $@;
-QUIET_AS = @echo ' ' AS ' ' $@;
-QUIET_NASM = @echo ' ' NASM ' ' $@;
-QUIET_AR = @echo ' ' AR ' ' $@;
-QUIET_RANLIB = @echo ' ' RANLIB ' ' $@;
-QUIET_PLUGIN = @echo ' ' PLUGIN ' ' $@;
-QUIET_LINK = @echo ' ' LINK ' ' $@;
-QUIET = @
+QUIET_CXX = @echo ' ' C++ ' ' $@;
+QUIET_AS = @echo ' ' AS ' ' $@;
+QUIET_NASM = @echo ' ' NASM ' ' $@;
+QUIET_AR = @echo ' ' AR ' ' $@;
+QUIET_RANLIB = @echo ' ' RANLIB ' ' $@;
+QUIET_PLUGIN = @echo ' ' PLUGIN ' ' $@;
+QUIET_LINK = @echo ' ' LINK ' ' $@;
+QUIET_WINDRES = @echo ' ' WINDRES '' $@;
+QUIET = @
endif
endif
endif