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/LowLevel | |
| 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/LowLevel')
| -rw-r--r-- | Demos/Device/LowLevel/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
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) $@;) |
