aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-02-19 22:59:27 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-02-19 22:59:27 +0000
commit1daa5e16f9a395fb2943906a715adb35b8106988 (patch)
tree016c5790c2b0e50753f9a4edda21ce54b40e914d /LUFA/makefile
parent3832182fe1de292998eef73e00511f73af0efa87 (diff)
downloadlufa-1daa5e16f9a395fb2943906a715adb35b8106988.tar.gz
lufa-1daa5e16f9a395fb2943906a715adb35b8106988.tar.bz2
lufa-1daa5e16f9a395fb2943906a715adb35b8106988.zip
Initial restructuring of the core USB driver module to support multiple architectures in the future.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile26
1 files changed, 13 insertions, 13 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index ccc2afd8c..44808b9e9 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -22,19 +22,19 @@ ifeq ($(origin ARCH), undefined)
endif
# Define module source file lists
-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/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/EndpointStream.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/HostStandardReq.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/PipeStream.c \
- $(LUFA_ROOT_PATH)/Drivers/USB/HighLevel/USBTask.c \
+LUFA_SRC_USB = $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/Device.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/Endpoint.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/Host.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/Pipe.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/USBController.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/$(ARCH)/USBInterrupt.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/ConfigDescriptor.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/DeviceStandardReq.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/Events.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/EndpointStream.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/HostStandardReq.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/PipeStream.c \
+ $(LUFA_ROOT_PATH)/Drivers/USB/Core/USBTask.c \
$(LUFA_ROOT_PATH)/Drivers/USB/Class/Common/HIDParser.c
LUFA_SRC_USBCLASS = $(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/Audio.c \
$(LUFA_ROOT_PATH)/Drivers/USB/Class/Device/CDC.c \