diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-04 16:15:59 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-03-04 16:15:59 +0000 |
commit | 9ffeac6992774224ebc279e346f99d5ed725bcd9 (patch) | |
tree | 358b663f2d9e2dbd1555af6ab6ee174da26711e1 /BuildTests/SingleUSBModeTest | |
parent | e408f92b266aa381b01066bd38da88b3c823b997 (diff) | |
download | lufa-9ffeac6992774224ebc279e346f99d5ed725bcd9.tar.gz lufa-9ffeac6992774224ebc279e346f99d5ed725bcd9.tar.bz2 lufa-9ffeac6992774224ebc279e346f99d5ed725bcd9.zip |
Update code and StaticAnlysisTest so that missingInclude warnings do not have to be suppressed, and so that all code except for third party libraries can be checked.
Update SingleUSBModeTest makefile to separate out the messages from the test commands.
Diffstat (limited to 'BuildTests/SingleUSBModeTest')
-rw-r--r-- | BuildTests/SingleUSBModeTest/makefile | 36 |
1 files changed, 20 insertions, 16 deletions
diff --git a/BuildTests/SingleUSBModeTest/makefile b/BuildTests/SingleUSBModeTest/makefile index c147d6236..701a4b930 100644 --- a/BuildTests/SingleUSBModeTest/makefile +++ b/BuildTests/SingleUSBModeTest/makefile @@ -12,30 +12,34 @@ # all module headers in a simple C and C++
# application.
-all:
+all: begin compile clean end
+
+begin:
@echo Executing build test "SingleUSBModeTest".
@echo
- $(MAKE) -f makefile.avr8 clean
- $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_DEVICE_ONLY'
- $(MAKE) -f makefile.avr8 clean
- $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_HOST_ONLY'
+end:
+ @echo Build test "SingleUSBModeTest" complete.
+ @echo
- $(MAKE) -f makefile.xmega clean
- $(MAKE) -f makefile.xmega LUFA_OPTS='-D USB_DEVICE_ONLY'
+compile:
+ $(MAKE) -f makefile.avr8 clean -s
+ $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_DEVICE_ONLY' -s
+ $(MAKE) -f makefile.avr8 clean -s
+ $(MAKE) -f makefile.avr8 LUFA_OPTS='-D USB_HOST_ONLY' -s
- $(MAKE) -f makefile.uc3 clean
- $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_DEVICE_ONLY'
- $(MAKE) -f makefile.uc3 clean
- $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_HOST_ONLY'
+ $(MAKE) -f makefile.xmega clean -s
+ $(MAKE) -f makefile.xmega LUFA_OPTS='-D USB_DEVICE_ONLY' -s
- @echo Build test "SingleUSBModeTest" complete.
- @echo
+ $(MAKE) -f makefile.uc3 clean -s
+ $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_DEVICE_ONLY' -s
+ $(MAKE) -f makefile.uc3 clean -s
+ $(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_HOST_ONLY' -s
clean:
- $(MAKE) -f makefile.avr8 clean
- $(MAKE) -f makefile.xmega clean
- $(MAKE) -f makefile.uc3 clean
+ $(MAKE) -f makefile.avr8 clean -s
+ $(MAKE) -f makefile.xmega clean -s
+ $(MAKE) -f makefile.uc3 clean -s
%:
\ No newline at end of file |