diff options
author | Pete Batard <pbatard@gmail.com> | 2010-01-14 14:09:46 +0000 |
---|---|---|
committer | Pete Batard <pbatard@gmail.com> | 2010-01-14 14:09:46 +0000 |
commit | e6ef1694db0c4e54d22c08e5824e979e3a71471b (patch) | |
tree | 03980698f8aba9640d56ea1015b9c076a62542b9 /libusb | |
parent | 995c7df391d6011e624006bfbb610ace18f9488f (diff) | |
download | libusb-e6ef1694db0c4e54d22c08e5824e979e3a71471b.tar.gz |
r73: moved -pthread option to CFLAGS for platforms that need it
Diffstat (limited to 'libusb')
-rw-r--r-- | libusb/Makefile.am | 52 |
1 files changed, 26 insertions, 26 deletions
diff --git a/libusb/Makefile.am b/libusb/Makefile.am index cf777bc..3bdce4b 100644 --- a/libusb/Makefile.am +++ b/libusb/Makefile.am @@ -1,26 +1,26 @@ -lib_LTLIBRARIES = libusb-1.0.la - -LINUX_USBFS_SRC = os/linux_usbfs.h os/linux_usbfs.c -DARWIN_USB_SRC = os/darwin_usb.h os/darwin_usb.c -WINDOWS_USB_SRC = os/windows_usb.h os/windows_usb.c os/windows_compat.h os/windows_compat.c - -EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(WINDOWS_USB_SRC) - -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) -endif - -libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) -pthread -libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) - -hdrdir = $(includedir)/libusb-1.0 -hdr_HEADERS = libusb.h +lib_LTLIBRARIES = libusb-1.0.la
+
+LINUX_USBFS_SRC = os/linux_usbfs.h os/linux_usbfs.c
+DARWIN_USB_SRC = os/darwin_usb.h os/darwin_usb.c
+WINDOWS_USB_SRC = os/windows_usb.h os/windows_usb.c os/windows_compat.h os/windows_compat.c
+
+EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(WINDOWS_USB_SRC)
+
+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)
+endif
+
+libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS)
+libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC)
+
+hdrdir = $(includedir)/libusb-1.0
+hdr_HEADERS = libusb.h
|