From 0bfedc439f009ee1d54dc0af0d92374e8725b96d Mon Sep 17 00:00:00 2001 From: Sylvain Munaut Date: Mon, 10 Dec 2012 15:50:42 +0100 Subject: fw/build: Add a silent rule for the 'size' call as well Signed-off-by: Sylvain Munaut --- src/target/firmware/Makefile.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- cgit v1.2.3