diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-03 15:20:51 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-06-03 15:20:51 +0000 |
| commit | e2e022e48c7e09ee424504862b59672abf0c2cbe (patch) | |
| tree | 27402527332b64f81784559f7e6df4bfb9fcc797 /Demos/Device | |
| parent | 7b9c292be782ef8f4dbbb008d59bb450c0887949 (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')
| -rw-r--r-- | Demos/Device/ClassDriver/makefile | 6 | ||||
| -rw-r--r-- | Demos/Device/LowLevel/makefile | 4 |
2 files changed, 5 insertions, 5 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) $@;) diff --git a/Demos/Device/LowLevel/makefile b/Demos/Device/LowLevel/makefile index 15193475..4673bfe5 100644 --- a/Demos/Device/LowLevel/makefile +++ b/Demos/Device/LowLevel/makefile @@ -16,7 +16,7 @@ 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) $@;) |
