diff options
Diffstat (limited to 'BuildTests')
-rw-r--r-- | BuildTests/BoardDriverTest/makefile.test | 2 | ||||
-rw-r--r-- | BuildTests/ModuleTest/makefile.test | 2 | ||||
-rw-r--r-- | BuildTests/SingleUSBModeTest/makefile.test | 8 |
3 files changed, 6 insertions, 6 deletions
diff --git a/BuildTests/BoardDriverTest/makefile.test b/BuildTests/BoardDriverTest/makefile.test index 82ff3ad0a..06dfb5422 100644 --- a/BuildTests/BoardDriverTest/makefile.test +++ b/BuildTests/BoardDriverTest/makefile.test @@ -17,7 +17,7 @@ F_USB = 8000000 OPTIMIZATION = 1 TARGET = Test SRC = $(TARGET).c -LUFA_PATH = ../../LUFA/ +LUFA_PATH = ../../LUFA CC_FLAGS = -Werror # Include LUFA build script makefiles diff --git a/BuildTests/ModuleTest/makefile.test b/BuildTests/ModuleTest/makefile.test index 4e7d6f900..aad7e728a 100644 --- a/BuildTests/ModuleTest/makefile.test +++ b/BuildTests/ModuleTest/makefile.test @@ -16,7 +16,7 @@ F_CPU = $(F_USB) OPTIMIZATION = 1 TARGET = Test SRC = $(TARGET)_C.c $(TARGET)_CPP.cpp Dummy.S $(LUFA_SRC_USB) -LUFA_PATH = ../../LUFA/ +LUFA_PATH = ../../LUFA ifeq ($(ARCH), AVR8) F_USB = 8000000 diff --git a/BuildTests/SingleUSBModeTest/makefile.test b/BuildTests/SingleUSBModeTest/makefile.test index 461a4b612..7f634821f 100644 --- a/BuildTests/SingleUSBModeTest/makefile.test +++ b/BuildTests/SingleUSBModeTest/makefile.test @@ -15,17 +15,17 @@ BOARD = NONE F_CPU = $(F_USB) ifeq ($(ARCH), AVR8) -F_USB = 8000000 + F_USB = 8000000 else ifeq ($(ARCH), XMEGA) -F_USB = 48000000 + F_USB = 48000000 else ifeq ($(ARCH), UC3) -F_USB = 48000000 + F_USB = 48000000 endif OPTIMIZATION = 1 TARGET = Test SRC = Test.c Dummy.S $(LUFA_SRC_USB) -LUFA_PATH = ../../LUFA/ +LUFA_PATH = ../../LUFA CC_FLAGS = # TODO: Add warnings and set warnings as errors |