diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-07 17:42:49 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-07 17:42:49 +0000 |
commit | 7a7ee6a908c1a3d9fff220152309460287178a4f (patch) | |
tree | 365c180de31f40c1af5da403a46d09437627d5f2 /BuildTests/makefile | |
parent | e5a7fa201e4482c3658cd382470c4dcfe27578fb (diff) | |
download | lufa-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/makefile | 7 |
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 $@
|