diff options
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) $@;) |