diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-11 19:57:19 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-07-11 19:57:19 +0000 |
commit | 1faa5ba70aecc5a55ec198e2129181f5a79489d2 (patch) | |
tree | 80b7ee2380e66ad4cc481e509db534b218d0eb2f /LUFA | |
parent | a9b68526036ab0e17298848627702d4698993998 (diff) | |
download | lufa-1faa5ba70aecc5a55ec198e2129181f5a79489d2.tar.gz lufa-1faa5ba70aecc5a55ec198e2129181f5a79489d2.tar.bz2 lufa-1faa5ba70aecc5a55ec198e2129181f5a79489d2.zip |
Fix project makefiles - remove trailing slash from LUFA_PATH entries and the XPLAINBridge project AVRISP file include path to prevent build errors.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/Build/HID_EEPROM_Loader/makefile | 2 | ||||
-rw-r--r-- | LUFA/CodeTemplates/makefile_template | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Build/HID_EEPROM_Loader/makefile b/LUFA/Build/HID_EEPROM_Loader/makefile index 148e779e7..6226783ed 100644 --- a/LUFA/Build/HID_EEPROM_Loader/makefile +++ b/LUFA/Build/HID_EEPROM_Loader/makefile @@ -16,7 +16,7 @@ F_USB = $(F_CPU) OPTIMIZATION = s
TARGET = HID_EEPROM_Loader
SRC = $(TARGET).c
-LUFA_PATH = ../../../LUFA/
+LUFA_PATH = ../../../LUFA
CC_FLAGS =
LD_FLAGS =
OBJECT_FILES = InputEEData.o
diff --git a/LUFA/CodeTemplates/makefile_template b/LUFA/CodeTemplates/makefile_template index cf2b6737c..28d7c884f 100644 --- a/LUFA/CodeTemplates/makefile_template +++ b/LUFA/CodeTemplates/makefile_template @@ -17,8 +17,8 @@ F_USB = $(F_CPU) OPTIMIZATION = s TARGET = Target SRC = $(TARGET).c $(LUFA_SRC_USB) $(LUFA_SRC_USBCLASS) $(LUFA_SRC_PLATFORM) -LUFA_PATH = ../../LUFA/ -CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig/ +LUFA_PATH = ../../LUFA +CC_FLAGS = -DUSE_LUFA_CONFIG_HEADER -IConfig LD_FLAGS = # Default target |