diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-11 19:57:19 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-11 19:57:19 +0000 |
| commit | f93bcc34ec61bb80fe7aa2a54107d819ec5b46aa (patch) | |
| tree | 80b7ee2380e66ad4cc481e509db534b218d0eb2f /BuildTests/SingleUSBModeTest/makefile.test | |
| parent | addc58ac3655c8810ac56a9c86604f052f515d58 (diff) | |
Fix project makefiles - remove trailing slash from LUFA_PATH entries and the XPLAINBridge project AVRISP file include path to prevent build errors.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2398 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'BuildTests/SingleUSBModeTest/makefile.test')
| -rw-r--r-- | BuildTests/SingleUSBModeTest/makefile.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/BuildTests/SingleUSBModeTest/makefile.test b/BuildTests/SingleUSBModeTest/makefile.test index 461a4b61..7f634821 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 |
