| OLD | NEW |
| 1 lib_LTLIBRARIES = libusb-1.0.la | 1 lib_LTLIBRARIES = libusb-1.0.la |
| 2 | 2 |
| 3 LINUX_USBFS_SRC = os/linux_usbfs.c | 3 LINUX_USBFS_SRC = os/linux_usbfs.c |
| 4 DARWIN_USB_SRC = os/darwin_usb.c | 4 DARWIN_USB_SRC = os/darwin_usb.c |
| 5 WINDOWS_USB_SRC = os/poll_windows.c os/windows_usb.c libusb-1.0.rc | 5 WINDOWS_USB_SRC = os/poll_windows.c os/windows_usb.c libusb-1.0.rc |
| 6 | 6 |
| 7 EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(WINDOWS_USB_SRC) \ | 7 EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(WINDOWS_USB_SRC) \ |
| 8 os/threads_posix.c os/threads_windows.c | 8 os/threads_posix.c os/threads_windows.c |
| 9 | 9 |
| 10 if OS_LINUX | 10 if OS_LINUX |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) $(THREAD_CFLAGS) | 32 libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) $(THREAD_CFLAGS) |
| 33 libusb_1_0_la_LDFLAGS = $(LTLDFLAGS) | 33 libusb_1_0_la_LDFLAGS = $(LTLDFLAGS) |
| 34 libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) \ | 34 libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) \ |
| 35 os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \ | 35 os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \ |
| 36 $(THREADS_SRC) \ | 36 $(THREADS_SRC) \ |
| 37 os/poll_posix.h os/poll_windows.h | 37 os/poll_posix.h os/poll_windows.h |
| 38 | 38 |
| 39 hdrdir = $(includedir)/libusb-1.0 | 39 hdrdir = $(includedir)/libusb-1.0 |
| 40 hdr_HEADERS = libusb.h | 40 hdr_HEADERS = libusb.h |
| OLD | NEW |