diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 15:20:51 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-03 15:20:51 +0000 |
commit | 8f8f3478917401f3d286dafd73902e9d80b527d2 (patch) | |
tree | 27402527332b64f81784559f7e6df4bfb9fcc797 /Demos/Device/ClassDriver/makefile | |
parent | 316cae29b5a1a4901ad7e8eac1aafac318156649 (diff) | |
download | lufa-8f8f3478917401f3d286dafd73902e9d80b527d2.tar.gz lufa-8f8f3478917401f3d286dafd73902e9d80b527d2.tar.bz2 lufa-8f8f3478917401f3d286dafd73902e9d80b527d2.zip |
Quiet initial recursive makefile invocation for all projects.
Diffstat (limited to 'Demos/Device/ClassDriver/makefile')
-rw-r--r-- | Demos/Device/ClassDriver/makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/ClassDriver/makefile b/Demos/Device/ClassDriver/makefile index 151934756..cfa776a72 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) $@;) |