aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests/BoardDriverTest
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-24 19:38:37 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-24 19:38:37 +0000
commitaba33a03341dd80bd3cb9efea1001f42bd82c715 (patch)
tree8aa9d11bb93cff73ec78e399db72cf39edd92929 /BuildTests/BoardDriverTest
parent3f4efc6159cd08c445d58ae7e7a93d89b306d32d (diff)
downloadlufa-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 'BuildTests/BoardDriverTest')
-rw-r--r--BuildTests/BoardDriverTest/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/BuildTests/BoardDriverTest/makefile b/BuildTests/BoardDriverTest/makefile
index 3bbfaece1..f039a3a7d 100644
--- a/BuildTests/BoardDriverTest/makefile
+++ b/BuildTests/BoardDriverTest/makefile
@@ -45,7 +45,7 @@ testboards:
echo "Found board configuration for $$build_board - $$build_arch, $$build_mcu"; \
\
printf "\t@echo Building dummy project for $$build_board...\n" >> BuildMakefile; \
- printf "\t$(MAKE) -s -f makefile.test clean elf MCU=%s ARCH=%s BOARD=%s\n\n" $$build_mcu $$build_arch $$build_board >> BuildMakefile; \
+ printf "\t$(MAKE) -f makefile.test clean elf MCU=%s ARCH=%s BOARD=%s\n\n" $$build_mcu $$build_arch $$build_board >> BuildMakefile; \
fi; \
done < BoardList.txt
@@ -54,9 +54,9 @@ testboards:
clean:
rm -f BuildMakefile
rm -f BoardList.txt
- $(MAKE) -s -f makefile.test clean BOARD=NONE ARCH=AVR8 MCU=at90usb1287
- $(MAKE) -s -f makefile.test clean BOARD=NONE ARCH=XMEGA MCU=atxmega128a1u
- $(MAKE) -s -f makefile.test clean BOARD=NONE ARCH=UC3 MCU=uc3a0256
+ $(MAKE) -f makefile.test clean BOARD=NONE ARCH=AVR8 MCU=at90usb1287
+ $(MAKE) -f makefile.test clean BOARD=NONE ARCH=XMEGA MCU=atxmega128a1u
+ $(MAKE) -f makefile.test clean BOARD=NONE ARCH=UC3 MCU=uc3a0256
%: