Merge pull request #473 from Montellese/onplaybackspeedchanged
[vuplus_xbmc] / xbmc / peripherals / bus / Makefile.in
1 SRCS=PeripheralBus.cpp
2
3 ifeq (@USE_LIBUDEV@,1)
4 SRCS+=linux/PeripheralBusUSBLibUdev.cpp
5 endif
6
7 ifeq (@USE_LIBUSB@,1)
8 SRCS+=linux/PeripheralBusUSBLibUSB.cpp
9 endif
10
11 ifeq ($(findstring osx,@ARCH@),osx)
12 SRCS+=osx/PeripheralBusUSB.cpp
13 endif
14
15 LIB=peripheral-bus.a
16
17 include ../../../Makefile.include
18 -include $(patsubst %.cpp,%.P,$(patsubst %.c,%.P,$(SRCS)))