diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-24 19:38:37 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-24 19:38:37 +0000 |
commit | aba33a03341dd80bd3cb9efea1001f42bd82c715 (patch) | |
tree | 8aa9d11bb93cff73ec78e399db72cf39edd92929 /Demos/Host/LowLevel | |
parent | 3f4efc6159cd08c445d58ae7e7a93d89b306d32d (diff) | |
download | lufa-aba33a03341dd80bd3cb9efea1001f42bd82c715.tar.gz lufa-aba33a03341dd80bd3cb9efea1001f42bd82c715.tar.bz2 lufa-aba33a03341dd80bd3cb9efea1001f42bd82c715.zip |
Don't enforce silent output on submake - pass down the value set by the user implicitly instead.
Diffstat (limited to 'Demos/Host/LowLevel')
-rw-r--r-- | Demos/Host/LowLevel/makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/makefile b/Demos/Host/LowLevel/makefile index 128a22f57..d9a3dc359 100644 --- a/Demos/Host/LowLevel/makefile +++ b/Demos/Host/LowLevel/makefile @@ -24,8 +24,8 @@ endif all: ifeq ($(OBJDIR),) - @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) clean all;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) clean all;) endif %: - @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -s -C $(PROJECT) $@;) + @$(foreach PROJECT, $(PROJECT_DIRECTORIES), $(MAKE) -C $(PROJECT) $@;) |