seal 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (421) hide show
  1. data/.yardopts +1 -0
  2. data/LICENSE +13 -0
  3. data/README.md +265 -0
  4. data/ext/seal/extconf.rb +45 -0
  5. data/include/al/al.h +724 -0
  6. data/include/al/alc.h +277 -0
  7. data/include/al/efx-presets.h +402 -0
  8. data/include/al/efx.h +758 -0
  9. data/include/mpg123/mpg123.h +1034 -0
  10. data/include/ogg/config_types.h +25 -0
  11. data/include/ogg/ogg.h +210 -0
  12. data/include/ogg/os_types.h +147 -0
  13. data/include/seal.h +23 -0
  14. data/include/seal/buf.h +143 -0
  15. data/include/seal/core.h +95 -0
  16. data/include/seal/efs.h +112 -0
  17. data/include/seal/err.h +93 -0
  18. data/include/seal/fmt.h +58 -0
  19. data/include/seal/listener.h +103 -0
  20. data/include/seal/raw.h +86 -0
  21. data/include/seal/rvb.h +520 -0
  22. data/include/seal/src.h +413 -0
  23. data/include/seal/stream.h +81 -0
  24. data/include/vorbis/codec.h +243 -0
  25. data/include/vorbis/vorbisfile.h +206 -0
  26. data/mpg123/AUTHORS +150 -0
  27. data/mpg123/COPYING +773 -0
  28. data/mpg123/ChangeLog +3 -0
  29. data/mpg123/INSTALL +111 -0
  30. data/mpg123/Makefile.am +99 -0
  31. data/mpg123/Makefile.in +1043 -0
  32. data/mpg123/NEWS +1200 -0
  33. data/mpg123/NEWS.libmpg123 +133 -0
  34. data/mpg123/README +203 -0
  35. data/mpg123/TODO +38 -0
  36. data/mpg123/aclocal.m4 +1168 -0
  37. data/mpg123/build/config.guess +1530 -0
  38. data/mpg123/build/config.sub +1782 -0
  39. data/mpg123/build/depcomp +707 -0
  40. data/mpg123/build/install-sh +527 -0
  41. data/mpg123/build/ltmain.sh +9655 -0
  42. data/mpg123/build/missing +330 -0
  43. data/mpg123/configure +20267 -0
  44. data/mpg123/configure.ac +2178 -0
  45. data/mpg123/doc/ACCURACY +2 -0
  46. data/mpg123/doc/BENCHMARKING +110 -0
  47. data/mpg123/doc/BUGS +3 -0
  48. data/mpg123/doc/CONTACT +17 -0
  49. data/mpg123/doc/LICENSE +22 -0
  50. data/mpg123/doc/Makefile.am +32 -0
  51. data/mpg123/doc/Makefile.in +490 -0
  52. data/mpg123/doc/PATENTS +39 -0
  53. data/mpg123/doc/README.3DNOW +56 -0
  54. data/mpg123/doc/README.gain +171 -0
  55. data/mpg123/doc/README.remote +218 -0
  56. data/mpg123/doc/ROAD_TO_LGPL +270 -0
  57. data/mpg123/doc/THANKS +13 -0
  58. data/mpg123/doc/TODO +63 -0
  59. data/mpg123/doc/doxy_examples.c +21 -0
  60. data/mpg123/doc/doxygen.conf +41 -0
  61. data/mpg123/doc/doxyhead.xhtml +12 -0
  62. data/mpg123/doc/examples/dump_seekindex.c +41 -0
  63. data/mpg123/doc/examples/extract_frames.c +92 -0
  64. data/mpg123/doc/examples/feedseek.c +238 -0
  65. data/mpg123/doc/examples/id3dump.c +178 -0
  66. data/mpg123/doc/examples/mpg123_to_wav.c +118 -0
  67. data/mpg123/doc/examples/mpglib.c +92 -0
  68. data/mpg123/doc/examples/scan.c +47 -0
  69. data/mpg123/doc/libmpg123_speed.txt +84 -0
  70. data/mpg123/equalize.dat +37 -0
  71. data/mpg123/libmpg123.pc.in +11 -0
  72. data/mpg123/m4/addrconfig.m4 +34 -0
  73. data/mpg123/m4/libtool.m4 +7982 -0
  74. data/mpg123/m4/ltoptions.m4 +384 -0
  75. data/mpg123/m4/ltsugar.m4 +123 -0
  76. data/mpg123/m4/ltversion.m4 +23 -0
  77. data/mpg123/m4/lt~obsolete.m4 +98 -0
  78. data/mpg123/makedll.sh +19 -0
  79. data/mpg123/man1/mpg123.1 +512 -0
  80. data/mpg123/mpg123.spec +68 -0
  81. data/mpg123/mpg123.spec.in +68 -0
  82. data/mpg123/ports/MSVC++/2005/libmpg123/libmpg123.vcproj +741 -0
  83. data/mpg123/ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj +194 -0
  84. data/mpg123/ports/MSVC++/2008/feedseek/feedseek.vcproj +195 -0
  85. data/mpg123/ports/MSVC++/2008/libmpg123/libmpg123.vcproj +1357 -0
  86. data/mpg123/ports/MSVC++/2008/mpg123.sln +44 -0
  87. data/mpg123/ports/MSVC++/2008/mpglib/mpglib.vcproj +191 -0
  88. data/mpg123/ports/MSVC++/2008/scan/scan.vcproj +195 -0
  89. data/mpg123/ports/MSVC++/2008clr/2008clr.sln +81 -0
  90. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs +435 -0
  91. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs +36 -0
  92. data/mpg123/ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj +72 -0
  93. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Program.cs +331 -0
  94. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs +36 -0
  95. data/mpg123/ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj +71 -0
  96. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Program.cs +79 -0
  97. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs +36 -0
  98. data/mpg123/ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj +70 -0
  99. data/mpg123/ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp +76 -0
  100. data/mpg123/ports/MSVC++/2008clr/mpg123clr/ReadMe.txt +165 -0
  101. data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.cpp +91 -0
  102. data/mpg123/ports/MSVC++/2008clr/mpg123clr/advanced.h +130 -0
  103. data/mpg123/ports/MSVC++/2008clr/mpg123clr/dllmain.cpp +19 -0
  104. data/mpg123/ports/MSVC++/2008clr/mpg123clr/enum.h +218 -0
  105. data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.cpp +48 -0
  106. data/mpg123/ports/MSVC++/2008clr/mpg123clr/error.h +134 -0
  107. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.cpp +92 -0
  108. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v1.h +132 -0
  109. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.cpp +138 -0
  110. data/mpg123/ports/MSVC++/2008clr/mpg123clr/id3v2.h +152 -0
  111. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp +896 -0
  112. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.h +953 -0
  113. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc +102 -0
  114. data/mpg123/ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj +328 -0
  115. data/mpg123/ports/MSVC++/2008clr/mpg123clr/resource.h +14 -0
  116. data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.cpp +8 -0
  117. data/mpg123/ports/MSVC++/2008clr/mpg123clr/stdafx.h +38 -0
  118. data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.cpp +166 -0
  119. data/mpg123/ports/MSVC++/2008clr/mpg123clr/string.h +265 -0
  120. data/mpg123/ports/MSVC++/2008clr/mpg123clr/targetver.h +24 -0
  121. data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.cpp +67 -0
  122. data/mpg123/ports/MSVC++/2008clr/mpg123clr/text.h +111 -0
  123. data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj +90 -0
  124. data/mpg123/ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters +6 -0
  125. data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj +95 -0
  126. data/mpg123/ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters +6 -0
  127. data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj +960 -0
  128. data/mpg123/ports/MSVC++/2010/libmpg123/libmpg123.vcxproj.user +3 -0
  129. data/mpg123/ports/MSVC++/2010/libmpg123/yasm.exe +0 -0
  130. data/mpg123/ports/MSVC++/2010/mpg123.sln +38 -0
  131. data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj +93 -0
  132. data/mpg123/ports/MSVC++/2010/scan/scan.vcxproj.filters +6 -0
  133. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H +15 -0
  134. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H +139 -0
  135. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H +206 -0
  136. data/mpg123/ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H +167 -0
  137. data/mpg123/ports/MSVC++/CMP3Stream/README +4 -0
  138. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP +462 -0
  139. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP +122 -0
  140. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP +35 -0
  141. data/mpg123/ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP +586 -0
  142. data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE +0 -0
  143. data/mpg123/ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj +245 -0
  144. data/mpg123/ports/MSVC++/config.h +35 -0
  145. data/mpg123/ports/MSVC++/examples/feedseek.c +240 -0
  146. data/mpg123/ports/MSVC++/examples/scan.c +47 -0
  147. data/mpg123/ports/MSVC++/mpg123.h +46 -0
  148. data/mpg123/ports/MSVC++/msvc.c +59 -0
  149. data/mpg123/ports/README +26 -0
  150. data/mpg123/ports/Sony_PSP/Makefile.psp +38 -0
  151. data/mpg123/ports/Sony_PSP/README +11 -0
  152. data/mpg123/ports/Sony_PSP/config.h +368 -0
  153. data/mpg123/ports/Sony_PSP/readers.c.patch +2 -0
  154. data/mpg123/ports/Xcode/config.h +197 -0
  155. data/mpg123/ports/Xcode/mpg123.h +17 -0
  156. data/mpg123/ports/Xcode/mpg123.xcodeproj/project.pbxproj +670 -0
  157. data/mpg123/ports/mpg123_.pas +478 -0
  158. data/mpg123/scripts/benchmark-cpu.pl +56 -0
  159. data/mpg123/scripts/tag_lyrics.py +76 -0
  160. data/mpg123/src/Makefile.am +186 -0
  161. data/mpg123/src/Makefile.in +1097 -0
  162. data/mpg123/src/audio.c +725 -0
  163. data/mpg123/src/audio.h +106 -0
  164. data/mpg123/src/buffer.c +312 -0
  165. data/mpg123/src/buffer.h +45 -0
  166. data/mpg123/src/common.c +240 -0
  167. data/mpg123/src/common.h +29 -0
  168. data/mpg123/src/config.h.in +436 -0
  169. data/mpg123/src/control_generic.c +809 -0
  170. data/mpg123/src/equalizer.c +48 -0
  171. data/mpg123/src/genre.c +271 -0
  172. data/mpg123/src/genre.h +15 -0
  173. data/mpg123/src/getlopt.c +148 -0
  174. data/mpg123/src/getlopt.h +77 -0
  175. data/mpg123/src/httpget.c +700 -0
  176. data/mpg123/src/httpget.h +66 -0
  177. data/mpg123/src/legacy_module.c +74 -0
  178. data/mpg123/src/libmpg123/Makefile.am +141 -0
  179. data/mpg123/src/libmpg123/Makefile.in +919 -0
  180. data/mpg123/src/libmpg123/compat.c +138 -0
  181. data/mpg123/src/libmpg123/compat.h +178 -0
  182. data/mpg123/src/libmpg123/dct36_3dnow.S +505 -0
  183. data/mpg123/src/libmpg123/dct36_3dnowext.S +512 -0
  184. data/mpg123/src/libmpg123/dct64.c +174 -0
  185. data/mpg123/src/libmpg123/dct64_3dnow.S +712 -0
  186. data/mpg123/src/libmpg123/dct64_3dnowext.S +714 -0
  187. data/mpg123/src/libmpg123/dct64_altivec.c +315 -0
  188. data/mpg123/src/libmpg123/dct64_i386.c +336 -0
  189. data/mpg123/src/libmpg123/dct64_i486.c +342 -0
  190. data/mpg123/src/libmpg123/dct64_mmx.S +811 -0
  191. data/mpg123/src/libmpg123/dct64_neon.S +297 -0
  192. data/mpg123/src/libmpg123/dct64_neon_float.S +270 -0
  193. data/mpg123/src/libmpg123/dct64_sse.S +454 -0
  194. data/mpg123/src/libmpg123/dct64_sse_float.S +401 -0
  195. data/mpg123/src/libmpg123/dct64_x86_64.S +464 -0
  196. data/mpg123/src/libmpg123/dct64_x86_64_float.S +426 -0
  197. data/mpg123/src/libmpg123/debug.h +171 -0
  198. data/mpg123/src/libmpg123/decode.h +268 -0
  199. data/mpg123/src/libmpg123/dither.c +119 -0
  200. data/mpg123/src/libmpg123/dither.h +23 -0
  201. data/mpg123/src/libmpg123/equalizer.c +17 -0
  202. data/mpg123/src/libmpg123/equalizer_3dnow.S +70 -0
  203. data/mpg123/src/libmpg123/feature.c +106 -0
  204. data/mpg123/src/libmpg123/format.c +521 -0
  205. data/mpg123/src/libmpg123/frame.c +1046 -0
  206. data/mpg123/src/libmpg123/frame.h +410 -0
  207. data/mpg123/src/libmpg123/gapless.h +119 -0
  208. data/mpg123/src/libmpg123/getbits.h +100 -0
  209. data/mpg123/src/libmpg123/getcpuflags.S +91 -0
  210. data/mpg123/src/libmpg123/getcpuflags.h +47 -0
  211. data/mpg123/src/libmpg123/huffman.h +340 -0
  212. data/mpg123/src/libmpg123/icy.c +32 -0
  213. data/mpg123/src/libmpg123/icy.h +38 -0
  214. data/mpg123/src/libmpg123/icy2utf8.c +438 -0
  215. data/mpg123/src/libmpg123/icy2utf8.h +10 -0
  216. data/mpg123/src/libmpg123/id3.c +999 -0
  217. data/mpg123/src/libmpg123/id3.h +43 -0
  218. data/mpg123/src/libmpg123/index.c +134 -0
  219. data/mpg123/src/libmpg123/index.h +59 -0
  220. data/mpg123/src/libmpg123/intsym.h +256 -0
  221. data/mpg123/src/libmpg123/l12_integer_tables.h +278 -0
  222. data/mpg123/src/libmpg123/l2tables.h +164 -0
  223. data/mpg123/src/libmpg123/l3_integer_tables.h +1002 -0
  224. data/mpg123/src/libmpg123/layer1.c +155 -0
  225. data/mpg123/src/libmpg123/layer2.c +371 -0
  226. data/mpg123/src/libmpg123/layer3.c +2053 -0
  227. data/mpg123/src/libmpg123/lfs_alias.c +252 -0
  228. data/mpg123/src/libmpg123/lfs_wrap.c +751 -0
  229. data/mpg123/src/libmpg123/libmpg123.c +1607 -0
  230. data/mpg123/src/libmpg123/mangle.h +74 -0
  231. data/mpg123/src/libmpg123/mpeghead.h +87 -0
  232. data/mpg123/src/libmpg123/mpg123.h.in +1075 -0
  233. data/mpg123/src/libmpg123/mpg123lib_intern.h +338 -0
  234. data/mpg123/src/libmpg123/ntom.c +148 -0
  235. data/mpg123/src/libmpg123/optimize.c +964 -0
  236. data/mpg123/src/libmpg123/optimize.h +219 -0
  237. data/mpg123/src/libmpg123/parse.c +1179 -0
  238. data/mpg123/src/libmpg123/parse.h +25 -0
  239. data/mpg123/src/libmpg123/reader.h +137 -0
  240. data/mpg123/src/libmpg123/readers.c +1235 -0
  241. data/mpg123/src/libmpg123/sample.h +152 -0
  242. data/mpg123/src/libmpg123/stringbuf.c +163 -0
  243. data/mpg123/src/libmpg123/synth.c +816 -0
  244. data/mpg123/src/libmpg123/synth.h +196 -0
  245. data/mpg123/src/libmpg123/synth_3dnow.S +318 -0
  246. data/mpg123/src/libmpg123/synth_3dnowext.S +6 -0
  247. data/mpg123/src/libmpg123/synth_8bit.c +142 -0
  248. data/mpg123/src/libmpg123/synth_8bit.h +86 -0
  249. data/mpg123/src/libmpg123/synth_altivec.c +1057 -0
  250. data/mpg123/src/libmpg123/synth_arm.S +271 -0
  251. data/mpg123/src/libmpg123/synth_arm_accurate.S +287 -0
  252. data/mpg123/src/libmpg123/synth_i486.c +252 -0
  253. data/mpg123/src/libmpg123/synth_i586.S +336 -0
  254. data/mpg123/src/libmpg123/synth_i586_dither.S +375 -0
  255. data/mpg123/src/libmpg123/synth_mmx.S +125 -0
  256. data/mpg123/src/libmpg123/synth_mono.h +64 -0
  257. data/mpg123/src/libmpg123/synth_neon.S +123 -0
  258. data/mpg123/src/libmpg123/synth_neon_accurate.S +173 -0
  259. data/mpg123/src/libmpg123/synth_neon_float.S +149 -0
  260. data/mpg123/src/libmpg123/synth_neon_s32.S +168 -0
  261. data/mpg123/src/libmpg123/synth_ntom.h +213 -0
  262. data/mpg123/src/libmpg123/synth_real.c +404 -0
  263. data/mpg123/src/libmpg123/synth_s32.c +411 -0
  264. data/mpg123/src/libmpg123/synth_sse.S +6 -0
  265. data/mpg123/src/libmpg123/synth_sse3d.h +246 -0
  266. data/mpg123/src/libmpg123/synth_sse_accurate.S +294 -0
  267. data/mpg123/src/libmpg123/synth_sse_float.S +241 -0
  268. data/mpg123/src/libmpg123/synth_sse_s32.S +306 -0
  269. data/mpg123/src/libmpg123/synth_stereo_neon.S +175 -0
  270. data/mpg123/src/libmpg123/synth_stereo_neon_accurate.S +262 -0
  271. data/mpg123/src/libmpg123/synth_stereo_neon_float.S +220 -0
  272. data/mpg123/src/libmpg123/synth_stereo_neon_s32.S +247 -0
  273. data/mpg123/src/libmpg123/synth_stereo_sse_accurate.S +508 -0
  274. data/mpg123/src/libmpg123/synth_stereo_sse_float.S +416 -0
  275. data/mpg123/src/libmpg123/synth_stereo_sse_s32.S +540 -0
  276. data/mpg123/src/libmpg123/synth_stereo_x86_64.S +335 -0
  277. data/mpg123/src/libmpg123/synth_stereo_x86_64_accurate.S +454 -0
  278. data/mpg123/src/libmpg123/synth_stereo_x86_64_float.S +396 -0
  279. data/mpg123/src/libmpg123/synth_stereo_x86_64_s32.S +473 -0
  280. data/mpg123/src/libmpg123/synth_x86_64.S +244 -0
  281. data/mpg123/src/libmpg123/synth_x86_64_accurate.S +301 -0
  282. data/mpg123/src/libmpg123/synth_x86_64_float.S +259 -0
  283. data/mpg123/src/libmpg123/synth_x86_64_s32.S +312 -0
  284. data/mpg123/src/libmpg123/synths.h +52 -0
  285. data/mpg123/src/libmpg123/tabinit.c +294 -0
  286. data/mpg123/src/libmpg123/tabinit_mmx.S +210 -0
  287. data/mpg123/src/libmpg123/testcpu.c +35 -0
  288. data/mpg123/src/libmpg123/true.h +14 -0
  289. data/mpg123/src/local.c +63 -0
  290. data/mpg123/src/local.h +21 -0
  291. data/mpg123/src/metaprint.c +373 -0
  292. data/mpg123/src/metaprint.h +17 -0
  293. data/mpg123/src/module.c +306 -0
  294. data/mpg123/src/module.h +48 -0
  295. data/mpg123/src/mpg123.c +1405 -0
  296. data/mpg123/src/mpg123app.h +171 -0
  297. data/mpg123/src/output/Makefile.am +213 -0
  298. data/mpg123/src/output/Makefile.in +1238 -0
  299. data/mpg123/src/output/aix.c +300 -0
  300. data/mpg123/src/output/alib.c +209 -0
  301. data/mpg123/src/output/alsa.c +297 -0
  302. data/mpg123/src/output/arts.c +117 -0
  303. data/mpg123/src/output/coreaudio.c +370 -0
  304. data/mpg123/src/output/dummy.c +78 -0
  305. data/mpg123/src/output/esd.c +167 -0
  306. data/mpg123/src/output/hp.c +184 -0
  307. data/mpg123/src/output/jack.c +450 -0
  308. data/mpg123/src/output/mint.c +197 -0
  309. data/mpg123/src/output/nas.c +335 -0
  310. data/mpg123/src/output/openal.c +197 -0
  311. data/mpg123/src/output/os2.c +665 -0
  312. data/mpg123/src/output/oss.c +319 -0
  313. data/mpg123/src/output/portaudio.c +255 -0
  314. data/mpg123/src/output/pulse.c +164 -0
  315. data/mpg123/src/output/sdl.c +206 -0
  316. data/mpg123/src/output/sgi.c +213 -0
  317. data/mpg123/src/output/sndio.c +161 -0
  318. data/mpg123/src/output/sun.c +281 -0
  319. data/mpg123/src/output/win32.c +229 -0
  320. data/mpg123/src/playlist.c +596 -0
  321. data/mpg123/src/playlist.h +52 -0
  322. data/mpg123/src/resolver.c +319 -0
  323. data/mpg123/src/resolver.h +25 -0
  324. data/mpg123/src/sfifo.c +146 -0
  325. data/mpg123/src/sfifo.h +95 -0
  326. data/mpg123/src/streamdump.c +74 -0
  327. data/mpg123/src/streamdump.h +20 -0
  328. data/mpg123/src/term.c +479 -0
  329. data/mpg123/src/term.h +81 -0
  330. data/mpg123/src/tests/noise.c +52 -0
  331. data/mpg123/src/tests/plain_id3.c +109 -0
  332. data/mpg123/src/tests/seek_accuracy.c +261 -0
  333. data/mpg123/src/tests/seek_whence.c +56 -0
  334. data/mpg123/src/tests/testtext.h +34 -0
  335. data/mpg123/src/tests/text.c +80 -0
  336. data/mpg123/src/wav.c +464 -0
  337. data/mpg123/src/wavhead.h +68 -0
  338. data/mpg123/src/win32_net.c +599 -0
  339. data/mpg123/src/win32_support.c +191 -0
  340. data/mpg123/src/win32_support.h +152 -0
  341. data/mpg123/src/xfermem.c +321 -0
  342. data/mpg123/src/xfermem.h +74 -0
  343. data/mpg123/windows-builds.sh +137 -0
  344. data/msvc/lib/OpenAL32.lib +0 -0
  345. data/spec/fixtures/heal.ogg +0 -0
  346. data/spec/fixtures/tone_up.wav +0 -0
  347. data/spec/seal/buffer_spec.rb +37 -0
  348. data/spec/seal/core_spec.rb +29 -0
  349. data/spec/seal/effect_slot_spec.rb +38 -0
  350. data/spec/seal/listener_spec.rb +33 -0
  351. data/spec/seal/reverb_spec.rb +51 -0
  352. data/spec/seal/source_spec.rb +370 -0
  353. data/spec/seal/stream_spec.rb +38 -0
  354. data/spec/spec_helper.rb +45 -0
  355. data/spec/support/attribute_examples.rb +75 -0
  356. data/spec/support/audio_object_with_format.rb +27 -0
  357. data/spec/support/movable_object.rb +22 -0
  358. data/src/libogg/bitwise.c +857 -0
  359. data/src/libogg/framing.c +2093 -0
  360. data/src/libvorbis/backends.h +144 -0
  361. data/src/libvorbis/bitrate.c +253 -0
  362. data/src/libvorbis/bitrate.h +59 -0
  363. data/src/libvorbis/block.c +1046 -0
  364. data/src/libvorbis/codebook.c +484 -0
  365. data/src/libvorbis/codebook.h +119 -0
  366. data/src/libvorbis/codec_internal.h +167 -0
  367. data/src/libvorbis/envelope.c +375 -0
  368. data/src/libvorbis/envelope.h +80 -0
  369. data/src/libvorbis/floor0.c +221 -0
  370. data/src/libvorbis/floor1.c +1100 -0
  371. data/src/libvorbis/highlevel.h +58 -0
  372. data/src/libvorbis/info.c +668 -0
  373. data/src/libvorbis/lookup.c +94 -0
  374. data/src/libvorbis/lookup.h +32 -0
  375. data/src/libvorbis/lookup_data.h +192 -0
  376. data/src/libvorbis/lpc.c +160 -0
  377. data/src/libvorbis/lpc.h +29 -0
  378. data/src/libvorbis/lsp.c +456 -0
  379. data/src/libvorbis/lsp.h +28 -0
  380. data/src/libvorbis/mapping0.c +816 -0
  381. data/src/libvorbis/masking.h +785 -0
  382. data/src/libvorbis/mdct.c +563 -0
  383. data/src/libvorbis/mdct.h +71 -0
  384. data/src/libvorbis/misc.h +57 -0
  385. data/src/libvorbis/os.h +186 -0
  386. data/src/libvorbis/psy.c +1206 -0
  387. data/src/libvorbis/psy.h +154 -0
  388. data/src/libvorbis/registry.c +45 -0
  389. data/src/libvorbis/registry.h +32 -0
  390. data/src/libvorbis/res0.c +889 -0
  391. data/src/libvorbis/scales.h +90 -0
  392. data/src/libvorbis/sharedbook.c +579 -0
  393. data/src/libvorbis/smallft.c +1255 -0
  394. data/src/libvorbis/smallft.h +34 -0
  395. data/src/libvorbis/synthesis.c +184 -0
  396. data/src/libvorbis/vorbisfile.c +2337 -0
  397. data/src/libvorbis/window.c +2135 -0
  398. data/src/libvorbis/window.h +26 -0
  399. data/src/rubyext.c +2329 -0
  400. data/src/seal/buf.c +124 -0
  401. data/src/seal/core.c +283 -0
  402. data/src/seal/efs.c +74 -0
  403. data/src/seal/err.c +118 -0
  404. data/src/seal/fmt.c +86 -0
  405. data/src/seal/listener.c +111 -0
  406. data/src/seal/mpg.c +174 -0
  407. data/src/seal/mpg.h +24 -0
  408. data/src/seal/ov.c +180 -0
  409. data/src/seal/ov.h +22 -0
  410. data/src/seal/raw.c +59 -0
  411. data/src/seal/reader.c +102 -0
  412. data/src/seal/reader.h +59 -0
  413. data/src/seal/rvb.c +368 -0
  414. data/src/seal/src.c +654 -0
  415. data/src/seal/stream.c +109 -0
  416. data/src/seal/threading.c +66 -0
  417. data/src/seal/threading.h +20 -0
  418. data/src/seal/wav.c +297 -0
  419. data/src/seal/wav.h +23 -0
  420. data/src/win32api.rb +29 -0
  421. metadata +563 -0
@@ -0,0 +1,3 @@
1
+ This is a dummy file. If you want to see the change log, use subversion:
2
+
3
+ svn log -v svn://orgis.org/mpg123
@@ -0,0 +1,111 @@
1
+ mpg123 install hints
2
+ --------------------
3
+
4
+ (This file has very long lines - die-hard terminal nostalgists can be satisfied by `fmt -s -w 75 < INSTALL | less`. I think it's better to let the reader's preference rule than to preformat the stuff to some arbitrary width.)
5
+
6
+
7
+ 0. Prerequesites
8
+
9
+ You really need:
10
+
11
+ - a C compiler; we try to keep the code ANSI C89/ISO C90 compatible
12
+ gcc from 2.95 on should work, others, too - please report any issues
13
+ Actually, we have a confirmed working build (svn trunk leading to release 0.67) on SunOS 4.1.4 with gcc-2.7.0 .
14
+
15
+ - an (UNIX-like) operating system with standard tools; MinGW32 and Cygwin are working for Microsoft Windows, too. We also have users happily on OS/2.
16
+ - For the library only, you may get lucky with MSVC++ using the project files under ports/
17
+ - For other exotic platforms, also see ports/
18
+ - If building from direct SCM checkout, you need GNU autotools installed (see below).
19
+
20
+ You want:
21
+
22
+ - working assembler (recent GNU binutils) if using certain CPU optimizations
23
+ - headers and lib for certain audio output drivers (libasound for alsa, sdl for sdl...)
24
+ - libtool's libltdl for runtime output modules (this used to be included, but now we rely on an existing install)
25
+
26
+
27
+ 1. Build
28
+
29
+ There is one main supported way to get your mpg123 installation consisting of
30
+
31
+ a) the mpg123 binary file
32
+ - with libmpg123 as shared library or statically linked
33
+ - with audio output plugins, or one statically linked
34
+ b) a man page
35
+
36
+ (you may want to copy some of the documentation - README, etc - to /usr/share/doc/mpg123 or the like, too)
37
+
38
+ This way is the usual GNU 3-step procedure:
39
+
40
+ ./configure
41
+ make
42
+ make install
43
+
44
+ Run
45
+
46
+ ./configure --help
47
+
48
+ for a list of possible parameters you can specify in the configuration step. The obvious are --prefix and the normal GNU autotool bunch, but others include what audio subsystem to use and what CPU optimizations to build in.
49
+ For the optimizations (decoder choice), the default is a build that combines all usable optimizations for the platform and chooses one at runtime (see --cpu, --list-cpu and --test-cpu parameters).
50
+
51
+ There are various parameters you can tune, but of course the defaults are what is mainly tested.
52
+
53
+ Also, various library features can be left out via --disable options (like output formats, resampling modes). That way, you can strive for a minimal build that only does what you really need. Not every combination of library features is tested regularily, so you might hit some speed bumps, but usually stuff that is easily worked out (at least for the mpg123 team when you report it).
54
+
55
+ An example (working on mpg123 trunk r3062):
56
+
57
+ CFLAGS="-Os -s" ./configure --with-cpu=generic --disable-id3v2 --disable-lfs-alias --disable-feature-report --with-seektable=0 --disable-16bit --disable-32bit --disable-8bit --disable-messages --disable-feeder --disable-ntom --disable-downsample --disable-icy && make
58
+
59
+ That, and further application of `strip --strip-unneeded`, yields a lean 93 KiB shared library for MPEG layer I/II/III decoding to floating point on my x86-64 system (it should be a bit smaller on 32 bit systems). When disabling layers I and II, too, that goes down to 81 KiB.
60
+
61
+ The shared library of a full build weighs 170 KiB after stripping.
62
+
63
+
64
+ 2. Developer build
65
+
66
+ This project uses GNU autotools (no specific version, but they should be fairly recent), also libtool. You need to have those installed, as it is usually the case for build environments based on the GNU toolchain.
67
+
68
+ One a fresh SCM checkout, or after changing things in configure.ac, you need to run
69
+
70
+ autoreconf -iv
71
+
72
+ to prepare the configure script. Then you can build as per point 1.
73
+
74
+
75
+ 3. Library-only build
76
+
77
+ If you do not want to build the whole thing, but only the library, run
78
+
79
+ ./configure
80
+ cd src/libmpg123
81
+ make
82
+
83
+ You can then find the library itself under src/libmpg123/.libs (libtool likes to hide things there).
84
+
85
+
86
+ 4. Exotic platforms
87
+
88
+ See the ports/ directory for some help for building at least libmpg123 without the UNIX shell / autotools. The main strategy is to write a config.h to replace what configure would generate and then have a correct listing of all source files involved in that configuration (there are optional files for different decoder choices, for example).
89
+
90
+ Then compile objects, link.
91
+
92
+
93
+ 4a. Preparing Win32 binary packages.
94
+
95
+ Caution: You should make sure to use some gcc >= 4.2.0, even if it's still the experimental package for MinGW32.
96
+ This helps preventing incompatibilities between generated DLL files and other compilers (it's about stack alignment).
97
+
98
+ Get MinGW/MSYS installed, run the MSYS shell.
99
+ Enter the mpg123 source directory.
100
+ Execute sh ./windows-builds.sh .
101
+
102
+ After some time, you should have some relevant files under releases/ (or releases\, for Windows people;-).
103
+ You don't just get one build -- there are several variants, corresponding to what usually is to be found under http://mpg123.org/download/win32 .
104
+
105
+
106
+ 5. Note on large file support
107
+
108
+ The libmpg123 API includes the generic off_t type for file offsets and thus is subject to shape-shifting on systems that change off_t depending on build flags.
109
+ To deal with the incompatibilities that can cause, the library needs to separate code paths for small and large off_t.
110
+ Since version 1.12.0, a large-file-enabled libmpg123 (the default set by configure) provides a dual-mode ABI. Depending on _FILE_OFFSET_BITS, the mpg123.h header file selects different library symbols to use for your app.
111
+ In both large-file and normal mode, the library should just work for your app.
@@ -0,0 +1,99 @@
1
+ ## Makefile.am: produce Makefile.in from this
2
+
3
+ ## copyright by the mpg123 project - free software under the terms of the LGPL 2.1
4
+ ## see COPYING and AUTHORS files in distribution or http://mpg123.org
5
+ ## initially written by Nicholas J. Humfrey
6
+ dist_man_MANS = man1/mpg123.1
7
+
8
+ SUBDIRS = src doc
9
+ DIST_SUBDIRS = src doc
10
+ ACLOCAL_AMFLAGS = -I m4
11
+
12
+ # pkg-config file for the mpg123 library
13
+ pkgconfigdir = $(libdir)/pkgconfig
14
+ pkgconfig_DATA = libmpg123.pc
15
+
16
+ # mpg123.spec is autogenerated but needs to be present in tarball!
17
+ EXTRA_DIST = \
18
+ mpg123.spec \
19
+ makedll.sh \
20
+ windows-builds.sh \
21
+ equalize.dat \
22
+ NEWS.libmpg123 \
23
+ ports/MSVC++/mpg123.h \
24
+ ports/MSVC++/config.h \
25
+ ports/MSVC++/msvc.c \
26
+ ports/MSVC++/examples/scan.c \
27
+ ports/MSVC++/examples/feedseek.c \
28
+ ports/MSVC++/2005/libmpg123/libmpg123.vcproj \
29
+ ports/MSVC++/2008/mpg123.sln \
30
+ ports/MSVC++/2008/feedseek/feedseek.vcproj \
31
+ ports/MSVC++/2008/mpglib/mpglib.vcproj \
32
+ ports/MSVC++/2008/libmpg123/libmpg123.vcproj \
33
+ ports/MSVC++/2008/scan/scan.vcproj \
34
+ ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj \
35
+ ports/MSVC++/2008clr/2008clr.sln \
36
+ ports/MSVC++/2008clr/mpg123clr/advanced.cpp \
37
+ ports/MSVC++/2008clr/mpg123clr/advanced.h \
38
+ ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp \
39
+ ports/MSVC++/2008clr/mpg123clr/dllmain.cpp \
40
+ ports/MSVC++/2008clr/mpg123clr/enum.h \
41
+ ports/MSVC++/2008clr/mpg123clr/error.cpp \
42
+ ports/MSVC++/2008clr/mpg123clr/error.h \
43
+ ports/MSVC++/2008clr/mpg123clr/id3v1.cpp \
44
+ ports/MSVC++/2008clr/mpg123clr/id3v1.h \
45
+ ports/MSVC++/2008clr/mpg123clr/id3v2.cpp \
46
+ ports/MSVC++/2008clr/mpg123clr/id3v2.h \
47
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp \
48
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.h \
49
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc \
50
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj \
51
+ ports/MSVC++/2008clr/mpg123clr/ReadMe.txt \
52
+ ports/MSVC++/2008clr/mpg123clr/resource.h \
53
+ ports/MSVC++/2008clr/mpg123clr/stdafx.cpp \
54
+ ports/MSVC++/2008clr/mpg123clr/stdafx.h \
55
+ ports/MSVC++/2008clr/mpg123clr/string.cpp \
56
+ ports/MSVC++/2008clr/mpg123clr/string.h \
57
+ ports/MSVC++/2008clr/mpg123clr/targetver.h \
58
+ ports/MSVC++/2008clr/mpg123clr/text.cpp \
59
+ ports/MSVC++/2008clr/mpg123clr/text.h \
60
+ ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj \
61
+ ports/MSVC++/2008clr/examples/feedseekclr/Program.cs \
62
+ ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs \
63
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj \
64
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs \
65
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs \
66
+ ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj \
67
+ ports/MSVC++/2008clr/examples/scanclr/Program.cs \
68
+ ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs \
69
+ ports/MSVC++/2010/mpg123.sln \
70
+ ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj \
71
+ ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters \
72
+ ports/MSVC++/2010/feedseek/feedseek.vcxproj \
73
+ ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters \
74
+ ports/MSVC++/2010/libmpg123/libmpg123.vcxproj \
75
+ ports/MSVC++/2010/scan/scan.vcxproj \
76
+ ports/MSVC++/2010/scan/scan.vcxproj.filters \
77
+ ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj \
78
+ ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE \
79
+ ports/MSVC++/CMP3Stream/README \
80
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP \
81
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP \
82
+ ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP \
83
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP \
84
+ ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H \
85
+ ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H \
86
+ ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H \
87
+ ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H \
88
+ ports/README \
89
+ ports/Sony_PSP/config.h \
90
+ ports/Sony_PSP/README \
91
+ ports/Sony_PSP/Makefile.psp \
92
+ ports/Sony_PSP/readers.c.patch \
93
+ ports/mpg123_.pas \
94
+ ports/Xcode/config.h \
95
+ ports/Xcode/mpg123.h \
96
+ ports/Xcode/mpg123.xcodeproj/project.pbxproj \
97
+ scripts/benchmark-cpu.pl \
98
+ scripts/tag_lyrics.py
99
+
@@ -0,0 +1,1043 @@
1
+ # Makefile.in generated by automake 1.12.2 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994-2012 Free Software Foundation, Inc.
5
+
6
+ # This Makefile.in is free software; the Free Software Foundation
7
+ # gives unlimited permission to copy and/or distribute it,
8
+ # with or without modifications, as long as this notice is preserved.
9
+
10
+ # This program is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12
+ # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
+ # PARTICULAR PURPOSE.
14
+
15
+ @SET_MAKE@
16
+
17
+ VPATH = @srcdir@
18
+ am__make_dryrun = \
19
+ { \
20
+ am__dry=no; \
21
+ case $$MAKEFLAGS in \
22
+ *\\[\ \ ]*) \
23
+ echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
24
+ | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
25
+ *) \
26
+ for am__flg in $$MAKEFLAGS; do \
27
+ case $$am__flg in \
28
+ *=*|--*) ;; \
29
+ *n*) am__dry=yes; break;; \
30
+ esac; \
31
+ done;; \
32
+ esac; \
33
+ test $$am__dry = yes; \
34
+ }
35
+ pkgdatadir = $(datadir)/@PACKAGE@
36
+ pkgincludedir = $(includedir)/@PACKAGE@
37
+ pkglibdir = $(libdir)/@PACKAGE@
38
+ pkglibexecdir = $(libexecdir)/@PACKAGE@
39
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
40
+ install_sh_DATA = $(install_sh) -c -m 644
41
+ install_sh_PROGRAM = $(install_sh) -c
42
+ install_sh_SCRIPT = $(install_sh) -c
43
+ INSTALL_HEADER = $(INSTALL_DATA)
44
+ transform = $(program_transform_name)
45
+ NORMAL_INSTALL = :
46
+ PRE_INSTALL = :
47
+ POST_INSTALL = :
48
+ NORMAL_UNINSTALL = :
49
+ PRE_UNINSTALL = :
50
+ POST_UNINSTALL = :
51
+ build_triplet = @build@
52
+ host_triplet = @host@
53
+ subdir = .
54
+ DIST_COMMON = README $(am__configure_deps) $(dist_man_MANS) \
55
+ $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
56
+ $(srcdir)/libmpg123.pc.in $(srcdir)/mpg123.spec.in \
57
+ $(top_srcdir)/build/config.guess \
58
+ $(top_srcdir)/build/config.sub $(top_srcdir)/build/install-sh \
59
+ $(top_srcdir)/build/ltmain.sh $(top_srcdir)/build/missing \
60
+ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \
61
+ TODO build/config.guess build/config.sub build/install-sh \
62
+ build/ltmain.sh build/missing
63
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
64
+ am__aclocal_m4_deps = $(top_srcdir)/m4/addrconfig.m4 \
65
+ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
66
+ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
67
+ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
68
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
69
+ $(ACLOCAL_M4)
70
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
71
+ configure.lineno config.status.lineno
72
+ mkinstalldirs = $(install_sh) -d
73
+ CONFIG_HEADER = $(top_builddir)/src/config.h
74
+ CONFIG_CLEAN_FILES = libmpg123.pc mpg123.spec
75
+ CONFIG_CLEAN_VPATH_FILES =
76
+ SOURCES =
77
+ DIST_SOURCES =
78
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
79
+ html-recursive info-recursive install-data-recursive \
80
+ install-dvi-recursive install-exec-recursive \
81
+ install-html-recursive install-info-recursive \
82
+ install-pdf-recursive install-ps-recursive install-recursive \
83
+ installcheck-recursive installdirs-recursive pdf-recursive \
84
+ ps-recursive uninstall-recursive
85
+ am__can_run_installinfo = \
86
+ case $$AM_UPDATE_INFO_DIR in \
87
+ n|no|NO) false;; \
88
+ *) (install-info --version) >/dev/null 2>&1;; \
89
+ esac
90
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
91
+ am__vpath_adj = case $$p in \
92
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
93
+ *) f=$$p;; \
94
+ esac;
95
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
96
+ am__install_max = 40
97
+ am__nobase_strip_setup = \
98
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
99
+ am__nobase_strip = \
100
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
101
+ am__nobase_list = $(am__nobase_strip_setup); \
102
+ for p in $$list; do echo "$$p $$p"; done | \
103
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
104
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
105
+ if (++n[$$2] == $(am__install_max)) \
106
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
107
+ END { for (dir in files) print dir, files[dir] }'
108
+ am__base_list = \
109
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
110
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
111
+ am__uninstall_files_from_dir = { \
112
+ test -z "$$files" \
113
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
114
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
115
+ $(am__cd) "$$dir" && rm -f $$files; }; \
116
+ }
117
+ man1dir = $(mandir)/man1
118
+ am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)"
119
+ NROFF = nroff
120
+ MANS = $(dist_man_MANS)
121
+ DATA = $(pkgconfig_DATA)
122
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
123
+ distclean-recursive maintainer-clean-recursive
124
+ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
125
+ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
126
+ cscope distdir dist dist-all distcheck
127
+ ETAGS = etags
128
+ CTAGS = ctags
129
+ CSCOPE = cscope
130
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
131
+ distdir = $(PACKAGE)-$(VERSION)
132
+ top_distdir = $(distdir)
133
+ am__remove_distdir = \
134
+ if test -d "$(distdir)"; then \
135
+ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
136
+ && rm -rf "$(distdir)" \
137
+ || { sleep 5 && rm -rf "$(distdir)"; }; \
138
+ else :; fi
139
+ am__post_remove_distdir = $(am__remove_distdir)
140
+ am__relativize = \
141
+ dir0=`pwd`; \
142
+ sed_first='s,^\([^/]*\)/.*$$,\1,'; \
143
+ sed_rest='s,^[^/]*/*,,'; \
144
+ sed_last='s,^.*/\([^/]*\)$$,\1,'; \
145
+ sed_butlast='s,/*[^/]*$$,,'; \
146
+ while test -n "$$dir1"; do \
147
+ first=`echo "$$dir1" | sed -e "$$sed_first"`; \
148
+ if test "$$first" != "."; then \
149
+ if test "$$first" = ".."; then \
150
+ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
151
+ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
152
+ else \
153
+ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
154
+ if test "$$first2" = "$$first"; then \
155
+ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
156
+ else \
157
+ dir2="../$$dir2"; \
158
+ fi; \
159
+ dir0="$$dir0"/"$$first"; \
160
+ fi; \
161
+ fi; \
162
+ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
163
+ done; \
164
+ reldir="$$dir2"
165
+ DIST_ARCHIVES = $(distdir).tar.gz
166
+ GZIP_ENV = --best
167
+ DIST_TARGETS = dist-gzip
168
+ distuninstallcheck_listfiles = find . -type f -print
169
+ am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
170
+ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
171
+ distcleancheck_listfiles = find . -type f -print
172
+ ACLOCAL = @ACLOCAL@
173
+ AIX_CFLAGS = @AIX_CFLAGS@
174
+ AIX_LDFLAGS = @AIX_LDFLAGS@
175
+ AIX_LIBS = @AIX_LIBS@
176
+ ALIB_CFLAGS = @ALIB_CFLAGS@
177
+ ALIB_LDFLAGS = @ALIB_LDFLAGS@
178
+ ALIB_LIBS = @ALIB_LIBS@
179
+ ALSA_CFLAGS = @ALSA_CFLAGS@
180
+ ALSA_LDFLAGS = @ALSA_LDFLAGS@
181
+ ALSA_LIBS = @ALSA_LIBS@
182
+ AMTAR = @AMTAR@
183
+ API_VERSION = @API_VERSION@
184
+ AR = @AR@
185
+ ARTS_CFLAGS = @ARTS_CFLAGS@
186
+ ARTS_LDFLAGS = @ARTS_LDFLAGS@
187
+ ARTS_LIBS = @ARTS_LIBS@
188
+ AS = @AS@
189
+ AUTOCONF = @AUTOCONF@
190
+ AUTOHEADER = @AUTOHEADER@
191
+ AUTOMAKE = @AUTOMAKE@
192
+ AWK = @AWK@
193
+ CC = @CC@
194
+ CCAS = @CCAS@
195
+ CCASDEPMODE = @CCASDEPMODE@
196
+ CCASFLAGS = @CCASFLAGS@
197
+ CCDEPMODE = @CCDEPMODE@
198
+ CFLAGS = @CFLAGS@
199
+ COREAUDIO_CFLAGS = @COREAUDIO_CFLAGS@
200
+ COREAUDIO_LDFLAGS = @COREAUDIO_LDFLAGS@
201
+ COREAUDIO_LIBS = @COREAUDIO_LIBS@
202
+ CPP = @CPP@
203
+ CPPFLAGS = @CPPFLAGS@
204
+ CYGPATH_W = @CYGPATH_W@
205
+ DECODER_LOBJ = @DECODER_LOBJ@
206
+ DECODER_OBJ = @DECODER_OBJ@
207
+ DEFS = @DEFS@
208
+ DEPDIR = @DEPDIR@
209
+ DLLTOOL = @DLLTOOL@
210
+ DSYMUTIL = @DSYMUTIL@
211
+ DUMMY_CFLAGS = @DUMMY_CFLAGS@
212
+ DUMMY_LDFLAGS = @DUMMY_LDFLAGS@
213
+ DUMMY_LIBS = @DUMMY_LIBS@
214
+ DUMPBIN = @DUMPBIN@
215
+ ECHO_C = @ECHO_C@
216
+ ECHO_N = @ECHO_N@
217
+ ECHO_T = @ECHO_T@
218
+ EGREP = @EGREP@
219
+ ESD_CFLAGS = @ESD_CFLAGS@
220
+ ESD_LDFLAGS = @ESD_LDFLAGS@
221
+ ESD_LIBS = @ESD_LIBS@
222
+ EXEC_LT_LDFLAGS = @EXEC_LT_LDFLAGS@
223
+ EXEEXT = @EXEEXT@
224
+ FGREP = @FGREP@
225
+ GREP = @GREP@
226
+ HP_CFLAGS = @HP_CFLAGS@
227
+ HP_LDFLAGS = @HP_LDFLAGS@
228
+ HP_LIBS = @HP_LIBS@
229
+ INCLUDE_STDIO_H = @INCLUDE_STDIO_H@
230
+ INCLUDE_STDLIB_H = @INCLUDE_STDLIB_H@
231
+ INCLUDE_SYS_TYPE_H = @INCLUDE_SYS_TYPE_H@
232
+ INSTALL = @INSTALL@
233
+ INSTALL_DATA = @INSTALL_DATA@
234
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
235
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
236
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
237
+ JACK_CFLAGS = @JACK_CFLAGS@
238
+ JACK_LDFLAGS = @JACK_LDFLAGS@
239
+ JACK_LIBS = @JACK_LIBS@
240
+ LD = @LD@
241
+ LDFLAGS = @LDFLAGS@
242
+ LFS_LOBJ = @LFS_LOBJ@
243
+ LIBMPG123_VERSION = @LIBMPG123_VERSION@
244
+ LIBOBJS = @LIBOBJS@
245
+ LIBS = @LIBS@
246
+ LIBTOOL = @LIBTOOL@
247
+ LIPO = @LIPO@
248
+ LN_S = @LN_S@
249
+ LTLIBOBJS = @LTLIBOBJS@
250
+ LT_LDFLAGS = @LT_LDFLAGS@
251
+ MAKEINFO = @MAKEINFO@
252
+ MANIFEST_TOOL = @MANIFEST_TOOL@
253
+ MINT_CFLAGS = @MINT_CFLAGS@
254
+ MINT_LDFLAGS = @MINT_LDFLAGS@
255
+ MINT_LIBS = @MINT_LIBS@
256
+ MKDIR_P = @MKDIR_P@
257
+ MODULE_OBJ = @MODULE_OBJ@
258
+ NAS_CFLAGS = @NAS_CFLAGS@
259
+ NAS_LDFLAGS = @NAS_LDFLAGS@
260
+ NAS_LIBS = @NAS_LIBS@
261
+ NM = @NM@
262
+ NMEDIT = @NMEDIT@
263
+ OBJDUMP = @OBJDUMP@
264
+ OBJEXT = @OBJEXT@
265
+ OPENAL_CFLAGS = @OPENAL_CFLAGS@
266
+ OPENAL_LDFLAGS = @OPENAL_LDFLAGS@
267
+ OPENAL_LIBS = @OPENAL_LIBS@
268
+ OS2_CFLAGS = @OS2_CFLAGS@
269
+ OS2_LDFLAGS = @OS2_LDFLAGS@
270
+ OS2_LIBS = @OS2_LIBS@
271
+ OSS_CFLAGS = @OSS_CFLAGS@
272
+ OSS_LDFLAGS = @OSS_LDFLAGS@
273
+ OSS_LIBS = @OSS_LIBS@
274
+ OTOOL = @OTOOL@
275
+ OTOOL64 = @OTOOL64@
276
+ OUTPUT_CFLAGS = @OUTPUT_CFLAGS@
277
+ OUTPUT_LDFLAGS = @OUTPUT_LDFLAGS@
278
+ OUTPUT_LIBS = @OUTPUT_LIBS@
279
+ OUTPUT_MOD = @OUTPUT_MOD@
280
+ OUTPUT_OBJ = @OUTPUT_OBJ@
281
+ PACKAGE = @PACKAGE@
282
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
283
+ PACKAGE_NAME = @PACKAGE_NAME@
284
+ PACKAGE_STRING = @PACKAGE_STRING@
285
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
286
+ PACKAGE_URL = @PACKAGE_URL@
287
+ PACKAGE_VERSION = @PACKAGE_VERSION@
288
+ PATH_SEPARATOR = @PATH_SEPARATOR@
289
+ PKG_CONFIG = @PKG_CONFIG@
290
+ PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
291
+ PORTAUDIO_LDFLAGS = @PORTAUDIO_LDFLAGS@
292
+ PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
293
+ PULSE_CFLAGS = @PULSE_CFLAGS@
294
+ PULSE_LDFLAGS = @PULSE_LDFLAGS@
295
+ PULSE_LIBS = @PULSE_LIBS@
296
+ RANLIB = @RANLIB@
297
+ SDL_CFLAGS = @SDL_CFLAGS@
298
+ SDL_LDFLAGS = @SDL_LDFLAGS@
299
+ SDL_LIBS = @SDL_LIBS@
300
+ SED = @SED@
301
+ SET_MAKE = @SET_MAKE@
302
+ SGI_CFLAGS = @SGI_CFLAGS@
303
+ SGI_LDFLAGS = @SGI_LDFLAGS@
304
+ SGI_LIBS = @SGI_LIBS@
305
+ SHELL = @SHELL@
306
+ SNDIO_CFLAGS = @SNDIO_CFLAGS@
307
+ SNDIO_LDFLAGS = @SNDIO_LDFLAGS@
308
+ SNDIO_LIBS = @SNDIO_LIBS@
309
+ STRIP = @STRIP@
310
+ SUN_CFLAGS = @SUN_CFLAGS@
311
+ SUN_LDFLAGS = @SUN_LDFLAGS@
312
+ SUN_LIBS = @SUN_LIBS@
313
+ VERSION = @VERSION@
314
+ WIN32_CFLAGS = @WIN32_CFLAGS@
315
+ WIN32_LDFLAGS = @WIN32_LDFLAGS@
316
+ WIN32_LIBS = @WIN32_LIBS@
317
+ abs_builddir = @abs_builddir@
318
+ abs_srcdir = @abs_srcdir@
319
+ abs_top_builddir = @abs_top_builddir@
320
+ abs_top_srcdir = @abs_top_srcdir@
321
+ ac_ct_AR = @ac_ct_AR@
322
+ ac_ct_CC = @ac_ct_CC@
323
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
324
+ am__include = @am__include@
325
+ am__leading_dot = @am__leading_dot@
326
+ am__quote = @am__quote@
327
+ am__tar = @am__tar@
328
+ am__untar = @am__untar@
329
+ bindir = @bindir@
330
+ build = @build@
331
+ build_alias = @build_alias@
332
+ build_cpu = @build_cpu@
333
+ build_os = @build_os@
334
+ build_vendor = @build_vendor@
335
+ builddir = @builddir@
336
+ datadir = @datadir@
337
+ datarootdir = @datarootdir@
338
+ docdir = @docdir@
339
+ dvidir = @dvidir@
340
+ exec_prefix = @exec_prefix@
341
+ host = @host@
342
+ host_alias = @host_alias@
343
+ host_cpu = @host_cpu@
344
+ host_os = @host_os@
345
+ host_vendor = @host_vendor@
346
+ htmldir = @htmldir@
347
+ includedir = @includedir@
348
+ infodir = @infodir@
349
+ install_sh = @install_sh@
350
+ libdir = @libdir@
351
+ libexecdir = @libexecdir@
352
+ localedir = @localedir@
353
+ localstatedir = @localstatedir@
354
+ mandir = @mandir@
355
+ mkdir_p = @mkdir_p@
356
+ oldincludedir = @oldincludedir@
357
+ pdfdir = @pdfdir@
358
+ prefix = @prefix@
359
+ program_transform_name = @program_transform_name@
360
+ psdir = @psdir@
361
+ sbindir = @sbindir@
362
+ sharedstatedir = @sharedstatedir@
363
+ srcdir = @srcdir@
364
+ sysconfdir = @sysconfdir@
365
+ target_alias = @target_alias@
366
+ top_build_prefix = @top_build_prefix@
367
+ top_builddir = @top_builddir@
368
+ top_srcdir = @top_srcdir@
369
+ dist_man_MANS = man1/mpg123.1
370
+ SUBDIRS = src doc
371
+ DIST_SUBDIRS = src doc
372
+ ACLOCAL_AMFLAGS = -I m4
373
+
374
+ # pkg-config file for the mpg123 library
375
+ pkgconfigdir = $(libdir)/pkgconfig
376
+ pkgconfig_DATA = libmpg123.pc
377
+
378
+ # mpg123.spec is autogenerated but needs to be present in tarball!
379
+ EXTRA_DIST = \
380
+ mpg123.spec \
381
+ makedll.sh \
382
+ windows-builds.sh \
383
+ equalize.dat \
384
+ NEWS.libmpg123 \
385
+ ports/MSVC++/mpg123.h \
386
+ ports/MSVC++/config.h \
387
+ ports/MSVC++/msvc.c \
388
+ ports/MSVC++/examples/scan.c \
389
+ ports/MSVC++/examples/feedseek.c \
390
+ ports/MSVC++/2005/libmpg123/libmpg123.vcproj \
391
+ ports/MSVC++/2008/mpg123.sln \
392
+ ports/MSVC++/2008/feedseek/feedseek.vcproj \
393
+ ports/MSVC++/2008/mpglib/mpglib.vcproj \
394
+ ports/MSVC++/2008/libmpg123/libmpg123.vcproj \
395
+ ports/MSVC++/2008/scan/scan.vcproj \
396
+ ports/MSVC++/2008/dump_seekindex/dump_seekindex.vcproj \
397
+ ports/MSVC++/2008clr/2008clr.sln \
398
+ ports/MSVC++/2008clr/mpg123clr/advanced.cpp \
399
+ ports/MSVC++/2008clr/mpg123clr/advanced.h \
400
+ ports/MSVC++/2008clr/mpg123clr/AssemblyInfo.cpp \
401
+ ports/MSVC++/2008clr/mpg123clr/dllmain.cpp \
402
+ ports/MSVC++/2008clr/mpg123clr/enum.h \
403
+ ports/MSVC++/2008clr/mpg123clr/error.cpp \
404
+ ports/MSVC++/2008clr/mpg123clr/error.h \
405
+ ports/MSVC++/2008clr/mpg123clr/id3v1.cpp \
406
+ ports/MSVC++/2008clr/mpg123clr/id3v1.h \
407
+ ports/MSVC++/2008clr/mpg123clr/id3v2.cpp \
408
+ ports/MSVC++/2008clr/mpg123clr/id3v2.h \
409
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.cpp \
410
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.h \
411
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.rc \
412
+ ports/MSVC++/2008clr/mpg123clr/mpg123clr.vcproj \
413
+ ports/MSVC++/2008clr/mpg123clr/ReadMe.txt \
414
+ ports/MSVC++/2008clr/mpg123clr/resource.h \
415
+ ports/MSVC++/2008clr/mpg123clr/stdafx.cpp \
416
+ ports/MSVC++/2008clr/mpg123clr/stdafx.h \
417
+ ports/MSVC++/2008clr/mpg123clr/string.cpp \
418
+ ports/MSVC++/2008clr/mpg123clr/string.h \
419
+ ports/MSVC++/2008clr/mpg123clr/targetver.h \
420
+ ports/MSVC++/2008clr/mpg123clr/text.cpp \
421
+ ports/MSVC++/2008clr/mpg123clr/text.h \
422
+ ports/MSVC++/2008clr/examples/feedseekclr/feedseekclr.csproj \
423
+ ports/MSVC++/2008clr/examples/feedseekclr/Program.cs \
424
+ ports/MSVC++/2008clr/examples/feedseekclr/Properties/AssemblyInfo.cs \
425
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/ReplaceReaderclr.csproj \
426
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/Program.cs \
427
+ ports/MSVC++/2008clr/examples/ReplaceReaderclr/Properties/AssemblyInfo.cs \
428
+ ports/MSVC++/2008clr/examples/scanclr/scanclr.csproj \
429
+ ports/MSVC++/2008clr/examples/scanclr/Program.cs \
430
+ ports/MSVC++/2008clr/examples/scanclr/Properties/AssemblyInfo.cs \
431
+ ports/MSVC++/2010/mpg123.sln \
432
+ ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj \
433
+ ports/MSVC++/2010/dump_seekindex/dump_seekindex.vcxproj.filters \
434
+ ports/MSVC++/2010/feedseek/feedseek.vcxproj \
435
+ ports/MSVC++/2010/feedseek/feedseek.vcxproj.filters \
436
+ ports/MSVC++/2010/libmpg123/libmpg123.vcxproj \
437
+ ports/MSVC++/2010/scan/scan.vcxproj \
438
+ ports/MSVC++/2010/scan/scan.vcxproj.filters \
439
+ ports/MSVC++/CMP3Stream/libMPG123/libMPG123.vcproj \
440
+ ports/MSVC++/CMP3Stream/libMPG123/PLACE_LIBMPG123_SOURCES_HERE \
441
+ ports/MSVC++/CMP3Stream/README \
442
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_Log.CPP \
443
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_FileIn.CPP \
444
+ ports/MSVC++/CMP3Stream/SOURCE/SourceFilter_MP3Stream.CPP \
445
+ ports/MSVC++/CMP3Stream/SOURCE/CORE_Mutex.CPP \
446
+ ports/MSVC++/CMP3Stream/INCLUDE/CORE/CORE_FileIn.H \
447
+ ports/MSVC++/CMP3Stream/INCLUDE/CORE/SourceFilter_MP3.H \
448
+ ports/MSVC++/CMP3Stream/INCLUDE/IIEP_FileIn.H \
449
+ ports/MSVC++/CMP3Stream/INCLUDE/IIEP_Def.H \
450
+ ports/README \
451
+ ports/Sony_PSP/config.h \
452
+ ports/Sony_PSP/README \
453
+ ports/Sony_PSP/Makefile.psp \
454
+ ports/Sony_PSP/readers.c.patch \
455
+ ports/mpg123_.pas \
456
+ ports/Xcode/config.h \
457
+ ports/Xcode/mpg123.h \
458
+ ports/Xcode/mpg123.xcodeproj/project.pbxproj \
459
+ scripts/benchmark-cpu.pl \
460
+ scripts/tag_lyrics.py
461
+
462
+ all: all-recursive
463
+
464
+ .SUFFIXES:
465
+ am--refresh: Makefile
466
+ @:
467
+ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
468
+ @for dep in $?; do \
469
+ case '$(am__configure_deps)' in \
470
+ *$$dep*) \
471
+ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
472
+ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
473
+ && exit 0; \
474
+ exit 1;; \
475
+ esac; \
476
+ done; \
477
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
478
+ $(am__cd) $(top_srcdir) && \
479
+ $(AUTOMAKE) --gnu Makefile
480
+ .PRECIOUS: Makefile
481
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
482
+ @case '$?' in \
483
+ *config.status*) \
484
+ echo ' $(SHELL) ./config.status'; \
485
+ $(SHELL) ./config.status;; \
486
+ *) \
487
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
488
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
489
+ esac;
490
+
491
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
492
+ $(SHELL) ./config.status --recheck
493
+
494
+ $(top_srcdir)/configure: $(am__configure_deps)
495
+ $(am__cd) $(srcdir) && $(AUTOCONF)
496
+ $(ACLOCAL_M4): $(am__aclocal_m4_deps)
497
+ $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
498
+ $(am__aclocal_m4_deps):
499
+ libmpg123.pc: $(top_builddir)/config.status $(srcdir)/libmpg123.pc.in
500
+ cd $(top_builddir) && $(SHELL) ./config.status $@
501
+ mpg123.spec: $(top_builddir)/config.status $(srcdir)/mpg123.spec.in
502
+ cd $(top_builddir) && $(SHELL) ./config.status $@
503
+
504
+ mostlyclean-libtool:
505
+ -rm -f *.lo
506
+
507
+ clean-libtool:
508
+ -rm -rf .libs _libs
509
+
510
+ distclean-libtool:
511
+ -rm -f libtool config.lt
512
+ install-man1: $(dist_man_MANS)
513
+ @$(NORMAL_INSTALL)
514
+ @list1=''; \
515
+ list2='$(dist_man_MANS)'; \
516
+ test -n "$(man1dir)" \
517
+ && test -n "`echo $$list1$$list2`" \
518
+ || exit 0; \
519
+ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
520
+ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
521
+ { for i in $$list1; do echo "$$i"; done; \
522
+ if test -n "$$list2"; then \
523
+ for i in $$list2; do echo "$$i"; done \
524
+ | sed -n '/\.1[a-z]*$$/p'; \
525
+ fi; \
526
+ } | while read p; do \
527
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
528
+ echo "$$d$$p"; echo "$$p"; \
529
+ done | \
530
+ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
531
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
532
+ sed 'N;N;s,\n, ,g' | { \
533
+ list=; while read file base inst; do \
534
+ if test "$$base" = "$$inst"; then list="$$list $$file"; else \
535
+ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
536
+ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
537
+ fi; \
538
+ done; \
539
+ for i in $$list; do echo "$$i"; done | $(am__base_list) | \
540
+ while read files; do \
541
+ test -z "$$files" || { \
542
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
543
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
544
+ done; }
545
+
546
+ uninstall-man1:
547
+ @$(NORMAL_UNINSTALL)
548
+ @list=''; test -n "$(man1dir)" || exit 0; \
549
+ files=`{ for i in $$list; do echo "$$i"; done; \
550
+ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
551
+ sed -n '/\.1[a-z]*$$/p'; \
552
+ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
553
+ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
554
+ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
555
+ install-pkgconfigDATA: $(pkgconfig_DATA)
556
+ @$(NORMAL_INSTALL)
557
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
558
+ if test -n "$$list"; then \
559
+ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
560
+ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
561
+ fi; \
562
+ for p in $$list; do \
563
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
564
+ echo "$$d$$p"; \
565
+ done | $(am__base_list) | \
566
+ while read files; do \
567
+ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
568
+ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
569
+ done
570
+
571
+ uninstall-pkgconfigDATA:
572
+ @$(NORMAL_UNINSTALL)
573
+ @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
574
+ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
575
+ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
576
+
577
+ # This directory's subdirectories are mostly independent; you can cd
578
+ # into them and run 'make' without going through this Makefile.
579
+ # To change the values of 'make' variables: instead of editing Makefiles,
580
+ # (1) if the variable is set in 'config.status', edit 'config.status'
581
+ # (which will cause the Makefiles to be regenerated when you run 'make');
582
+ # (2) otherwise, pass the desired values on the 'make' command line.
583
+ $(RECURSIVE_TARGETS) $(RECURSIVE_CLEAN_TARGETS):
584
+ @fail= failcom='exit 1'; \
585
+ for f in x $$MAKEFLAGS; do \
586
+ case $$f in \
587
+ *=* | --[!k]*);; \
588
+ *k*) failcom='fail=yes';; \
589
+ esac; \
590
+ done; \
591
+ dot_seen=no; \
592
+ target=`echo $@ | sed s/-recursive//`; \
593
+ case "$@" in \
594
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
595
+ *) list='$(SUBDIRS)' ;; \
596
+ esac; \
597
+ for subdir in $$list; do \
598
+ echo "Making $$target in $$subdir"; \
599
+ if test "$$subdir" = "."; then \
600
+ dot_seen=yes; \
601
+ local_target="$$target-am"; \
602
+ else \
603
+ local_target="$$target"; \
604
+ fi; \
605
+ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
606
+ || eval $$failcom; \
607
+ done; \
608
+ if test "$$dot_seen" = "no"; then \
609
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
610
+ fi; test -z "$$fail"
611
+ tags-recursive:
612
+ list='$(SUBDIRS)'; for subdir in $$list; do \
613
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
614
+ done
615
+ ctags-recursive:
616
+ list='$(SUBDIRS)'; for subdir in $$list; do \
617
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
618
+ done
619
+ cscopelist-recursive:
620
+ list='$(SUBDIRS)'; for subdir in $$list; do \
621
+ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) cscopelist); \
622
+ done
623
+
624
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
625
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
626
+ unique=`for i in $$list; do \
627
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
628
+ done | \
629
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
630
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
631
+ mkid -fID $$unique
632
+ tags: TAGS
633
+
634
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
635
+ $(TAGS_FILES) $(LISP)
636
+ set x; \
637
+ here=`pwd`; \
638
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
639
+ include_option=--etags-include; \
640
+ empty_fix=.; \
641
+ else \
642
+ include_option=--include; \
643
+ empty_fix=; \
644
+ fi; \
645
+ list='$(SUBDIRS)'; for subdir in $$list; do \
646
+ if test "$$subdir" = .; then :; else \
647
+ test ! -f $$subdir/TAGS || \
648
+ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
649
+ fi; \
650
+ done; \
651
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
652
+ unique=`for i in $$list; do \
653
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
654
+ done | \
655
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
656
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
657
+ shift; \
658
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
659
+ test -n "$$unique" || unique=$$empty_fix; \
660
+ if test $$# -gt 0; then \
661
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
662
+ "$$@" $$unique; \
663
+ else \
664
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
665
+ $$unique; \
666
+ fi; \
667
+ fi
668
+ ctags: CTAGS
669
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
670
+ $(TAGS_FILES) $(LISP)
671
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
672
+ unique=`for i in $$list; do \
673
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
674
+ done | \
675
+ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
676
+ END { if (nonempty) { for (i in files) print i; }; }'`; \
677
+ test -z "$(CTAGS_ARGS)$$unique" \
678
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
679
+ $$unique
680
+
681
+ GTAGS:
682
+ here=`$(am__cd) $(top_builddir) && pwd` \
683
+ && $(am__cd) $(top_srcdir) \
684
+ && gtags -i $(GTAGS_ARGS) "$$here"
685
+
686
+ cscope: cscope.files
687
+ test ! -s cscope.files \
688
+ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
689
+
690
+ clean-cscope:
691
+ -rm -f cscope.files
692
+
693
+ cscope.files: clean-cscope cscopelist-recursive cscopelist
694
+
695
+ cscopelist: cscopelist-recursive $(HEADERS) $(SOURCES) $(LISP)
696
+ list='$(SOURCES) $(HEADERS) $(LISP)'; \
697
+ case "$(srcdir)" in \
698
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
699
+ *) sdir=$(subdir)/$(srcdir) ;; \
700
+ esac; \
701
+ for i in $$list; do \
702
+ if test -f "$$i"; then \
703
+ echo "$(subdir)/$$i"; \
704
+ else \
705
+ echo "$$sdir/$$i"; \
706
+ fi; \
707
+ done >> $(top_builddir)/cscope.files
708
+
709
+ distclean-tags:
710
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
711
+ -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
712
+
713
+ distdir: $(DISTFILES)
714
+ @list='$(MANS)'; if test -n "$$list"; then \
715
+ list=`for p in $$list; do \
716
+ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
717
+ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
718
+ if test -n "$$list" && \
719
+ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
720
+ echo "error: found man pages containing the 'missing help2man' replacement text:" >&2; \
721
+ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
722
+ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
723
+ echo " typically 'make maintainer-clean' will remove them" >&2; \
724
+ exit 1; \
725
+ else :; fi; \
726
+ else :; fi
727
+ $(am__remove_distdir)
728
+ test -d "$(distdir)" || mkdir "$(distdir)"
729
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
730
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
731
+ list='$(DISTFILES)'; \
732
+ dist_files=`for file in $$list; do echo $$file; done | \
733
+ sed -e "s|^$$srcdirstrip/||;t" \
734
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
735
+ case $$dist_files in \
736
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
737
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
738
+ sort -u` ;; \
739
+ esac; \
740
+ for file in $$dist_files; do \
741
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
742
+ if test -d $$d/$$file; then \
743
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
744
+ if test -d "$(distdir)/$$file"; then \
745
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
746
+ fi; \
747
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
748
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
749
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
750
+ fi; \
751
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
752
+ else \
753
+ test -f "$(distdir)/$$file" \
754
+ || cp -p $$d/$$file "$(distdir)/$$file" \
755
+ || exit 1; \
756
+ fi; \
757
+ done
758
+ @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
759
+ if test "$$subdir" = .; then :; else \
760
+ $(am__make_dryrun) \
761
+ || test -d "$(distdir)/$$subdir" \
762
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
763
+ || exit 1; \
764
+ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
765
+ $(am__relativize); \
766
+ new_distdir=$$reldir; \
767
+ dir1=$$subdir; dir2="$(top_distdir)"; \
768
+ $(am__relativize); \
769
+ new_top_distdir=$$reldir; \
770
+ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
771
+ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
772
+ ($(am__cd) $$subdir && \
773
+ $(MAKE) $(AM_MAKEFLAGS) \
774
+ top_distdir="$$new_top_distdir" \
775
+ distdir="$$new_distdir" \
776
+ am__remove_distdir=: \
777
+ am__skip_length_check=: \
778
+ am__skip_mode_fix=: \
779
+ distdir) \
780
+ || exit 1; \
781
+ fi; \
782
+ done
783
+ -test -n "$(am__skip_mode_fix)" \
784
+ || find "$(distdir)" -type d ! -perm -755 \
785
+ -exec chmod u+rwx,go+rx {} \; -o \
786
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
787
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
788
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
789
+ || chmod -R a+r "$(distdir)"
790
+ dist-gzip: distdir
791
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
792
+ $(am__post_remove_distdir)
793
+
794
+ dist-bzip2: distdir
795
+ tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
796
+ $(am__post_remove_distdir)
797
+
798
+ dist-lzip: distdir
799
+ tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
800
+ $(am__post_remove_distdir)
801
+
802
+ dist-xz: distdir
803
+ tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
804
+ $(am__post_remove_distdir)
805
+
806
+ dist-tarZ: distdir
807
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
808
+ $(am__post_remove_distdir)
809
+
810
+ dist-shar: distdir
811
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
812
+ $(am__post_remove_distdir)
813
+
814
+ dist-zip: distdir
815
+ -rm -f $(distdir).zip
816
+ zip -rq $(distdir).zip $(distdir)
817
+ $(am__post_remove_distdir)
818
+
819
+ dist dist-all:
820
+ $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
821
+ $(am__post_remove_distdir)
822
+
823
+ # This target untars the dist file and tries a VPATH configuration. Then
824
+ # it guarantees that the distribution is self-contained by making another
825
+ # tarfile.
826
+ distcheck: dist
827
+ case '$(DIST_ARCHIVES)' in \
828
+ *.tar.gz*) \
829
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
830
+ *.tar.bz2*) \
831
+ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
832
+ *.tar.lz*) \
833
+ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
834
+ *.tar.xz*) \
835
+ xz -dc $(distdir).tar.xz | $(am__untar) ;;\
836
+ *.tar.Z*) \
837
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
838
+ *.shar.gz*) \
839
+ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
840
+ *.zip*) \
841
+ unzip $(distdir).zip ;;\
842
+ esac
843
+ chmod -R a-w $(distdir); chmod u+w $(distdir)
844
+ mkdir $(distdir)/_build
845
+ mkdir $(distdir)/_inst
846
+ chmod a-w $(distdir)
847
+ test -d $(distdir)/_build || exit 0; \
848
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
849
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
850
+ && am__cwd=`pwd` \
851
+ && $(am__cd) $(distdir)/_build \
852
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
853
+ $(AM_DISTCHECK_CONFIGURE_FLAGS) \
854
+ $(DISTCHECK_CONFIGURE_FLAGS) \
855
+ && $(MAKE) $(AM_MAKEFLAGS) \
856
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
857
+ && $(MAKE) $(AM_MAKEFLAGS) check \
858
+ && $(MAKE) $(AM_MAKEFLAGS) install \
859
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
860
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
861
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
862
+ distuninstallcheck \
863
+ && chmod -R a-w "$$dc_install_base" \
864
+ && ({ \
865
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
866
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
867
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
868
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
869
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
870
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
871
+ && rm -rf "$$dc_destdir" \
872
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
873
+ && rm -rf $(DIST_ARCHIVES) \
874
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
875
+ && cd "$$am__cwd" \
876
+ || exit 1
877
+ $(am__post_remove_distdir)
878
+ @(echo "$(distdir) archives ready for distribution: "; \
879
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
880
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
881
+ distuninstallcheck:
882
+ @test -n '$(distuninstallcheck_dir)' || { \
883
+ echo 'ERROR: trying to run $@ with an empty' \
884
+ '$$(distuninstallcheck_dir)' >&2; \
885
+ exit 1; \
886
+ }; \
887
+ $(am__cd) '$(distuninstallcheck_dir)' || { \
888
+ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
889
+ exit 1; \
890
+ }; \
891
+ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
892
+ || { echo "ERROR: files left after uninstall:" ; \
893
+ if test -n "$(DESTDIR)"; then \
894
+ echo " (check DESTDIR support)"; \
895
+ fi ; \
896
+ $(distuninstallcheck_listfiles) ; \
897
+ exit 1; } >&2
898
+ distcleancheck: distclean
899
+ @if test '$(srcdir)' = . ; then \
900
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
901
+ exit 1 ; \
902
+ fi
903
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
904
+ || { echo "ERROR: files left in build directory after distclean:" ; \
905
+ $(distcleancheck_listfiles) ; \
906
+ exit 1; } >&2
907
+ check-am: all-am
908
+ check: check-recursive
909
+ all-am: Makefile $(MANS) $(DATA)
910
+ installdirs: installdirs-recursive
911
+ installdirs-am:
912
+ for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(pkgconfigdir)"; do \
913
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
914
+ done
915
+ install: install-recursive
916
+ install-exec: install-exec-recursive
917
+ install-data: install-data-recursive
918
+ uninstall: uninstall-recursive
919
+
920
+ install-am: all-am
921
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
922
+
923
+ installcheck: installcheck-recursive
924
+ install-strip:
925
+ if test -z '$(STRIP)'; then \
926
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
927
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
928
+ install; \
929
+ else \
930
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
931
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
932
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
933
+ fi
934
+ mostlyclean-generic:
935
+
936
+ clean-generic:
937
+
938
+ distclean-generic:
939
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
940
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
941
+
942
+ maintainer-clean-generic:
943
+ @echo "This command is intended for maintainers to use"
944
+ @echo "it deletes files that may require special tools to rebuild."
945
+ clean: clean-recursive
946
+
947
+ clean-am: clean-generic clean-libtool mostlyclean-am
948
+
949
+ distclean: distclean-recursive
950
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
951
+ -rm -f Makefile
952
+ distclean-am: clean-am distclean-generic distclean-libtool \
953
+ distclean-tags
954
+
955
+ dvi: dvi-recursive
956
+
957
+ dvi-am:
958
+
959
+ html: html-recursive
960
+
961
+ html-am:
962
+
963
+ info: info-recursive
964
+
965
+ info-am:
966
+
967
+ install-data-am: install-man install-pkgconfigDATA
968
+
969
+ install-dvi: install-dvi-recursive
970
+
971
+ install-dvi-am:
972
+
973
+ install-exec-am:
974
+
975
+ install-html: install-html-recursive
976
+
977
+ install-html-am:
978
+
979
+ install-info: install-info-recursive
980
+
981
+ install-info-am:
982
+
983
+ install-man: install-man1
984
+
985
+ install-pdf: install-pdf-recursive
986
+
987
+ install-pdf-am:
988
+
989
+ install-ps: install-ps-recursive
990
+
991
+ install-ps-am:
992
+
993
+ installcheck-am:
994
+
995
+ maintainer-clean: maintainer-clean-recursive
996
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
997
+ -rm -rf $(top_srcdir)/autom4te.cache
998
+ -rm -f Makefile
999
+ maintainer-clean-am: distclean-am maintainer-clean-generic
1000
+
1001
+ mostlyclean: mostlyclean-recursive
1002
+
1003
+ mostlyclean-am: mostlyclean-generic mostlyclean-libtool
1004
+
1005
+ pdf: pdf-recursive
1006
+
1007
+ pdf-am:
1008
+
1009
+ ps: ps-recursive
1010
+
1011
+ ps-am:
1012
+
1013
+ uninstall-am: uninstall-man uninstall-pkgconfigDATA
1014
+
1015
+ uninstall-man: uninstall-man1
1016
+
1017
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) \
1018
+ cscopelist-recursive ctags-recursive install-am install-strip \
1019
+ tags-recursive
1020
+
1021
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
1022
+ all all-am am--refresh check check-am clean clean-cscope \
1023
+ clean-generic clean-libtool cscope cscopelist \
1024
+ cscopelist-recursive ctags ctags-recursive dist dist-all \
1025
+ dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ dist-xz \
1026
+ dist-zip distcheck distclean distclean-generic \
1027
+ distclean-libtool distclean-tags distcleancheck distdir \
1028
+ distuninstallcheck dvi dvi-am html html-am info info-am \
1029
+ install install-am install-data install-data-am install-dvi \
1030
+ install-dvi-am install-exec install-exec-am install-html \
1031
+ install-html-am install-info install-info-am install-man \
1032
+ install-man1 install-pdf install-pdf-am install-pkgconfigDATA \
1033
+ install-ps install-ps-am install-strip installcheck \
1034
+ installcheck-am installdirs installdirs-am maintainer-clean \
1035
+ maintainer-clean-generic mostlyclean mostlyclean-generic \
1036
+ mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
1037
+ uninstall uninstall-am uninstall-man uninstall-man1 \
1038
+ uninstall-pkgconfigDATA
1039
+
1040
+
1041
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1042
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1043
+ .NOEXPORT: