aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-05-07 17:42:49 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-05-07 17:42:49 +0000
commit7a7ee6a908c1a3d9fff220152309460287178a4f (patch)
tree365c180de31f40c1af5da403a46d09437627d5f2 /BuildTests/makefile
parente5a7fa201e4482c3658cd382470c4dcfe27578fb (diff)
downloadlufa-7a7ee6a908c1a3d9fff220152309460287178a4f.tar.gz
lufa-7a7ee6a908c1a3d9fff220152309460287178a4f.tar.bz2
lufa-7a7ee6a908c1a3d9fff220152309460287178a4f.zip
Speed up build tests by only building each test to the ELF output stage (when all files are compiled and linked), rather than to the full HEX output stage as the resulting binary is not actually required.
Diffstat (limited to 'BuildTests/makefile')
-rw-r--r--BuildTests/makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/BuildTests/makefile b/BuildTests/makefile
index dfa4f8d4b..ac0cde260 100644
--- a/BuildTests/makefile
+++ b/BuildTests/makefile
@@ -11,13 +11,8 @@
# not intended to be modified or compiled by non-developers.
all:
- $(MAKE) -C ModuleTest all
- $(MAKE) -C SingleUSBModeTest all
- $(MAKE) -C StaticAnalysisTest all
- $(MAKE) -C BoardDriverTest all
-
%:
+ $(MAKE) -C BoardDriverTest $@
$(MAKE) -C ModuleTest $@
$(MAKE) -C SingleUSBModeTest $@
$(MAKE) -C StaticAnalysisTest $@
- $(MAKE) -C BoardDriverTest $@