aboutsummaryrefslogtreecommitdiff
path: root/BuildTests/ModuleTest/makefile.uc3
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-02-19 13:30:08 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-02-19 13:30:08 +0000
commit6b3f08acdea507951ad12d458823364e6f4b08dd (patch)
treef830f56a1867a46204ad8df98b530e8ee9c0f738 /BuildTests/ModuleTest/makefile.uc3
parentb2517ec84c8bdcebc18957d4fb6ececbc009b5d4 (diff)
Update build test "ModuleTest" to check platform drivers where possible. Add missing copyright/license headers.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2056 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'BuildTests/ModuleTest/makefile.uc3')
-rw-r--r--BuildTests/ModuleTest/makefile.uc35
1 files changed, 3 insertions, 2 deletions
diff --git a/BuildTests/ModuleTest/makefile.uc3 b/BuildTests/ModuleTest/makefile.uc3
index 5f5941de..610de46e 100644
--- a/BuildTests/ModuleTest/makefile.uc3
+++ b/BuildTests/ModuleTest/makefile.uc3
@@ -120,7 +120,8 @@ CPPSRC = Test_CPP.cpp
# Even though the DOS/Win* filesystem matches both .s and .S the same,
# it will preserve the spelling of the filenames, and gcc itself does
# care about how the name is spelled on its command-line.
-ASRC = Dummy.S
+ASRC = Dummy.S \
+ $(LUFA_PATH)/LUFA/Platform/UC3/Exception.S
# Optimization level, can be [0, 1, 2, 3, s].
@@ -225,7 +226,7 @@ CPPFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS))
# files -- see avr-libc docs [FIXME: not yet described there]
# -listing-cont-lines: Sets the maximum number of continuation lines of hex
# dump that will be displayed for a given single line of source input.
-ASFLAGS = $(ADEFS) -Wa,-adhlns=$(<:%.S=$(OBJDIR)/%.lst),-gstabs,--listing-cont-lines=100
+ASFLAGS = $(ADEFS) -Wa,-adhlns=$(<:%.S=$(OBJDIR)/%.lst)
#---------------- Linker Options ----------------