projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Speed up build tests by only building each test to the ELF output stage (when all...
[pub/USBasp.git]
/
BuildTests
/
ModuleTest
/
makefile
diff --git
a/BuildTests/ModuleTest/makefile
b/BuildTests/ModuleTest/makefile
index
c0d3ec0
..
5970073
100644
(file)
--- a/
BuildTests/ModuleTest/makefile
+++ b/
BuildTests/ModuleTest/makefile
@@
-37,21
+37,21
@@
end:
@echo
\r
\r
%.avr8:
\r
@echo
\r
\r
%.avr8:
\r
- $(MAKE) -
f makefile.avr8 clean -s
\r
- $(MAKE) -
f makefile.avr8 all MCU=$(@:%.avr8=%) -s
\r
+ $(MAKE) -
s -f makefile.avr8 clean
\r
+ $(MAKE) -
s -f makefile.avr8 all MCU=$(@:%.avr8=%) elf
\r
\r
%.xmega:
\r
\r
%.xmega:
\r
- $(MAKE) -
f makefile.xmega clean -s
\r
- $(MAKE) -
f makefile.xmega all MCU=$(@:%.xmega=%) -s
\r
+ $(MAKE) -
s -f makefile.xmega clean
\r
+ $(MAKE) -
s -f makefile.xmega all MCU=$(@:%.xmega=%) elf
\r
\r
%.uc3:
\r
\r
%.uc3:
\r
- $(MAKE) -
f makefile.uc3 clean -s
\r
- $(MAKE) -
f makefile.uc3 all MCU=$(@:%.uc3=%) -s
\r
+ $(MAKE) -
s -f makefile.uc3 clean
\r
+ $(MAKE) -
s -f makefile.uc3 all MCU=$(@:%.uc3=%) elf
\r
\r
clean:
\r
\r
clean:
\r
- $(MAKE) -
f makefile.avr8 clean -s
\r
- $(MAKE) -
f makefile.xmega clean -s
\r
- $(MAKE) -
f makefile.uc3 clean -s
\r
+ $(MAKE) -
s -f makefile.avr8 clean
\r
+ $(MAKE) -
s -f makefile.xmega clean
\r
+ $(MAKE) -
s -f makefile.uc3 clean
\r
\r
%:
\r
\ No newline at end of file
\r
%:
\r
\ No newline at end of file