aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests/SingleUSBModeTest
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-02-19 13:30:08 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-02-19 13:30:08 +0000
commit0e4ece1d1d5626371059ab00bc502fb05a9df125 (patch)
treef830f56a1867a46204ad8df98b530e8ee9c0f738 /BuildTests/SingleUSBModeTest
parentb7f4370c8e01d3e9f4c0eeedc3baeaf4ee227134 (diff)
downloadlufa-0e4ece1d1d5626371059ab00bc502fb05a9df125.tar.gz
lufa-0e4ece1d1d5626371059ab00bc502fb05a9df125.tar.bz2
lufa-0e4ece1d1d5626371059ab00bc502fb05a9df125.zip
Update build test "ModuleTest" to check platform drivers where possible. Add missing copyright/license headers.
Diffstat (limited to 'BuildTests/SingleUSBModeTest')
-rw-r--r--BuildTests/SingleUSBModeTest/Dummy.S3
-rw-r--r--BuildTests/SingleUSBModeTest/makefile6
2 files changed, 9 insertions, 0 deletions
diff --git a/BuildTests/SingleUSBModeTest/Dummy.S b/BuildTests/SingleUSBModeTest/Dummy.S
index 9739e921f..bc13b31eb 100644
--- a/BuildTests/SingleUSBModeTest/Dummy.S
+++ b/BuildTests/SingleUSBModeTest/Dummy.S
@@ -28,6 +28,9 @@
this software.
*/
+.section .text
+
+
# Mandatory entry point for successful compilation and link
.global main
main:
diff --git a/BuildTests/SingleUSBModeTest/makefile b/BuildTests/SingleUSBModeTest/makefile
index 9697ee6bf..c147d6236 100644
--- a/BuildTests/SingleUSBModeTest/makefile
+++ b/BuildTests/SingleUSBModeTest/makefile
@@ -13,6 +13,9 @@
# application.
all:
+ @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
@@ -26,6 +29,9 @@ all:
$(MAKE) -f makefile.uc3 clean
$(MAKE) -f makefile.uc3 LUFA_OPTS='-D USB_HOST_ONLY'
+ @echo Build test "SingleUSBModeTest" complete.
+ @echo
+
clean:
$(MAKE) -f makefile.avr8 clean
$(MAKE) -f makefile.xmega clean