aboutsummaryrefslogtreecommitdiff
path: root/lib/libusb/Makefile
diff options
context:
space:
mode:
authorNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-07-24 14:27:09 +0530
committerNikunj A Dadhania <nikunj@linux.vnet.ibm.com>2013-07-24 14:46:23 +0530
commit2deb222c4c9eac625526f9d2f45df8666753c09a (patch)
tree420d9d8057a07715e735b54352f9d7e59a0be96d /lib/libusb/Makefile
parent912a746dc1530179560a87f65121feb1920b583f (diff)
downloadSLOF-2deb222c4c9eac625526f9d2f45df8666753c09a.zip
SLOF-2deb222c4c9eac625526f9d2f45df8666753c09a.tar.gz
SLOF-2deb222c4c9eac625526f9d2f45df8666753c09a.tar.bz2
usb-core: setup new device
* Configures the newly found usb devices. Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> Fixes-by: Avik Sil <aviksil@linux.vnet.ibm.com> Signed-off-by: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com> Acked-by: Thomas Huth <thuth@linux.vnet.ibm.com>
Diffstat (limited to 'lib/libusb/Makefile')
-rw-r--r--lib/libusb/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libusb/Makefile b/lib/libusb/Makefile
index 3153e6b..ca3a8fa 100644
--- a/lib/libusb/Makefile
+++ b/lib/libusb/Makefile
@@ -14,7 +14,7 @@ TOPCMNDIR ?= ../..
ASFLAGS = $(FLAG) $(RELEASE) $(CPUARCHDEF) -Wa,-mregnames
CPPFLAGS = -I../libc/include $(CPUARCHDEF) -I$(INCLBRDDIR) \
- -I$(INCLCMNDIR) -I$(INCLCMNDIR)/$(CPUARCH)
+ -I$(INCLCMNDIR) -I$(INCLCMNDIR)/$(CPUARCH) -I$(SLOFCMNDIR)
LDFLAGS = -nostdlib
TARGET = ../libusb.a
@@ -22,7 +22,7 @@ TARGET = ../libusb.a
all: $(TARGET)
-SRCS = usb-core.c usb-ohci.c usb-ehci.c
+SRCS = usb-core.c usb-ohci.c usb-ehci.c usb-slof.c
OBJS = $(SRCS:%.c=%.o)