aboutsummaryrefslogtreecommitdiff
path: root/Demos/Device/ClassDriver/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-03 15:20:51 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-03 15:20:51 +0000
commite2e022e48c7e09ee424504862b59672abf0c2cbe (patch)
tree27402527332b64f81784559f7e6df4bfb9fcc797 /Demos/Device/ClassDriver/makefile
parent7b9c292be782ef8f4dbbb008d59bb450c0887949 (diff)
Quiet initial recursive makefile invocation for all projects.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2298 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/ClassDriver/makefile')
-rw-r--r--Demos/Device/ClassDriver/makefile6
1 files changed, 3 insertions, 3 deletions
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) $@;)