Update build test "ModuleTest" to check platform drivers where possible. Add missing copyright/license headers.

This commit is contained in:
Dean Camera 2012-02-19 13:30:08 +00:00
parent b7f4370c8e
commit 0e4ece1d1d
10 changed files with 146 additions and 6 deletions

View file

@ -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 ----------------