mirror of
https://github.com/RPCS3/libusb.git
synced 2026-07-21 16:45:23 -04:00
00d3fa801e
* also switched to using POLL_NFDS_TYPE in windows_usb.c
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
all: libusb-1.0.la
|
|
if CREATE_IMPORT_LIB
|
|
# Rebuild the import lib from the .def so that MS and MinGW DLLs can be interchanged
|
|
$(DLLTOOL) $(DLLTOOLFLAGS) --kill-at --input-def $(srcdir)/libusb-1.0.def --dllname libusb-1.0.dll --output-lib .libs/libusb-1.0.dll.a
|
|
endif
|
|
|
|
lib_LTLIBRARIES = libusb-1.0.la
|
|
|
|
LINUX_USBFS_SRC = os/linux_usbfs.c
|
|
DARWIN_USB_SRC = os/darwin_usb.c
|
|
WINDOWS_USB_SRC = os/poll_windows.c os/windows_usb.c libusb-1.0.rc
|
|
|
|
EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(WINDOWS_USB_SRC) \
|
|
os/threads_windows.c
|
|
|
|
if OS_LINUX
|
|
OS_SRC = $(LINUX_USBFS_SRC)
|
|
endif
|
|
|
|
if OS_DARWIN
|
|
OS_SRC = $(DARWIN_USB_SRC)
|
|
AM_CFLAGS_EXT = -no-cpp-precomp
|
|
endif
|
|
|
|
if OS_WINDOWS
|
|
OS_SRC = $(WINDOWS_USB_SRC)
|
|
|
|
if !THREADS_POSIX
|
|
OS_SRC += os/threads_windows.c
|
|
endif
|
|
|
|
.rc.lo:
|
|
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(RC) $(RCFLAGS) -I. -i $< -o $@
|
|
endif
|
|
|
|
libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) $(THREAD_CFLAGS)
|
|
libusb_1_0_la_LDFLAGS = $(LTLDFLAGS)
|
|
libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) \
|
|
os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \
|
|
os/threads_posix.h os/threads_windows.h \
|
|
os/poll_posix.h os/poll_windows.h
|
|
|
|
hdrdir = $(includedir)/libusb-1.0
|
|
hdr_HEADERS = libusb.h
|