From e2e022e48c7e09ee424504862b59672abf0c2cbe Mon Sep 17 00:00:00 2001 From: Dean Date: Sun, 3 Jun 2012 15:20:51 +0000 Subject: Quiet initial recursive makefile invocation for all projects. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2298 d5102386-fcda-11dd-9fdb-3debd5008f28 --- Demos/Device/ClassDriver/makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Demos/Device/ClassDriver/makefile') diff --git a/Demos/Device/ClassDriver/makefile b/Demos/Device/ClassDriver/makefile index 15193475..cfa776a7 100644 --- a/Demos/Device/ClassDriver/makefile +++ b/Demos/Device/ClassDriver/makefile @@ -13,10 +13,10 @@ # custom LUFA library build options are reflected in the compiled # code. -PROJECT_DIRECTORIES = $(shell ls -d *) +PROJECT_DIRECTORIES = $(shell ls -d */) all: - $(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) %: - $(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) -- cgit v1.2.3