aboutsummaryrefslogtreecommitdiff
path: root/Rules.mak
diff options
context:
space:
mode:
Diffstat (limited to 'Rules.mak')
-rw-r--r--Rules.mak9
1 files changed, 9 insertions, 0 deletions
diff --git a/Rules.mak b/Rules.mak
index ec03ce011..f247439cb 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -109,6 +109,15 @@ endif
109check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \ 109check_gcc=$(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null > /dev/null 2>&1; \
110 then echo "$(1)"; else echo "$(2)"; fi) 110 then echo "$(1)"; else echo "$(2)"; fi)
111 111
112# Setup some shortcuts so that silent mode is silent like it should be
113ifeq ($(subst s,,$(MAKEFLAGS)),$(MAKEFLAGS))
114export MAKE_IS_SILENT=n
115SECHO=@echo
116else
117export MAKE_IS_SILENT=y
118SECHO=-@false
119endif
120
112#-------------------------------------------------------- 121#--------------------------------------------------------
113# Arch specific compiler optimization stuff should go here. 122# Arch specific compiler optimization stuff should go here.
114# Unless you want to override the defaults, do not set anything 123# Unless you want to override the defaults, do not set anything