From d7d9ff68c94e14a57012fa666c452a66679d6f5f Mon Sep 17 00:00:00 2001 From: Dean Date: Mon, 7 May 2012 17:42:49 +0000 Subject: 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 --- BuildTests/ModuleTest/makefile | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'BuildTests/ModuleTest/makefile') diff --git a/BuildTests/ModuleTest/makefile b/BuildTests/ModuleTest/makefile index c0d3ec04..59700730 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 -- cgit v1.2.3