libusb 0.3.4 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (136) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/Gemfile +1 -0
  5. data/History.md +10 -0
  6. data/README.md +19 -6
  7. data/Rakefile +1 -1
  8. data/ext/extconf.rb +17 -1
  9. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/AUTHORS +18 -6
  10. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/COPYING +0 -0
  11. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/ChangeLog +58 -1
  12. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/INSTALL +0 -0
  13. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/Makefile.am +6 -1
  14. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/Makefile.in +248 -174
  15. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/NEWS +2 -2
  16. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/PORTING +0 -0
  17. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/README +2 -1
  18. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/TODO +0 -0
  19. data/ext/libusbx-1.0.17/Xcode/common.xcconfig +40 -0
  20. data/ext/libusbx-1.0.17/Xcode/config.h +28 -0
  21. data/ext/libusbx-1.0.17/Xcode/debug.xcconfig +29 -0
  22. data/ext/libusbx-1.0.17/Xcode/libusbx.xcconfig +21 -0
  23. data/ext/libusbx-1.0.17/Xcode/libusbx.xcodeproj/project.pbxproj +864 -0
  24. data/ext/libusbx-1.0.17/Xcode/libusbx_debug.xcconfig +21 -0
  25. data/ext/libusbx-1.0.17/Xcode/libusbx_release.xcconfig +21 -0
  26. data/ext/libusbx-1.0.17/Xcode/release.xcconfig +29 -0
  27. data/ext/libusbx-1.0.17/aclocal.m4 +1112 -0
  28. data/ext/libusbx-1.0.17/android/README +114 -0
  29. data/ext/libusbx-1.0.17/android/config.h +90 -0
  30. data/ext/libusbx-1.0.17/android/jni/Android.mk +23 -0
  31. data/ext/libusbx-1.0.17/android/jni/Application.mk +19 -0
  32. data/ext/libusbx-1.0.17/android/jni/examples.mk +134 -0
  33. data/ext/libusbx-1.0.17/android/jni/libusb.mk +54 -0
  34. data/ext/libusbx-1.0.17/android/jni/tests.mk +56 -0
  35. data/ext/libusbx-1.0.17/compile +347 -0
  36. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.guess +164 -130
  37. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.h.in +37 -1
  38. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/config.sub +174 -89
  39. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/configure +723 -302
  40. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/configure.ac +71 -20
  41. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/depcomp +345 -185
  42. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/Makefile.am +0 -0
  43. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/Makefile.in +95 -32
  44. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/doc/doxygen.cfg.in +1 -1
  45. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/Makefile.am +5 -4
  46. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/Makefile.in +208 -104
  47. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/dpfp.c +1 -1
  48. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/dpfp_threaded.c +1 -1
  49. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/ezusb.c +188 -8
  50. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/ezusb.h +18 -5
  51. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/fxload.c +90 -64
  52. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt.c +0 -0
  53. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt.h +0 -0
  54. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/getopt/getopt1.c +0 -0
  55. data/ext/libusbx-1.0.17/examples/hotplugtest.c +97 -0
  56. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/listdevs.c +12 -4
  57. data/ext/libusbx-1.0.17/examples/sam3u_benchmark.c +193 -0
  58. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/examples/xusb.c +106 -49
  59. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/install-sh +21 -14
  60. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb-1.0.pc.in +1 -1
  61. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/Makefile.am +29 -10
  62. data/ext/libusbx-1.0.17/libusb/Makefile.in +914 -0
  63. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/core.c +378 -87
  64. data/ext/libusbx-1.0.17/libusb/descriptor.c +1199 -0
  65. data/ext/libusbx-1.0.17/libusb/hotplug.c +322 -0
  66. data/ext/libusbx-1.0.17/libusb/hotplug.h +82 -0
  67. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/io.c +182 -62
  68. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb-1.0.def +32 -0
  69. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb-1.0.rc +2 -0
  70. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusb.h +481 -32
  71. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/libusbi.h +135 -38
  72. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/darwin_usb.c +591 -496
  73. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/darwin_usb.h +39 -46
  74. data/ext/libusbx-1.0.17/libusb/os/linux_netlink.c +345 -0
  75. data/ext/libusbx-1.0.17/libusb/os/linux_udev.c +306 -0
  76. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/linux_usbfs.c +653 -617
  77. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/linux_usbfs.h +32 -0
  78. data/ext/{libusbx-1.0.14/libusb/os/openbsd_usb.c → libusbx-1.0.17/libusb/os/netbsd_usb.c} +70 -63
  79. data/ext/libusbx-1.0.17/libusb/os/openbsd_usb.c +823 -0
  80. data/ext/libusbx-1.0.17/libusb/os/poll_posix.c +51 -0
  81. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_posix.h +2 -1
  82. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_windows.c +85 -106
  83. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/poll_windows.h +14 -3
  84. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_posix.c +3 -1
  85. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_posix.h +0 -0
  86. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_windows.c +6 -5
  87. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/threads_windows.h +0 -0
  88. data/ext/libusbx-1.0.17/libusb/os/wince_usb.c +1026 -0
  89. data/ext/libusbx-1.0.17/libusb/os/wince_usb.h +131 -0
  90. data/ext/libusbx-1.0.17/libusb/os/windows_common.h +108 -0
  91. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/windows_usb.c +92 -57
  92. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/os/windows_usb.h +2 -63
  93. data/ext/libusbx-1.0.17/libusb/strerror.c +184 -0
  94. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/sync.c +24 -38
  95. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/libusb/version.h +1 -1
  96. data/ext/libusbx-1.0.17/libusb/version_nano.h +1 -0
  97. data/ext/{libusbx-1.0.14 → libusbx-1.0.17}/ltmain.sh +60 -41
  98. data/ext/{libusbx-1.0.14/aclocal.m4 → libusbx-1.0.17/m4/libtool.m4} +229 -1723
  99. data/ext/libusbx-1.0.17/m4/ltoptions.m4 +384 -0
  100. data/ext/libusbx-1.0.17/m4/ltsugar.m4 +123 -0
  101. data/ext/libusbx-1.0.17/m4/ltversion.m4 +23 -0
  102. data/ext/libusbx-1.0.17/m4/lt~obsolete.m4 +98 -0
  103. data/ext/libusbx-1.0.17/missing +215 -0
  104. data/ext/libusbx-1.0.17/tests/Makefile.am +6 -0
  105. data/ext/libusbx-1.0.17/tests/Makefile.in +583 -0
  106. data/ext/libusbx-1.0.17/tests/libusbx_testlib.h +107 -0
  107. data/ext/libusbx-1.0.17/tests/stress.c +160 -0
  108. data/ext/libusbx-1.0.17/tests/testlib.c +276 -0
  109. data/lib/libusb.rb +4 -0
  110. data/lib/libusb/call.rb +43 -1
  111. data/lib/libusb/constants.rb +5 -0
  112. data/lib/libusb/context.rb +100 -0
  113. data/lib/libusb/dev_handle.rb +27 -0
  114. data/lib/libusb/device.rb +10 -4
  115. data/lib/libusb/version_gem.rb +1 -1
  116. data/test/test_libusb_capability.rb +2 -2
  117. data/test/test_libusb_compat.rb +2 -2
  118. data/test/test_libusb_compat_mass_storage.rb +2 -2
  119. data/test/test_libusb_descriptors.rb +4 -2
  120. data/test/test_libusb_event_machine.rb +2 -2
  121. data/test/test_libusb_gc.rb +2 -2
  122. data/test/test_libusb_hotplug.rb +115 -0
  123. data/test/test_libusb_iso_transfer.rb +3 -3
  124. data/test/test_libusb_mass_storage.rb +6 -16
  125. data/test/test_libusb_mass_storage2.rb +26 -3
  126. data/test/test_libusb_structs.rb +2 -2
  127. data/test/test_libusb_threads.rb +2 -2
  128. data/test/test_libusb_version.rb +2 -2
  129. metadata +127 -68
  130. metadata.gz.sig +0 -0
  131. data/ext/libusbx-1.0.14/THANKS +0 -7
  132. data/ext/libusbx-1.0.14/compile +0 -143
  133. data/ext/libusbx-1.0.14/libusb/Makefile.in +0 -721
  134. data/ext/libusbx-1.0.14/libusb/descriptor.c +0 -731
  135. data/ext/libusbx-1.0.14/libusb/version_nano.h +0 -1
  136. data/ext/libusbx-1.0.14/missing +0 -376
@@ -1,721 +0,0 @@
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: