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/ModuleTest/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/ModuleTest/makefile')
-rw-r--r-- | BuildTests/ModuleTest/makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/BuildTests/ModuleTest/makefile b/BuildTests/ModuleTest/makefile index c0d3ec040..59700730c 100644 --- a/BuildTests/ModuleTest/makefile +++ b/BuildTests/ModuleTest/makefile @@ -37,21 +37,21 @@ end: @echo
%.avr8:
- $(MAKE) -f makefile.avr8 clean -s
- $(MAKE) -f makefile.avr8 all MCU=$(@:%.avr8=%) -s
+ $(MAKE) -s -f makefile.avr8 clean
+ $(MAKE) -s -f makefile.avr8 all MCU=$(@:%.avr8=%) elf
%.xmega:
- $(MAKE) -f makefile.xmega clean -s
- $(MAKE) -f makefile.xmega all MCU=$(@:%.xmega=%) -s
+ $(MAKE) -s -f makefile.xmega clean
+ $(MAKE) -s -f makefile.xmega all MCU=$(@:%.xmega=%) elf
%.uc3:
- $(MAKE) -f makefile.uc3 clean -s
- $(MAKE) -f makefile.uc3 all MCU=$(@:%.uc3=%) -s
+ $(MAKE) -s -f makefile.uc3 clean
+ $(MAKE) -s -f makefile.uc3 all MCU=$(@:%.uc3=%) elf
clean:
- $(MAKE) -f makefile.avr8 clean -s
- $(MAKE) -f makefile.xmega clean -s
- $(MAKE) -f makefile.uc3 clean -s
+ $(MAKE) -s -f makefile.avr8 clean
+ $(MAKE) -s -f makefile.xmega clean
+ $(MAKE) -s -f makefile.uc3 clean
%:
\ No newline at end of file |