diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-05-07 17:42:49 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-05-07 17:42:49 +0000 |
| commit | d7d9ff68c94e14a57012fa666c452a66679d6f5f (patch) | |
| tree | 365c180de31f40c1af5da403a46d09437627d5f2 /BuildTests/makefile | |
| parent | bcad65956d244f54d026127ab0f80acde1a233d2 (diff) | |
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.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2191 d5102386-fcda-11dd-9fdb-3debd5008f28
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 dfa4f8d4..ac0cde26 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 $@
|
