libusb 0.2.2 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +8 -0
- data/.travis.yml +10 -0
- data/.yardopts +6 -1
- data/Gemfile +16 -0
- data/{History.txt → History.md} +28 -16
- data/README.md +144 -0
- data/Rakefile +28 -24
- data/ext/extconf.rb +33 -0
- data/ext/libusbx-1.0.14/AUTHORS +50 -0
- data/ext/libusbx-1.0.14/COPYING +504 -0
- data/ext/libusbx-1.0.14/ChangeLog +139 -0
- data/ext/libusbx-1.0.14/INSTALL +234 -0
- data/ext/libusbx-1.0.14/Makefile.am +23 -0
- data/ext/libusbx-1.0.14/Makefile.in +803 -0
- data/ext/libusbx-1.0.14/NEWS +2 -0
- data/ext/libusbx-1.0.14/PORTING +94 -0
- data/ext/libusbx-1.0.14/README +28 -0
- data/ext/libusbx-1.0.14/THANKS +7 -0
- data/ext/libusbx-1.0.14/TODO +2 -0
- data/ext/libusbx-1.0.14/aclocal.m4 +9480 -0
- data/ext/libusbx-1.0.14/compile +143 -0
- data/ext/libusbx-1.0.14/config.guess +1501 -0
- data/ext/libusbx-1.0.14/config.h.in +116 -0
- data/ext/libusbx-1.0.14/config.sub +1705 -0
- data/ext/libusbx-1.0.14/configure +14818 -0
- data/ext/libusbx-1.0.14/configure.ac +230 -0
- data/ext/libusbx-1.0.14/depcomp +630 -0
- data/ext/libusbx-1.0.14/doc/Makefile.am +9 -0
- data/ext/libusbx-1.0.14/doc/Makefile.in +380 -0
- data/ext/libusbx-1.0.14/doc/doxygen.cfg.in +1288 -0
- data/ext/libusbx-1.0.14/examples/Makefile.am +18 -0
- data/ext/libusbx-1.0.14/examples/Makefile.in +596 -0
- data/ext/libusbx-1.0.14/examples/dpfp.c +506 -0
- data/ext/libusbx-1.0.14/examples/dpfp_threaded.c +544 -0
- data/ext/libusbx-1.0.14/examples/ezusb.c +616 -0
- data/ext/libusbx-1.0.14/examples/ezusb.h +107 -0
- data/ext/libusbx-1.0.14/examples/fxload.c +261 -0
- data/ext/libusbx-1.0.14/examples/getopt/getopt.c +1060 -0
- data/ext/libusbx-1.0.14/examples/getopt/getopt.h +180 -0
- data/ext/libusbx-1.0.14/examples/getopt/getopt1.c +188 -0
- data/ext/libusbx-1.0.14/examples/listdevs.c +63 -0
- data/ext/libusbx-1.0.14/examples/xusb.c +1036 -0
- data/ext/libusbx-1.0.14/install-sh +520 -0
- data/ext/libusbx-1.0.14/libusb-1.0.pc.in +11 -0
- data/ext/libusbx-1.0.14/libusb/Makefile.am +56 -0
- data/ext/libusbx-1.0.14/libusb/Makefile.in +721 -0
- data/ext/libusbx-1.0.14/libusb/core.c +1951 -0
- data/ext/libusbx-1.0.14/libusb/descriptor.c +731 -0
- data/ext/libusbx-1.0.14/libusb/io.c +2450 -0
- data/ext/libusbx-1.0.14/libusb/libusb-1.0.def +126 -0
- data/ext/libusbx-1.0.14/libusb/libusb-1.0.rc +59 -0
- data/ext/libusbx-1.0.14/libusb/libusb.h +1506 -0
- data/ext/libusbx-1.0.14/libusb/libusbi.h +910 -0
- data/ext/libusbx-1.0.14/libusb/os/darwin_usb.c +1807 -0
- data/ext/libusbx-1.0.14/libusb/os/darwin_usb.h +169 -0
- data/ext/libusbx-1.0.14/libusb/os/linux_usbfs.c +2569 -0
- data/ext/libusbx-1.0.14/libusb/os/linux_usbfs.h +149 -0
- data/ext/libusbx-1.0.14/libusb/os/openbsd_usb.c +727 -0
- data/ext/libusbx-1.0.14/libusb/os/poll_posix.h +10 -0
- data/ext/libusbx-1.0.14/libusb/os/poll_windows.c +747 -0
- data/ext/libusbx-1.0.14/libusb/os/poll_windows.h +114 -0
- data/ext/libusbx-1.0.14/libusb/os/threads_posix.c +80 -0
- data/ext/libusbx-1.0.14/libusb/os/threads_posix.h +50 -0
- data/ext/libusbx-1.0.14/libusb/os/threads_windows.c +211 -0
- data/ext/libusbx-1.0.14/libusb/os/threads_windows.h +87 -0
- data/ext/libusbx-1.0.14/libusb/os/windows_usb.c +4369 -0
- data/ext/libusbx-1.0.14/libusb/os/windows_usb.h +979 -0
- data/ext/libusbx-1.0.14/libusb/sync.c +321 -0
- data/ext/libusbx-1.0.14/libusb/version.h +18 -0
- data/ext/libusbx-1.0.14/libusb/version_nano.h +1 -0
- data/ext/libusbx-1.0.14/ltmain.sh +9636 -0
- data/ext/libusbx-1.0.14/missing +376 -0
- data/lib/libusb.rb +2 -3
- data/lib/libusb/call.rb +49 -7
- data/lib/libusb/compat.rb +15 -9
- data/lib/libusb/configuration.rb +15 -3
- data/lib/libusb/constants.rb +19 -6
- data/lib/libusb/context.rb +181 -3
- data/lib/libusb/dev_handle.rb +91 -40
- data/lib/libusb/endpoint.rb +41 -14
- data/lib/libusb/eventmachine.rb +183 -0
- data/lib/libusb/transfer.rb +21 -8
- data/lib/libusb/version_gem.rb +19 -0
- data/lib/libusb/{version.rb → version_struct.rb} +0 -0
- data/libusb.gemspec +31 -0
- data/test/test_libusb_compat.rb +1 -1
- data/test/test_libusb_compat_mass_storage.rb +2 -2
- data/test/test_libusb_descriptors.rb +1 -1
- data/test/test_libusb_event_machine.rb +118 -0
- data/test/test_libusb_iso_transfer.rb +6 -1
- data/test/test_libusb_mass_storage.rb +9 -3
- data/test/test_libusb_mass_storage2.rb +1 -1
- data/test/test_libusb_structs.rb +45 -0
- data/test/test_libusb_threads.rb +89 -0
- data/test/test_libusb_version.rb +4 -0
- metadata +109 -44
- data/.autotest +0 -23
- data/.gemtest +0 -0
- data/Manifest.txt +0 -3
- data/README.rdoc +0 -115
- data/test/test_libusb_keyboard.rb +0 -50
@@ -0,0 +1,11 @@
|
|
1
|
+
prefix=@prefix@
|
2
|
+
exec_prefix=@exec_prefix@
|
3
|
+
libdir=@libdir@
|
4
|
+
includedir=@includedir@
|
5
|
+
|
6
|
+
Name: libusbx-1.0
|
7
|
+
Description: C API for USB device access from Linux, Mac OS X, Windows and OpenBSD/NetBSD userspace
|
8
|
+
Version: @VERSION@
|
9
|
+
Libs: -L${libdir} -lusb-1.0
|
10
|
+
Libs.private: @PC_LIBS_PRIVATE@
|
11
|
+
Cflags: -I${includedir}/libusb-1.0
|
@@ -0,0 +1,56 @@
|
|
1
|
+
all: libusb-1.0.la libusb-1.0.dll
|
2
|
+
|
3
|
+
lib_LTLIBRARIES = libusb-1.0.la
|
4
|
+
|
5
|
+
LINUX_USBFS_SRC = os/linux_usbfs.c
|
6
|
+
DARWIN_USB_SRC = os/darwin_usb.c
|
7
|
+
OPENBSD_USB_SRC = os/openbsd_usb.c
|
8
|
+
WINDOWS_USB_SRC = os/poll_windows.c os/windows_usb.c libusb-1.0.rc
|
9
|
+
|
10
|
+
EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(OPENBSD_USB_SRC) \
|
11
|
+
$(WINDOWS_USB_SRC) os/threads_posix.c os/threads_windows.c
|
12
|
+
|
13
|
+
if OS_LINUX
|
14
|
+
OS_SRC = $(LINUX_USBFS_SRC)
|
15
|
+
endif
|
16
|
+
|
17
|
+
if OS_DARWIN
|
18
|
+
OS_SRC = $(DARWIN_USB_SRC)
|
19
|
+
AM_CFLAGS_EXT = -no-cpp-precomp
|
20
|
+
endif
|
21
|
+
|
22
|
+
if OS_OPENBSD
|
23
|
+
OS_SRC = $(OPENBSD_USB_SRC)
|
24
|
+
endif
|
25
|
+
|
26
|
+
if OS_WINDOWS
|
27
|
+
OS_SRC = $(WINDOWS_USB_SRC)
|
28
|
+
|
29
|
+
.rc.lo:
|
30
|
+
$(AM_V_GEN)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --tag=RC --mode=compile $(RC) $(RCFLAGS) -i $< -o $@
|
31
|
+
|
32
|
+
libusb-1.0.rc: version.h version_nano.h
|
33
|
+
endif
|
34
|
+
|
35
|
+
libusb-1.0.dll: libusb-1.0.def
|
36
|
+
if CREATE_IMPORT_LIB
|
37
|
+
# Rebuild the import lib from the .def so that MS and MinGW DLLs can be interchanged
|
38
|
+
$(AM_V_GEN)$(DLLTOOL) $(DLLTOOLFLAGS) --kill-at --input-def $(srcdir)/libusb-1.0.def --dllname $@ --output-lib .libs/$@.a
|
39
|
+
endif
|
40
|
+
|
41
|
+
|
42
|
+
if THREADS_POSIX
|
43
|
+
THREADS_SRC = os/threads_posix.h os/threads_posix.c
|
44
|
+
else
|
45
|
+
THREADS_SRC = os/threads_windows.h os/threads_windows.c
|
46
|
+
endif
|
47
|
+
|
48
|
+
libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) $(THREAD_CFLAGS)
|
49
|
+
libusb_1_0_la_LDFLAGS = $(LTLDFLAGS)
|
50
|
+
libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) \
|
51
|
+
os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \
|
52
|
+
$(THREADS_SRC) \
|
53
|
+
os/poll_posix.h os/poll_windows.h
|
54
|
+
|
55
|
+
hdrdir = $(includedir)/libusb-1.0
|
56
|
+
hdr_HEADERS = libusb.h
|
@@ -0,0 +1,721 @@
|
|
1
|
+
# Makefile.in generated by automake 1.11.1 from Makefile.am.
|
2
|
+
# @configure_input@
|
3
|
+
|
4
|
+
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
|
5
|
+
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
|
6
|
+
# Inc.
|
7
|
+
# This Makefile.in is free software; the Free Software Foundation
|
8
|
+
# gives unlimited permission to copy and/or distribute it,
|
9
|
+
# with or without modifications, as long as this notice is preserved.
|
10
|
+
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
12
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
13
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
14
|
+
# PARTICULAR PURPOSE.
|
15
|
+
|
16
|
+
@SET_MAKE@
|
17
|
+
|
18
|
+
|
19
|
+
VPATH = @srcdir@
|
20
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
21
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
22
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
23
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
24
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
25
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
26
|
+
install_sh_PROGRAM = $(install_sh) -c
|
27
|
+
install_sh_SCRIPT = $(install_sh) -c
|
28
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
29
|
+
transform = $(program_transform_name)
|
30
|
+
NORMAL_INSTALL = :
|
31
|
+
PRE_INSTALL = :
|
32
|
+
POST_INSTALL = :
|
33
|
+
NORMAL_UNINSTALL = :
|
34
|
+
PRE_UNINSTALL = :
|
35
|
+
POST_UNINSTALL = :
|
36
|
+
build_triplet = @build@
|
37
|
+
host_triplet = @host@
|
38
|
+
subdir = libusb
|
39
|
+
DIST_COMMON = $(hdr_HEADERS) $(srcdir)/Makefile.am \
|
40
|
+
$(srcdir)/Makefile.in
|
41
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
42
|
+
am__aclocal_m4_deps = $(top_srcdir)/libusb/version.h \
|
43
|
+
$(top_srcdir)/configure.ac
|
44
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
45
|
+
$(ACLOCAL_M4)
|
46
|
+
mkinstalldirs = $(install_sh) -d
|
47
|
+
CONFIG_HEADER = $(top_builddir)/config.h
|
48
|
+
CONFIG_CLEAN_FILES =
|
49
|
+
CONFIG_CLEAN_VPATH_FILES =
|
50
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
51
|
+
am__vpath_adj = case $$p in \
|
52
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
53
|
+
*) f=$$p;; \
|
54
|
+
esac;
|
55
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
56
|
+
am__install_max = 40
|
57
|
+
am__nobase_strip_setup = \
|
58
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
59
|
+
am__nobase_strip = \
|
60
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
61
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
62
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
63
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
64
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
65
|
+
if (++n[$$2] == $(am__install_max)) \
|
66
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
67
|
+
END { for (dir in files) print dir, files[dir] }'
|
68
|
+
am__base_list = \
|
69
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
70
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
71
|
+
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(hdrdir)"
|
72
|
+
LTLIBRARIES = $(lib_LTLIBRARIES)
|
73
|
+
libusb_1_0_la_LIBADD =
|
74
|
+
am__libusb_1_0_la_SOURCES_DIST = libusbi.h core.c descriptor.c io.c \
|
75
|
+
sync.c os/darwin_usb.c os/linux_usbfs.c os/openbsd_usb.c \
|
76
|
+
os/poll_windows.c os/windows_usb.c libusb-1.0.rc \
|
77
|
+
os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \
|
78
|
+
os/threads_windows.h os/threads_windows.c os/threads_posix.h \
|
79
|
+
os/threads_posix.c os/poll_posix.h os/poll_windows.h
|
80
|
+
am__objects_1 = libusb_1_0_la-darwin_usb.lo
|
81
|
+
am__objects_2 = libusb_1_0_la-linux_usbfs.lo
|
82
|
+
am__objects_3 = libusb_1_0_la-openbsd_usb.lo
|
83
|
+
am__objects_4 = libusb_1_0_la-poll_windows.lo \
|
84
|
+
libusb_1_0_la-windows_usb.lo libusb-1.0.lo
|
85
|
+
@OS_DARWIN_FALSE@@OS_LINUX_FALSE@@OS_OPENBSD_FALSE@@OS_WINDOWS_TRUE@am__objects_5 = $(am__objects_4)
|
86
|
+
@OS_DARWIN_FALSE@@OS_LINUX_FALSE@@OS_OPENBSD_TRUE@am__objects_5 = $(am__objects_3)
|
87
|
+
@OS_DARWIN_FALSE@@OS_LINUX_TRUE@am__objects_5 = $(am__objects_2)
|
88
|
+
@OS_DARWIN_TRUE@am__objects_5 = $(am__objects_1)
|
89
|
+
@THREADS_POSIX_FALSE@am__objects_6 = libusb_1_0_la-threads_windows.lo
|
90
|
+
@THREADS_POSIX_TRUE@am__objects_6 = libusb_1_0_la-threads_posix.lo
|
91
|
+
am_libusb_1_0_la_OBJECTS = libusb_1_0_la-core.lo \
|
92
|
+
libusb_1_0_la-descriptor.lo libusb_1_0_la-io.lo \
|
93
|
+
libusb_1_0_la-sync.lo $(am__objects_5) $(am__objects_6)
|
94
|
+
libusb_1_0_la_OBJECTS = $(am_libusb_1_0_la_OBJECTS)
|
95
|
+
AM_V_lt = $(am__v_lt_$(V))
|
96
|
+
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
|
97
|
+
am__v_lt_0 = --silent
|
98
|
+
libusb_1_0_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
99
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libusb_1_0_la_CFLAGS) \
|
100
|
+
$(CFLAGS) $(libusb_1_0_la_LDFLAGS) $(LDFLAGS) -o $@
|
101
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
|
102
|
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
103
|
+
am__depfiles_maybe = depfiles
|
104
|
+
am__mv = mv -f
|
105
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
106
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
107
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
108
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
109
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
110
|
+
$(AM_CFLAGS) $(CFLAGS)
|
111
|
+
AM_V_CC = $(am__v_CC_$(V))
|
112
|
+
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
|
113
|
+
am__v_CC_0 = @echo " CC " $@;
|
114
|
+
AM_V_at = $(am__v_at_$(V))
|
115
|
+
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
|
116
|
+
am__v_at_0 = @
|
117
|
+
CCLD = $(CC)
|
118
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
119
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
120
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
121
|
+
AM_V_CCLD = $(am__v_CCLD_$(V))
|
122
|
+
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
|
123
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
124
|
+
AM_V_GEN = $(am__v_GEN_$(V))
|
125
|
+
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
|
126
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
127
|
+
SOURCES = $(libusb_1_0_la_SOURCES)
|
128
|
+
DIST_SOURCES = $(am__libusb_1_0_la_SOURCES_DIST)
|
129
|
+
HEADERS = $(hdr_HEADERS)
|
130
|
+
ETAGS = etags
|
131
|
+
CTAGS = ctags
|
132
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
133
|
+
ACLOCAL = @ACLOCAL@
|
134
|
+
AMTAR = @AMTAR@
|
135
|
+
AM_CFLAGS = @AM_CFLAGS@
|
136
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
137
|
+
AR = @AR@
|
138
|
+
AUTOCONF = @AUTOCONF@
|
139
|
+
AUTOHEADER = @AUTOHEADER@
|
140
|
+
AUTOMAKE = @AUTOMAKE@
|
141
|
+
AWK = @AWK@
|
142
|
+
CC = @CC@
|
143
|
+
CCDEPMODE = @CCDEPMODE@
|
144
|
+
CFLAGS = @CFLAGS@
|
145
|
+
CPP = @CPP@
|
146
|
+
CPPFLAGS = @CPPFLAGS@
|
147
|
+
CYGPATH_W = @CYGPATH_W@
|
148
|
+
DEFS = @DEFS@
|
149
|
+
DEPDIR = @DEPDIR@
|
150
|
+
DLLTOOL = @DLLTOOL@
|
151
|
+
DSYMUTIL = @DSYMUTIL@
|
152
|
+
DUMPBIN = @DUMPBIN@
|
153
|
+
ECHO_C = @ECHO_C@
|
154
|
+
ECHO_N = @ECHO_N@
|
155
|
+
ECHO_T = @ECHO_T@
|
156
|
+
EGREP = @EGREP@
|
157
|
+
EXEEXT = @EXEEXT@
|
158
|
+
FGREP = @FGREP@
|
159
|
+
GREP = @GREP@
|
160
|
+
INSTALL = @INSTALL@
|
161
|
+
INSTALL_DATA = @INSTALL_DATA@
|
162
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
163
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
164
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
165
|
+
LD = @LD@
|
166
|
+
LDFLAGS = @LDFLAGS@
|
167
|
+
LIBOBJS = @LIBOBJS@
|
168
|
+
LIBS = @LIBS@
|
169
|
+
LIBTOOL = @LIBTOOL@
|
170
|
+
LIPO = @LIPO@
|
171
|
+
LN_S = @LN_S@
|
172
|
+
LTLDFLAGS = @LTLDFLAGS@
|
173
|
+
LTLIBOBJS = @LTLIBOBJS@
|
174
|
+
MAINT = @MAINT@
|
175
|
+
MAKEINFO = @MAKEINFO@
|
176
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
177
|
+
MKDIR_P = @MKDIR_P@
|
178
|
+
NM = @NM@
|
179
|
+
NMEDIT = @NMEDIT@
|
180
|
+
OBJDUMP = @OBJDUMP@
|
181
|
+
OBJEXT = @OBJEXT@
|
182
|
+
OS_DARWIN = @OS_DARWIN@
|
183
|
+
OS_LINUX = @OS_LINUX@
|
184
|
+
OS_OPENBSD = @OS_OPENBSD@
|
185
|
+
OS_WINDOWS = @OS_WINDOWS@
|
186
|
+
OTOOL = @OTOOL@
|
187
|
+
OTOOL64 = @OTOOL64@
|
188
|
+
PACKAGE = @PACKAGE@
|
189
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
190
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
191
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
192
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
193
|
+
PACKAGE_URL = @PACKAGE_URL@
|
194
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
195
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
196
|
+
PC_LIBS_PRIVATE = @PC_LIBS_PRIVATE@
|
197
|
+
RANLIB = @RANLIB@
|
198
|
+
RC = @RC@
|
199
|
+
SED = @SED@
|
200
|
+
SET_MAKE = @SET_MAKE@
|
201
|
+
SHELL = @SHELL@
|
202
|
+
STRIP = @STRIP@
|
203
|
+
THREAD_CFLAGS = @THREAD_CFLAGS@
|
204
|
+
VERSION = @VERSION@
|
205
|
+
VISIBILITY_CFLAGS = @VISIBILITY_CFLAGS@
|
206
|
+
abs_builddir = @abs_builddir@
|
207
|
+
abs_srcdir = @abs_srcdir@
|
208
|
+
abs_top_builddir = @abs_top_builddir@
|
209
|
+
abs_top_srcdir = @abs_top_srcdir@
|
210
|
+
ac_ct_AR = @ac_ct_AR@
|
211
|
+
ac_ct_CC = @ac_ct_CC@
|
212
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
213
|
+
am__include = @am__include@
|
214
|
+
am__leading_dot = @am__leading_dot@
|
215
|
+
am__quote = @am__quote@
|
216
|
+
am__tar = @am__tar@
|
217
|
+
am__untar = @am__untar@
|
218
|
+
bindir = @bindir@
|
219
|
+
build = @build@
|
220
|
+
build_alias = @build_alias@
|
221
|
+
build_cpu = @build_cpu@
|
222
|
+
build_os = @build_os@
|
223
|
+
build_vendor = @build_vendor@
|
224
|
+
builddir = @builddir@
|
225
|
+
datadir = @datadir@
|
226
|
+
datarootdir = @datarootdir@
|
227
|
+
docdir = @docdir@
|
228
|
+
dvidir = @dvidir@
|
229
|
+
exec_prefix = @exec_prefix@
|
230
|
+
host = @host@
|
231
|
+
host_alias = @host_alias@
|
232
|
+
host_cpu = @host_cpu@
|
233
|
+
host_os = @host_os@
|
234
|
+
host_vendor = @host_vendor@
|
235
|
+
htmldir = @htmldir@
|
236
|
+
includedir = @includedir@
|
237
|
+
infodir = @infodir@
|
238
|
+
install_sh = @install_sh@
|
239
|
+
libdir = @libdir@
|
240
|
+
libexecdir = @libexecdir@
|
241
|
+
localedir = @localedir@
|
242
|
+
localstatedir = @localstatedir@
|
243
|
+
mandir = @mandir@
|
244
|
+
mkdir_p = @mkdir_p@
|
245
|
+
oldincludedir = @oldincludedir@
|
246
|
+
pdfdir = @pdfdir@
|
247
|
+
prefix = @prefix@
|
248
|
+
program_transform_name = @program_transform_name@
|
249
|
+
psdir = @psdir@
|
250
|
+
sbindir = @sbindir@
|
251
|
+
sharedstatedir = @sharedstatedir@
|
252
|
+
srcdir = @srcdir@
|
253
|
+
sysconfdir = @sysconfdir@
|
254
|
+
target_alias = @target_alias@
|
255
|
+
top_build_prefix = @top_build_prefix@
|
256
|
+
top_builddir = @top_builddir@
|
257
|
+
top_srcdir = @top_srcdir@
|
258
|
+
lib_LTLIBRARIES = libusb-1.0.la
|
259
|
+
LINUX_USBFS_SRC = os/linux_usbfs.c
|
260
|
+
DARWIN_USB_SRC = os/darwin_usb.c
|
261
|
+
OPENBSD_USB_SRC = os/openbsd_usb.c
|
262
|
+
WINDOWS_USB_SRC = os/poll_windows.c os/windows_usb.c libusb-1.0.rc
|
263
|
+
EXTRA_DIST = $(LINUX_USBFS_SRC) $(DARWIN_USB_SRC) $(OPENBSD_USB_SRC) \
|
264
|
+
$(WINDOWS_USB_SRC) os/threads_posix.c os/threads_windows.c
|
265
|
+
|
266
|
+
@OS_DARWIN_TRUE@OS_SRC = $(DARWIN_USB_SRC)
|
267
|
+
@OS_LINUX_TRUE@OS_SRC = $(LINUX_USBFS_SRC)
|
268
|
+
@OS_OPENBSD_TRUE@OS_SRC = $(OPENBSD_USB_SRC)
|
269
|
+
@OS_WINDOWS_TRUE@OS_SRC = $(WINDOWS_USB_SRC)
|
270
|
+
@OS_DARWIN_TRUE@AM_CFLAGS_EXT = -no-cpp-precomp
|
271
|
+
@THREADS_POSIX_FALSE@THREADS_SRC = os/threads_windows.h os/threads_windows.c
|
272
|
+
@THREADS_POSIX_TRUE@THREADS_SRC = os/threads_posix.h os/threads_posix.c
|
273
|
+
libusb_1_0_la_CFLAGS = $(VISIBILITY_CFLAGS) $(AM_CFLAGS) $(THREAD_CFLAGS)
|
274
|
+
libusb_1_0_la_LDFLAGS = $(LTLDFLAGS)
|
275
|
+
libusb_1_0_la_SOURCES = libusbi.h core.c descriptor.c io.c sync.c $(OS_SRC) \
|
276
|
+
os/linux_usbfs.h os/darwin_usb.h os/windows_usb.h \
|
277
|
+
$(THREADS_SRC) \
|
278
|
+
os/poll_posix.h os/poll_windows.h
|
279
|
+
|
280
|
+
hdrdir = $(includedir)/libusb-1.0
|
281
|
+
hdr_HEADERS = libusb.h
|
282
|
+
all: all-am
|
283
|
+
|
284
|
+
.SUFFIXES:
|
285
|
+
.SUFFIXES: .c .lo .o .obj .rc
|
286
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
287
|
+
@for dep in $?; do \
|
288
|
+
case '$(am__configure_deps)' in \
|
289
|
+
*$$dep*) \
|
290
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
291
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
292
|
+
exit 1;; \
|
293
|
+
esac; \
|
294
|
+
done; \
|
295
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu libusb/Makefile'; \
|
296
|
+
$(am__cd) $(top_srcdir) && \
|
297
|
+
$(AUTOMAKE) --gnu libusb/Makefile
|
298
|
+
.PRECIOUS: Makefile
|
299
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
300
|
+
@case '$?' in \
|
301
|
+
*config.status*) \
|
302
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
303
|
+
*) \
|
304
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
305
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
306
|
+
esac;
|
307
|
+
|
308
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
309
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
310
|
+
|
311
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
312
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
313
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
314
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
315
|
+
$(am__aclocal_m4_deps):
|
316
|
+
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
317
|
+
@$(NORMAL_INSTALL)
|
318
|
+
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
|
319
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
320
|
+
list2=; for p in $$list; do \
|
321
|
+
if test -f $$p; then \
|
322
|
+
list2="$$list2 $$p"; \
|
323
|
+
else :; fi; \
|
324
|
+
done; \
|
325
|
+
test -z "$$list2" || { \
|
326
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
327
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
328
|
+
}
|
329
|
+
|
330
|
+
uninstall-libLTLIBRARIES:
|
331
|
+
@$(NORMAL_UNINSTALL)
|
332
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
333
|
+
for p in $$list; do \
|
334
|
+
$(am__strip_dir) \
|
335
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
336
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
337
|
+
done
|
338
|
+
|
339
|
+
clean-libLTLIBRARIES:
|
340
|
+
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
341
|
+
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
|
342
|
+
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
343
|
+
test "$$dir" != "$$p" || dir=.; \
|
344
|
+
echo "rm -f \"$${dir}/so_locations\""; \
|
345
|
+
rm -f "$${dir}/so_locations"; \
|
346
|
+
done
|
347
|
+
libusb-1.0.la: $(libusb_1_0_la_OBJECTS) $(libusb_1_0_la_DEPENDENCIES)
|
348
|
+
$(AM_V_CCLD)$(libusb_1_0_la_LINK) -rpath $(libdir) $(libusb_1_0_la_OBJECTS) $(libusb_1_0_la_LIBADD) $(LIBS)
|
349
|
+
|
350
|
+
mostlyclean-compile:
|
351
|
+
-rm -f *.$(OBJEXT)
|
352
|
+
|
353
|
+
distclean-compile:
|
354
|
+
-rm -f *.tab.c
|
355
|
+
|
356
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-core.Plo@am__quote@
|
357
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-darwin_usb.Plo@am__quote@
|
358
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-descriptor.Plo@am__quote@
|
359
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-io.Plo@am__quote@
|
360
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-linux_usbfs.Plo@am__quote@
|
361
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-openbsd_usb.Plo@am__quote@
|
362
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-poll_windows.Plo@am__quote@
|
363
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-sync.Plo@am__quote@
|
364
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-threads_posix.Plo@am__quote@
|
365
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-threads_windows.Plo@am__quote@
|
366
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libusb_1_0_la-windows_usb.Plo@am__quote@
|
367
|
+
|
368
|
+
.c.o:
|
369
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
370
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
371
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
372
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
373
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
374
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
|
375
|
+
|
376
|
+
.c.obj:
|
377
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
378
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
379
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
380
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
381
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
382
|
+
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
|
383
|
+
|
384
|
+
.c.lo:
|
385
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
386
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
387
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
388
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
389
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
390
|
+
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
391
|
+
|
392
|
+
libusb_1_0_la-core.lo: core.c
|
393
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-core.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-core.Tpo -c -o libusb_1_0_la-core.lo `test -f 'core.c' || echo '$(srcdir)/'`core.c
|
394
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-core.Tpo $(DEPDIR)/libusb_1_0_la-core.Plo
|
395
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
396
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='core.c' object='libusb_1_0_la-core.lo' libtool=yes @AMDEPBACKSLASH@
|
397
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
398
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-core.lo `test -f 'core.c' || echo '$(srcdir)/'`core.c
|
399
|
+
|
400
|
+
libusb_1_0_la-descriptor.lo: descriptor.c
|
401
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-descriptor.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-descriptor.Tpo -c -o libusb_1_0_la-descriptor.lo `test -f 'descriptor.c' || echo '$(srcdir)/'`descriptor.c
|
402
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-descriptor.Tpo $(DEPDIR)/libusb_1_0_la-descriptor.Plo
|
403
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
404
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='descriptor.c' object='libusb_1_0_la-descriptor.lo' libtool=yes @AMDEPBACKSLASH@
|
405
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
406
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-descriptor.lo `test -f 'descriptor.c' || echo '$(srcdir)/'`descriptor.c
|
407
|
+
|
408
|
+
libusb_1_0_la-io.lo: io.c
|
409
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-io.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-io.Tpo -c -o libusb_1_0_la-io.lo `test -f 'io.c' || echo '$(srcdir)/'`io.c
|
410
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-io.Tpo $(DEPDIR)/libusb_1_0_la-io.Plo
|
411
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
412
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='io.c' object='libusb_1_0_la-io.lo' libtool=yes @AMDEPBACKSLASH@
|
413
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
414
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-io.lo `test -f 'io.c' || echo '$(srcdir)/'`io.c
|
415
|
+
|
416
|
+
libusb_1_0_la-sync.lo: sync.c
|
417
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-sync.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-sync.Tpo -c -o libusb_1_0_la-sync.lo `test -f 'sync.c' || echo '$(srcdir)/'`sync.c
|
418
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-sync.Tpo $(DEPDIR)/libusb_1_0_la-sync.Plo
|
419
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
420
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sync.c' object='libusb_1_0_la-sync.lo' libtool=yes @AMDEPBACKSLASH@
|
421
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
422
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-sync.lo `test -f 'sync.c' || echo '$(srcdir)/'`sync.c
|
423
|
+
|
424
|
+
libusb_1_0_la-darwin_usb.lo: os/darwin_usb.c
|
425
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-darwin_usb.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-darwin_usb.Tpo -c -o libusb_1_0_la-darwin_usb.lo `test -f 'os/darwin_usb.c' || echo '$(srcdir)/'`os/darwin_usb.c
|
426
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-darwin_usb.Tpo $(DEPDIR)/libusb_1_0_la-darwin_usb.Plo
|
427
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
428
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/darwin_usb.c' object='libusb_1_0_la-darwin_usb.lo' libtool=yes @AMDEPBACKSLASH@
|
429
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
430
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-darwin_usb.lo `test -f 'os/darwin_usb.c' || echo '$(srcdir)/'`os/darwin_usb.c
|
431
|
+
|
432
|
+
libusb_1_0_la-linux_usbfs.lo: os/linux_usbfs.c
|
433
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-linux_usbfs.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-linux_usbfs.Tpo -c -o libusb_1_0_la-linux_usbfs.lo `test -f 'os/linux_usbfs.c' || echo '$(srcdir)/'`os/linux_usbfs.c
|
434
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-linux_usbfs.Tpo $(DEPDIR)/libusb_1_0_la-linux_usbfs.Plo
|
435
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
436
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/linux_usbfs.c' object='libusb_1_0_la-linux_usbfs.lo' libtool=yes @AMDEPBACKSLASH@
|
437
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
438
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-linux_usbfs.lo `test -f 'os/linux_usbfs.c' || echo '$(srcdir)/'`os/linux_usbfs.c
|
439
|
+
|
440
|
+
libusb_1_0_la-openbsd_usb.lo: os/openbsd_usb.c
|
441
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-openbsd_usb.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-openbsd_usb.Tpo -c -o libusb_1_0_la-openbsd_usb.lo `test -f 'os/openbsd_usb.c' || echo '$(srcdir)/'`os/openbsd_usb.c
|
442
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-openbsd_usb.Tpo $(DEPDIR)/libusb_1_0_la-openbsd_usb.Plo
|
443
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
444
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/openbsd_usb.c' object='libusb_1_0_la-openbsd_usb.lo' libtool=yes @AMDEPBACKSLASH@
|
445
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
446
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-openbsd_usb.lo `test -f 'os/openbsd_usb.c' || echo '$(srcdir)/'`os/openbsd_usb.c
|
447
|
+
|
448
|
+
libusb_1_0_la-poll_windows.lo: os/poll_windows.c
|
449
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-poll_windows.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-poll_windows.Tpo -c -o libusb_1_0_la-poll_windows.lo `test -f 'os/poll_windows.c' || echo '$(srcdir)/'`os/poll_windows.c
|
450
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-poll_windows.Tpo $(DEPDIR)/libusb_1_0_la-poll_windows.Plo
|
451
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
452
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/poll_windows.c' object='libusb_1_0_la-poll_windows.lo' libtool=yes @AMDEPBACKSLASH@
|
453
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
454
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-poll_windows.lo `test -f 'os/poll_windows.c' || echo '$(srcdir)/'`os/poll_windows.c
|
455
|
+
|
456
|
+
libusb_1_0_la-windows_usb.lo: os/windows_usb.c
|
457
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-windows_usb.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-windows_usb.Tpo -c -o libusb_1_0_la-windows_usb.lo `test -f 'os/windows_usb.c' || echo '$(srcdir)/'`os/windows_usb.c
|
458
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-windows_usb.Tpo $(DEPDIR)/libusb_1_0_la-windows_usb.Plo
|
459
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
460
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/windows_usb.c' object='libusb_1_0_la-windows_usb.lo' libtool=yes @AMDEPBACKSLASH@
|
461
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
462
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-windows_usb.lo `test -f 'os/windows_usb.c' || echo '$(srcdir)/'`os/windows_usb.c
|
463
|
+
|
464
|
+
libusb_1_0_la-threads_windows.lo: os/threads_windows.c
|
465
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-threads_windows.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-threads_windows.Tpo -c -o libusb_1_0_la-threads_windows.lo `test -f 'os/threads_windows.c' || echo '$(srcdir)/'`os/threads_windows.c
|
466
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-threads_windows.Tpo $(DEPDIR)/libusb_1_0_la-threads_windows.Plo
|
467
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
468
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/threads_windows.c' object='libusb_1_0_la-threads_windows.lo' libtool=yes @AMDEPBACKSLASH@
|
469
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
470
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-threads_windows.lo `test -f 'os/threads_windows.c' || echo '$(srcdir)/'`os/threads_windows.c
|
471
|
+
|
472
|
+
libusb_1_0_la-threads_posix.lo: os/threads_posix.c
|
473
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -MT libusb_1_0_la-threads_posix.lo -MD -MP -MF $(DEPDIR)/libusb_1_0_la-threads_posix.Tpo -c -o libusb_1_0_la-threads_posix.lo `test -f 'os/threads_posix.c' || echo '$(srcdir)/'`os/threads_posix.c
|
474
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libusb_1_0_la-threads_posix.Tpo $(DEPDIR)/libusb_1_0_la-threads_posix.Plo
|
475
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
|
476
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='os/threads_posix.c' object='libusb_1_0_la-threads_posix.lo' libtool=yes @AMDEPBACKSLASH@
|
477
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
478
|
+
@am__fastdepCC_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libusb_1_0_la_CFLAGS) $(CFLAGS) -c -o libusb_1_0_la-threads_posix.lo `test -f 'os/threads_posix.c' || echo '$(srcdir)/'`os/threads_posix.c
|
479
|
+
|
480
|
+
mostlyclean-libtool:
|
481
|
+
-rm -f *.lo
|
482
|
+
|
483
|
+
clean-libtool:
|
484
|
+
-rm -rf .libs _libs
|
485
|
+
install-hdrHEADERS: $(hdr_HEADERS)
|
486
|
+
@$(NORMAL_INSTALL)
|
487
|
+
test -z "$(hdrdir)" || $(MKDIR_P) "$(DESTDIR)$(hdrdir)"
|
488
|
+
@list='$(hdr_HEADERS)'; test -n "$(hdrdir)" || list=; \
|
489
|
+
for p in $$list; do \
|
490
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
491
|
+
echo "$$d$$p"; \
|
492
|
+
done | $(am__base_list) | \
|
493
|
+
while read files; do \
|
494
|
+
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(hdrdir)'"; \
|
495
|
+
$(INSTALL_HEADER) $$files "$(DESTDIR)$(hdrdir)" || exit $$?; \
|
496
|
+
done
|
497
|
+
|
498
|
+
uninstall-hdrHEADERS:
|
499
|
+
@$(NORMAL_UNINSTALL)
|
500
|
+
@list='$(hdr_HEADERS)'; test -n "$(hdrdir)" || list=; \
|
501
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
502
|
+
test -n "$$files" || exit 0; \
|
503
|
+
echo " ( cd '$(DESTDIR)$(hdrdir)' && rm -f" $$files ")"; \
|
504
|
+
cd "$(DESTDIR)$(hdrdir)" && rm -f $$files
|
505
|
+
|
506
|
+
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
|
507
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
508
|
+
unique=`for i in $$list; do \
|
509
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
510
|
+
done | \
|
511
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
512
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
513
|
+
mkid -fID $$unique
|
514
|
+
tags: TAGS
|
515
|
+
|
516
|
+
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
517
|
+
$(TAGS_FILES) $(LISP)
|
518
|
+
set x; \
|
519
|
+
here=`pwd`; \
|
520
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
521
|
+
unique=`for i in $$list; do \
|
522
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
523
|
+
done | \
|
524
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
525
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
526
|
+
shift; \
|
527
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
528
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
529
|
+
if test $$# -gt 0; then \
|
530
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
531
|
+
"$$@" $$unique; \
|
532
|
+
else \
|
533
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
534
|
+
$$unique; \
|
535
|
+
fi; \
|
536
|
+
fi
|
537
|
+
ctags: CTAGS
|
538
|
+
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
|
539
|
+
$(TAGS_FILES) $(LISP)
|
540
|
+
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
541
|
+
unique=`for i in $$list; do \
|
542
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
543
|
+
done | \
|
544
|
+
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
545
|
+
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
546
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
547
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
548
|
+
$$unique
|
549
|
+
|
550
|
+
GTAGS:
|
551
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
552
|
+
&& $(am__cd) $(top_srcdir) \
|
553
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
554
|
+
|
555
|
+
distclean-tags:
|
556
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
557
|
+
|
558
|
+
distdir: $(DISTFILES)
|
559
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
560
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
561
|
+
list='$(DISTFILES)'; \
|
562
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
563
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
564
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
565
|
+
case $$dist_files in \
|
566
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
567
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
568
|
+
sort -u` ;; \
|
569
|
+
esac; \
|
570
|
+
for file in $$dist_files; do \
|
571
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
572
|
+
if test -d $$d/$$file; then \
|
573
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
574
|
+
if test -d "$(distdir)/$$file"; then \
|
575
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
576
|
+
fi; \
|
577
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
578
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
579
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
580
|
+
fi; \
|
581
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
582
|
+
else \
|
583
|
+
test -f "$(distdir)/$$file" \
|
584
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
585
|
+
|| exit 1; \
|
586
|
+
fi; \
|
587
|
+
done
|
588
|
+
check-am: all-am
|
589
|
+
check: check-am
|
590
|
+
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
|
591
|
+
installdirs:
|
592
|
+
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(hdrdir)"; do \
|
593
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
594
|
+
done
|
595
|
+
install: install-am
|
596
|
+
install-exec: install-exec-am
|
597
|
+
install-data: install-data-am
|
598
|
+
uninstall: uninstall-am
|
599
|
+
|
600
|
+
install-am: all-am
|
601
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
602
|
+
|
603
|
+
installcheck: installcheck-am
|
604
|
+
install-strip:
|
605
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
606
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
607
|
+
`test -z '$(STRIP)' || \
|
608
|
+
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
|
609
|
+
mostlyclean-generic:
|
610
|
+
|
611
|
+
clean-generic:
|
612
|
+
|
613
|
+
distclean-generic:
|
614
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
615
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
616
|
+
|
617
|
+
maintainer-clean-generic:
|
618
|
+
@echo "This command is intended for maintainers to use"
|
619
|
+
@echo "it deletes files that may require special tools to rebuild."
|
620
|
+
clean: clean-am
|
621
|
+
|
622
|
+
clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
|
623
|
+
mostlyclean-am
|
624
|
+
|
625
|
+
distclean: distclean-am
|
626
|
+
-rm -rf ./$(DEPDIR)
|
627
|
+
-rm -f Makefile
|
628
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
629
|
+
distclean-tags
|
630
|
+
|
631
|
+
dvi: dvi-am
|
632
|
+
|
633
|
+
dvi-am:
|
634
|
+
|
635
|
+
html: html-am
|
636
|
+
|
637
|
+
html-am:
|
638
|
+
|
639
|
+
info: info-am
|
640
|
+
|
641
|
+
info-am:
|
642
|
+
|
643
|
+
install-data-am: install-hdrHEADERS
|
644
|
+
|
645
|
+
install-dvi: install-dvi-am
|
646
|
+
|
647
|
+
install-dvi-am:
|
648
|
+
|
649
|
+
install-exec-am: install-libLTLIBRARIES
|
650
|
+
|
651
|
+
install-html: install-html-am
|
652
|
+
|
653
|
+
install-html-am:
|
654
|
+
|
655
|
+
install-info: install-info-am
|
656
|
+
|
657
|
+
install-info-am:
|
658
|
+
|
659
|
+
install-man:
|
660
|
+
|
661
|
+
install-pdf: install-pdf-am
|
662
|
+
|
663
|
+
install-pdf-am:
|
664
|
+
|
665
|
+
install-ps: install-ps-am
|
666
|
+
|
667
|
+
install-ps-am:
|
668
|
+
|
669
|
+
installcheck-am:
|
670
|
+
|
671
|
+
maintainer-clean: maintainer-clean-am
|
672
|
+
-rm -rf ./$(DEPDIR)
|
673
|
+
-rm -f Makefile
|
674
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
675
|
+
|
676
|
+
mostlyclean: mostlyclean-am
|
677
|
+
|
678
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
679
|
+
mostlyclean-libtool
|
680
|
+
|
681
|
+
pdf: pdf-am
|
682
|
+
|
683
|
+
pdf-am:
|
684
|
+
|
685
|
+
ps: ps-am
|
686
|
+
|
687
|
+
ps-am:
|
688
|
+
|
689
|
+
uninstall-am: uninstall-hdrHEADERS uninstall-libLTLIBRARIES
|
690
|
+
|
691
|
+
.MAKE: install-am install-strip
|
692
|
+
|
693
|
+
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
|
694
|
+
clean-libLTLIBRARIES clean-libtool ctags distclean \
|
695
|
+
distclean-compile distclean-generic distclean-libtool \
|
696
|
+
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
697
|
+
install install-am install-data install-data-am install-dvi \
|
698
|
+
install-dvi-am install-exec install-exec-am install-hdrHEADERS \
|
699
|
+
install-html install-html-am install-info install-info-am \
|
700
|
+
install-libLTLIBRARIES install-man install-pdf install-pdf-am \
|
701
|
+
install-ps install-ps-am install-strip installcheck \
|
702
|
+
installcheck-am installdirs maintainer-clean \
|
703
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
704
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
705
|
+
tags uninstall uninstall-am uninstall-hdrHEADERS \
|
706
|
+
uninstall-libLTLIBRARIES
|
707
|
+
|
708
|
+
all: libusb-1.0.la libusb-1.0.dll
|
709
|
+
|
710
|
+
@OS_WINDOWS_TRUE@.rc.lo:
|
711
|
+
@OS_WINDOWS_TRUE@ $(AM_V_GEN)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --tag=RC --mode=compile $(RC) $(RCFLAGS) -i $< -o $@
|
712
|
+
|
713
|
+
@OS_WINDOWS_TRUE@libusb-1.0.rc: version.h version_nano.h
|
714
|
+
|
715
|
+
libusb-1.0.dll: libusb-1.0.def
|
716
|
+
# Rebuild the import lib from the .def so that MS and MinGW DLLs can be interchanged
|
717
|
+
@CREATE_IMPORT_LIB_TRUE@ $(AM_V_GEN)$(DLLTOOL) $(DLLTOOLFLAGS) --kill-at --input-def $(srcdir)/libusb-1.0.def --dllname $@ --output-lib .libs/$@.a
|
718
|
+
|
719
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
720
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
721
|
+
.NOEXPORT:
|