summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2012-12-10 15:50:42 +0100
committerSylvain Munaut <tnt@246tNt.com>2013-01-02 20:44:10 +0100
commit0bfedc439f009ee1d54dc0af0d92374e8725b96d (patch)
tree86af1de348c9c3cfb57451316588e1494bef2ae6
parent4df6653d8dc0faef45ebf7dfba4746f2587c8c0f (diff)
fw/build: Add a silent rule for the 'size' call as well
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--src/target/firmware/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/target/firmware/Makefile.inc b/src/target/firmware/Makefile.inc
index 1f540319..5c60b7d2 100644
--- a/src/target/firmware/Makefile.inc
+++ b/src/target/firmware/Makefile.inc
@@ -34,6 +34,7 @@ Q_CC = $(if $(V:1=),@echo " CC $@";)
Q_LD = $(if $(V:1=),@echo " LD $@";)
Q_AR = $(if $(V:1=),@echo " AR $@";)
Q_OBJ = $(if $(V:1=),@echo " OBJ $@";)
+Q_SIZE = $(if $(V:1=),@echo " SIZE $@";)
#### GIT VERSION ####
@@ -99,7 +100,7 @@ board/$(2)/$(1).$(3).elf board/$(2)/$(1).$(3).map: $$($(1)_$(2)_$(3)_OBJS) $$($(
# define size rule
board/$(2)/$(1).$(3).size: board/$(2)/$(1).$(3).elf
- $(CROSS_COMPILE)$(SIZE) board/$(2)/$(1).$(3).elf | tee board/$(2)/$(1).$(3).size
+ $$(Q_SIZE)$(CROSS_COMPILE)$(SIZE) board/$(2)/$(1).$(3).elf | tee board/$(2)/$(1).$(3).size
ALL_APPS+=board/$(2)/$(1).$(3).elf
ALL_OBJS+=board/$(2)/$(1).$(3).manifest.o