aboutsummaryrefslogtreecommitdiffstats
path: root/BuildTests/ModuleTest/makefile.uc3
diff options
context:
space:
mode:
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 5f5941deb..610de46ed 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 ----------------