aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/makefile
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-05-22 05:23:00 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-05-22 05:23:00 +0000
commitd0806c817cbf0c1b5c5362d1577eac6075c94dfc (patch)
tree1be89ddcaeceee05a5f230bbeb5784ee4c85193b /LUFA/makefile
parentb3a4d8512bcaf0feba16a3cbeeaabfcfeb9cf051 (diff)
downloadlufa-d0806c817cbf0c1b5c5362d1577eac6075c94dfc.tar.gz
lufa-d0806c817cbf0c1b5c5362d1577eac6075c94dfc.tar.bz2
lufa-d0806c817cbf0c1b5c5362d1577eac6075c94dfc.zip
Deleted StdDescriptors.c, renamed USB_GetDescriptor() to CALLBACK_USB_GetDescriptor, moved ConfigDescriptor.c/.h from the LUFA/Drivers/USB/Class/ directory to LUFA/Drivers/USB/HighLevel/ in preperation for the new USB class APIs.
Diffstat (limited to 'LUFA/makefile')
-rw-r--r--LUFA/makefile14
1 files changed, 7 insertions, 7 deletions
diff --git a/LUFA/makefile b/LUFA/makefile
index 3e1ce85b7..fc0009793 100644
--- a/LUFA/makefile
+++ b/LUFA/makefile
@@ -8,18 +8,18 @@
# Makefile for the LUFA library itself.
-LUFA_SRC_FILES = ./Drivers/USB/LowLevel/LowLevel.c \
+LUFA_SRC_FILES = ./Drivers/USB/LowLevel/DevChapter9.c \
./Drivers/USB/LowLevel/Endpoint.c \
- ./Drivers/USB/LowLevel/Pipe.c \
- ./Drivers/USB/LowLevel/DevChapter9.c \
- ./Drivers/USB/LowLevel/HostChapter9.c \
./Drivers/USB/LowLevel/Host.c \
- ./Drivers/USB/HighLevel/USBTask.c \
- ./Drivers/USB/HighLevel/USBInterrupt.c \
+ ./Drivers/USB/LowLevel/HostChapter9.c \
+ ./Drivers/USB/LowLevel/LowLevel.c \
+ ./Drivers/USB/LowLevel/Pipe.c \
./Drivers/USB/HighLevel/Events.c \
./Drivers/USB/HighLevel/StdDescriptors.c \
- ./Drivers/USB/Class/HIDParser.c \
+ ./Drivers/USB/HighLevel/USBInterrupt.c \
+ ./Drivers/USB/HighLevel/USBTask.c \
./Drivers/USB/Class/ConfigDescriptor.c \
+ ./Drivers/USB/Class/HIDParser.c \
./Scheduler/Scheduler.c \
./MemoryAllocator/DynAlloc.c \
./Drivers/Board/Temperature.c \