aboutsummaryrefslogtreecommitdiff
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-07-21 12:20:34 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2010-07-21 12:20:34 +0000
commit5fbee7155ba7f3211c9be25112451fa53fb61b0a (patch)
tree40db0dfda49d5727454c28daea895c9ab028c15f /LUFA/makefile
parent82d4762c792ed3d1052630ba74148fe625f26f01 (diff)
Move and rename DevChaper9.c/.h and HostChapter9.c/.h to the HighLevel directory, new named DeviceStandardReq.c/.h and HostStandardReq.c/.h.
Rename LowLevel.c/.h to USBController.c/.h. Remove dependancies on the complete <avr/io.h> header in the HighLevel USB driver directory, to ensure less work is required in later (possible) ports. git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1397 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 845de4e4..2ecfde17 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -17,16 +17,16 @@ else
endif
# Define module source file lists
-LUFA_SRC_USB = $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/DevChapter9.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/Device.c \
+LUFA_SRC_USB = $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/Device.c \
$(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/Endpoint.c \
$(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/Host.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/HostChapter9.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/LowLevel.c \
$(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/Pipe.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/USBController.c \
$(LUFA_ROOT_PATH)/Drivers/USB/LowLevel/USBInterrupt.c \
$(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/ConfigDescriptor.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/DeviceStandardReq.c \
$(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/Events.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/HostStandardReq.c \
$(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/USBTask.c \
$(LUFA_ROOT_PATH)/Drivers/USB/Class/Host/HIDParser.c
LUFA_SRC_USBCLASS = $(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/Audio.c \