Added "-s" to make in the demo Makefile to reduce noise during compile.

This commit is contained in:
skarg
2013-01-08 18:22:57 +00:00
parent cc5c1f714f
commit 3bc404dbe9
2 changed files with 11 additions and 11 deletions
+9 -9
View File
@@ -70,28 +70,28 @@ all: library demos
.PHONY : all library demos clean
library:
$(MAKE) -C lib all
$(MAKE) -s -C lib all
demos:
$(MAKE) -C demo all
$(MAKE) -s -C demo all
router:
$(MAKE) -C demo router
$(MAKE) -s -C demo router
# Add "ports" to the build, if desired
ports: atmega168 bdk-atxx4-mstp at91sam7s
@echo "Built the ARM7 and AVR ports"
atmega168: ports/atmega168/Makefile
$(MAKE) -C ports/atmega168 clean all
$(MAKE) -s -C ports/atmega168 clean all
at91sam7s: ports/at91sam7s/makefile
$(MAKE) -C ports/at91sam7s clean all
$(MAKE) -s -C ports/at91sam7s clean all
bdk-atxx4-mstp: ports/bdk-atxx4-mstp/Makefile
$(MAKE) -C ports/bdk-atxx4-mstp clean all
$(MAKE) -s -C ports/bdk-atxx4-mstp clean all
clean:
$(MAKE) -C lib clean
$(MAKE) -C demo clean
$(MAKE) -C demo/router clean
$(MAKE) -s -C lib clean
$(MAKE) -s -C demo clean
$(MAKE) -s -C demo/router clean
+2 -2
View File
@@ -73,7 +73,7 @@ TARGETS = all clean
$(TARGETS): %: $(patsubst %, %.%, $(SUBDIRS))
$(foreach TGT, $(TARGETS), $(patsubst %, %.$(TGT), $(SUBDIRS))):
$(MAKE) -b -C $(subst ., , $@)
$(MAKE) -s -b -C $(subst ., , $@)
router:
$(MAKE) -b -C router
$(MAKE) -s -b -C router