ffi 0.5.0-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of ffi might be problematic. Click here for more details.

Files changed (328) hide show
  1. data/LICENSE +51 -0
  2. data/README.rdoc +69 -0
  3. data/Rakefile +191 -0
  4. data/ext/ffi_c/AbstractMemory.c +489 -0
  5. data/ext/ffi_c/AbstractMemory.h +160 -0
  6. data/ext/ffi_c/ArrayType.c +129 -0
  7. data/ext/ffi_c/ArrayType.h +58 -0
  8. data/ext/ffi_c/AutoPointer.c +61 -0
  9. data/ext/ffi_c/AutoPointer.h +18 -0
  10. data/ext/ffi_c/Buffer.c +187 -0
  11. data/ext/ffi_c/Call.c +853 -0
  12. data/ext/ffi_c/Call.h +86 -0
  13. data/ext/ffi_c/ClosurePool.c +302 -0
  14. data/ext/ffi_c/ClosurePool.h +29 -0
  15. data/ext/ffi_c/DynamicLibrary.c +216 -0
  16. data/ext/ffi_c/DynamicLibrary.h +22 -0
  17. data/ext/ffi_c/Function.c +478 -0
  18. data/ext/ffi_c/Function.h +80 -0
  19. data/ext/ffi_c/FunctionInfo.c +221 -0
  20. data/ext/ffi_c/LastError.c +159 -0
  21. data/ext/ffi_c/LastError.h +18 -0
  22. data/ext/ffi_c/MemoryPointer.c +178 -0
  23. data/ext/ffi_c/MemoryPointer.h +20 -0
  24. data/ext/ffi_c/MethodHandle.c +346 -0
  25. data/ext/ffi_c/MethodHandle.h +53 -0
  26. data/ext/ffi_c/Platform.c +59 -0
  27. data/ext/ffi_c/Platform.h +16 -0
  28. data/ext/ffi_c/Pointer.c +224 -0
  29. data/ext/ffi_c/Pointer.h +49 -0
  30. data/ext/ffi_c/Struct.c +770 -0
  31. data/ext/ffi_c/Struct.h +80 -0
  32. data/ext/ffi_c/StructByValue.c +140 -0
  33. data/ext/ffi_c/StructByValue.h +53 -0
  34. data/ext/ffi_c/StructLayout.c +450 -0
  35. data/ext/ffi_c/Type.c +329 -0
  36. data/ext/ffi_c/Type.h +57 -0
  37. data/ext/ffi_c/Types.c +103 -0
  38. data/ext/ffi_c/Types.h +85 -0
  39. data/ext/ffi_c/Variadic.c +260 -0
  40. data/ext/ffi_c/compat.h +72 -0
  41. data/ext/ffi_c/endian.h +40 -0
  42. data/ext/ffi_c/extconf.rb +30 -0
  43. data/ext/ffi_c/ffi.c +82 -0
  44. data/ext/ffi_c/libffi.bsd.mk +34 -0
  45. data/ext/ffi_c/libffi.darwin.mk +75 -0
  46. data/ext/ffi_c/libffi.gnu.mk +29 -0
  47. data/ext/ffi_c/libffi.mk +13 -0
  48. data/ext/ffi_c/libffi/ChangeLog +3243 -0
  49. data/ext/ffi_c/libffi/ChangeLog.libffi +347 -0
  50. data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
  51. data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
  52. data/ext/ffi_c/libffi/LICENSE +21 -0
  53. data/ext/ffi_c/libffi/Makefile.am +177 -0
  54. data/ext/ffi_c/libffi/Makefile.in +1640 -0
  55. data/ext/ffi_c/libffi/README +328 -0
  56. data/ext/ffi_c/libffi/TODO +1 -0
  57. data/ext/ffi_c/libffi/acinclude.m4 +92 -0
  58. data/ext/ffi_c/libffi/aclocal.m4 +7516 -0
  59. data/ext/ffi_c/libffi/compile +142 -0
  60. data/ext/ffi_c/libffi/config.guess +1516 -0
  61. data/ext/ffi_c/libffi/config.sub +1626 -0
  62. data/ext/ffi_c/libffi/configure +24414 -0
  63. data/ext/ffi_c/libffi/configure.ac +365 -0
  64. data/ext/ffi_c/libffi/configure.host +11 -0
  65. data/ext/ffi_c/libffi/depcomp +584 -0
  66. data/ext/ffi_c/libffi/doc/libffi.info +533 -0
  67. data/ext/ffi_c/libffi/doc/libffi.texi +541 -0
  68. data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
  69. data/ext/ffi_c/libffi/doc/version.texi +4 -0
  70. data/ext/ffi_c/libffi/fficonfig.h.in +160 -0
  71. data/ext/ffi_c/libffi/include/Makefile.am +9 -0
  72. data/ext/ffi_c/libffi/include/Makefile.in +422 -0
  73. data/ext/ffi_c/libffi/include/ffi.h.in +393 -0
  74. data/ext/ffi_c/libffi/include/ffi_common.h +98 -0
  75. data/ext/ffi_c/libffi/install-sh +323 -0
  76. data/ext/ffi_c/libffi/libffi.pc.in +10 -0
  77. data/ext/ffi_c/libffi/libtool-version +29 -0
  78. data/ext/ffi_c/libffi/ltcf-c.sh +861 -0
  79. data/ext/ffi_c/libffi/ltcf-cxx.sh +1069 -0
  80. data/ext/ffi_c/libffi/ltcf-gcj.sh +700 -0
  81. data/ext/ffi_c/libffi/ltconfig +2862 -0
  82. data/ext/ffi_c/libffi/ltmain.sh +6930 -0
  83. data/ext/ffi_c/libffi/man/Makefile.am +8 -0
  84. data/ext/ffi_c/libffi/man/Makefile.in +395 -0
  85. data/ext/ffi_c/libffi/man/ffi.3 +31 -0
  86. data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
  87. data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
  88. data/ext/ffi_c/libffi/mdate-sh +201 -0
  89. data/ext/ffi_c/libffi/missing +353 -0
  90. data/ext/ffi_c/libffi/mkinstalldirs +158 -0
  91. data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
  92. data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
  93. data/ext/ffi_c/libffi/src/alpha/osf.S +366 -0
  94. data/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
  95. data/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
  96. data/ext/ffi_c/libffi/src/arm/sysv.S +299 -0
  97. data/ext/ffi_c/libffi/src/closures.c +596 -0
  98. data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
  99. data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
  100. data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
  101. data/ext/ffi_c/libffi/src/debug.c +59 -0
  102. data/ext/ffi_c/libffi/src/dlmalloc.c +5099 -0
  103. data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
  104. data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
  105. data/ext/ffi_c/libffi/src/frv/ffitarget.h +61 -0
  106. data/ext/ffi_c/libffi/src/ia64/ffi.c +580 -0
  107. data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
  108. data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
  109. data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
  110. data/ext/ffi_c/libffi/src/java_raw_api.c +359 -0
  111. data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
  112. data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
  113. data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
  114. data/ext/ffi_c/libffi/src/m68k/ffi.c +278 -0
  115. data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
  116. data/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
  117. data/ext/ffi_c/libffi/src/mips/ffi.c +926 -0
  118. data/ext/ffi_c/libffi/src/mips/ffitarget.h +202 -0
  119. data/ext/ffi_c/libffi/src/mips/n32.S +534 -0
  120. data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
  121. data/ext/ffi_c/libffi/src/pa/ffi.c +709 -0
  122. data/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -0
  123. data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
  124. data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
  125. data/ext/ffi_c/libffi/src/powerpc/aix.S +225 -0
  126. data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +247 -0
  127. data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
  128. data/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
  129. data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
  130. data/ext/ffi_c/libffi/src/powerpc/ffi.c +1429 -0
  131. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +800 -0
  132. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +118 -0
  133. data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
  134. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
  135. data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
  136. data/ext/ffi_c/libffi/src/powerpc/sysv.S +230 -0
  137. data/ext/ffi_c/libffi/src/prep_cif.c +174 -0
  138. data/ext/ffi_c/libffi/src/raw_api.c +254 -0
  139. data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
  140. data/ext/ffi_c/libffi/src/s390/ffitarget.h +60 -0
  141. data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
  142. data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
  143. data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
  144. data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
  145. data/ext/ffi_c/libffi/src/sh64/ffi.c +453 -0
  146. data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
  147. data/ext/ffi_c/libffi/src/sh64/sysv.S +530 -0
  148. data/ext/ffi_c/libffi/src/sparc/ffi.c +610 -0
  149. data/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
  150. data/ext/ffi_c/libffi/src/sparc/v8.S +272 -0
  151. data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
  152. data/ext/ffi_c/libffi/src/types.c +77 -0
  153. data/ext/ffi_c/libffi/src/x86/darwin.S +443 -0
  154. data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
  155. data/ext/ffi_c/libffi/src/x86/ffi.c +475 -0
  156. data/ext/ffi_c/libffi/src/x86/ffi64.c +572 -0
  157. data/ext/ffi_c/libffi/src/x86/ffitarget.h +90 -0
  158. data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
  159. data/ext/ffi_c/libffi/src/x86/sysv.S +437 -0
  160. data/ext/ffi_c/libffi/src/x86/unix64.S +418 -0
  161. data/ext/ffi_c/libffi/src/x86/win32.S +391 -0
  162. data/ext/ffi_c/libffi/testsuite/Makefile.am +71 -0
  163. data/ext/ffi_c/libffi/testsuite/Makefile.in +447 -0
  164. data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
  165. data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +289 -0
  166. data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
  167. data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
  168. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +36 -0
  169. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +97 -0
  170. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +89 -0
  171. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +89 -0
  172. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +90 -0
  173. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +97 -0
  174. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +99 -0
  175. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +98 -0
  176. data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +72 -0
  177. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +102 -0
  178. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +103 -0
  179. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +104 -0
  180. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +110 -0
  181. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +97 -0
  182. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +99 -0
  183. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +101 -0
  184. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +121 -0
  185. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +98 -0
  186. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +103 -0
  187. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +98 -0
  188. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +98 -0
  189. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +106 -0
  190. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +98 -0
  191. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +117 -0
  192. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +106 -0
  193. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +132 -0
  194. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +121 -0
  195. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +107 -0
  196. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +125 -0
  197. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +105 -0
  198. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +96 -0
  199. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +98 -0
  200. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +99 -0
  201. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +101 -0
  202. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +99 -0
  203. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +100 -0
  204. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +101 -0
  205. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +99 -0
  206. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +99 -0
  207. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +99 -0
  208. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +99 -0
  209. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +99 -0
  210. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +100 -0
  211. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +51 -0
  212. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +51 -0
  213. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +82 -0
  214. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +82 -0
  215. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +94 -0
  216. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +99 -0
  217. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +82 -0
  218. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +94 -0
  219. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +52 -0
  220. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +50 -0
  221. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +50 -0
  222. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +50 -0
  223. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +51 -0
  224. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +54 -0
  225. data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +51 -0
  226. data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +86 -0
  227. data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
  228. data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
  229. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +57 -0
  230. data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
  231. data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
  232. data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
  233. data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
  234. data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
  235. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +160 -0
  236. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +169 -0
  237. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +141 -0
  238. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +118 -0
  239. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +119 -0
  240. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +119 -0
  241. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +120 -0
  242. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +139 -0
  243. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +119 -0
  244. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +139 -0
  245. data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +139 -0
  246. data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +98 -0
  247. data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
  248. data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
  249. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
  250. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
  251. data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
  252. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
  253. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
  254. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
  255. data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
  256. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
  257. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
  258. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +42 -0
  259. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
  260. data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
  261. data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
  262. data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
  263. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
  264. data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
  265. data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
  266. data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
  267. data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
  268. data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
  269. data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
  270. data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
  271. data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
  272. data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
  273. data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
  274. data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +86 -0
  275. data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +38 -0
  276. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +123 -0
  277. data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
  278. data/ext/ffi_c/libffi/texinfo.tex +7482 -0
  279. data/ext/ffi_c/rbffi.h +26 -0
  280. data/gen/Rakefile +12 -0
  281. data/lib/1.8/ffi_c.so +0 -0
  282. data/lib/1.9/ffi_c.so +0 -0
  283. data/lib/ffi.rb +11 -0
  284. data/lib/ffi/autopointer.rb +61 -0
  285. data/lib/ffi/buffer.rb +0 -0
  286. data/lib/ffi/callback.rb +10 -0
  287. data/lib/ffi/enum.rb +78 -0
  288. data/lib/ffi/errno.rb +8 -0
  289. data/lib/ffi/ffi.rb +99 -0
  290. data/lib/ffi/io.rb +21 -0
  291. data/lib/ffi/library.rb +218 -0
  292. data/lib/ffi/managedstruct.rb +55 -0
  293. data/lib/ffi/memorypointer.rb +73 -0
  294. data/lib/ffi/platform.rb +88 -0
  295. data/lib/ffi/pointer.rb +119 -0
  296. data/lib/ffi/struct.rb +183 -0
  297. data/lib/ffi/tools/const_generator.rb +177 -0
  298. data/lib/ffi/tools/generator.rb +58 -0
  299. data/lib/ffi/tools/generator_task.rb +35 -0
  300. data/lib/ffi/tools/struct_generator.rb +194 -0
  301. data/lib/ffi/tools/types_generator.rb +123 -0
  302. data/lib/ffi/types.rb +153 -0
  303. data/lib/ffi/union.rb +12 -0
  304. data/lib/ffi/variadic.rb +25 -0
  305. data/spec/ffi/bool_spec.rb +24 -0
  306. data/spec/ffi/buffer_spec.rb +202 -0
  307. data/spec/ffi/callback_spec.rb +591 -0
  308. data/spec/ffi/enum_spec.rb +164 -0
  309. data/spec/ffi/errno_spec.rb +13 -0
  310. data/spec/ffi/function_spec.rb +73 -0
  311. data/spec/ffi/library_spec.rb +148 -0
  312. data/spec/ffi/managed_struct_spec.rb +56 -0
  313. data/spec/ffi/number_spec.rb +231 -0
  314. data/spec/ffi/pointer_spec.rb +195 -0
  315. data/spec/ffi/rbx/attach_function_spec.rb +27 -0
  316. data/spec/ffi/rbx/memory_pointer_spec.rb +102 -0
  317. data/spec/ffi/rbx/spec_helper.rb +1 -0
  318. data/spec/ffi/rbx/struct_spec.rb +13 -0
  319. data/spec/ffi/spec_helper.rb +17 -0
  320. data/spec/ffi/string_spec.rb +103 -0
  321. data/spec/ffi/struct_callback_spec.rb +64 -0
  322. data/spec/ffi/struct_initialize_spec.rb +30 -0
  323. data/spec/ffi/struct_spec.rb +529 -0
  324. data/spec/ffi/typedef_spec.rb +48 -0
  325. data/spec/ffi/union_spec.rb +60 -0
  326. data/spec/ffi/variadic_spec.rb +84 -0
  327. data/spec/spec.opts +4 -0
  328. metadata +396 -0
@@ -0,0 +1,21 @@
1
+ libffi - Copyright (c) 1996-2008 Red Hat, Inc and others.
2
+ See source files for details.
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining
5
+ a copy of this software and associated documentation files (the
6
+ ``Software''), to deal in the Software without restriction, including
7
+ without limitation the rights to use, copy, modify, merge, publish,
8
+ distribute, sublicense, and/or sell copies of the Software, and to
9
+ permit persons to whom the Software is furnished to do so, subject to
10
+ the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included
13
+ in all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND,
16
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
19
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,177 @@
1
+ ## Process this with automake to create Makefile.in
2
+
3
+ AUTOMAKE_OPTIONS = foreign subdir-objects
4
+
5
+ SUBDIRS = include testsuite man
6
+
7
+ EXTRA_DIST = LICENSE ChangeLog.v1 ChangeLog.libgcj configure.host \
8
+ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \
9
+ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \
10
+ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \
11
+ src/ia64/ffi.c src/ia64/ffitarget.h src/ia64/ia64_flags.h \
12
+ src/ia64/unix.S \
13
+ src/mips/ffi.c src/mips/n32.S src/mips/o32.S \
14
+ src/mips/ffitarget.h \
15
+ src/m32r/ffi.c src/m32r/sysv.S src/m32r/ffitarget.h \
16
+ src/m68k/ffi.c src/m68k/sysv.S src/m68k/ffitarget.h \
17
+ src/powerpc/ffi.c src/powerpc/sysv.S \
18
+ src/powerpc/linux64.S src/powerpc/linux64_closure.S \
19
+ src/powerpc/ppc_closure.S src/powerpc/asm.h \
20
+ src/powerpc/aix.S src/powerpc/darwin.S \
21
+ src/powerpc/aix_closure.S src/powerpc/darwin_closure.S \
22
+ src/powerpc/ffi_darwin.c src/powerpc/ffitarget.h \
23
+ src/s390/ffi.c src/s390/sysv.S src/s390/ffitarget.h \
24
+ src/sh/ffi.c src/sh/sysv.S src/sh/ffitarget.h \
25
+ src/sh64/ffi.c src/sh64/sysv.S src/sh64/ffitarget.h \
26
+ src/sparc/v8.S src/sparc/v9.S src/sparc/ffitarget.h \
27
+ src/sparc/ffi.c src/x86/darwin64.S \
28
+ src/x86/ffi.c src/x86/sysv.S src/x86/win32.S src/x86/darwin.S \
29
+ src/x86/freebsd.S \
30
+ src/x86/ffi64.c src/x86/unix64.S src/x86/ffitarget.h \
31
+ src/pa/ffitarget.h src/pa/ffi.c src/pa/linux.S src/pa/hpux32.S \
32
+ src/frv/ffi.c src/frv/eabi.S src/frv/ffitarget.h src/dlmalloc.c \
33
+ libtool-version ChangeLog.libffi
34
+
35
+ info_TEXINFOS = doc/libffi.texi
36
+
37
+ ## ################################################################
38
+
39
+ ##
40
+ ## This section is for make and multilib madness.
41
+ ##
42
+
43
+ # Work around what appears to be a GNU make bug handling MAKEFLAGS
44
+ # values defined in terms of make variables, as is the case for CC and
45
+ # friends when we are called from the top level Makefile.
46
+ AM_MAKEFLAGS = \
47
+ "AR_FLAGS=$(AR_FLAGS)" \
48
+ "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
49
+ "CFLAGS=$(CFLAGS)" \
50
+ "CXXFLAGS=$(CXXFLAGS)" \
51
+ "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
52
+ "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
53
+ "INSTALL=$(INSTALL)" \
54
+ "INSTALL_DATA=$(INSTALL_DATA)" \
55
+ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
56
+ "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
57
+ "JC1FLAGS=$(JC1FLAGS)" \
58
+ "LDFLAGS=$(LDFLAGS)" \
59
+ "LIBCFLAGS=$(LIBCFLAGS)" \
60
+ "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
61
+ "MAKE=$(MAKE)" \
62
+ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
63
+ "PICFLAG=$(PICFLAG)" \
64
+ "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
65
+ "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
66
+ "SHELL=$(SHELL)" \
67
+ "exec_prefix=$(exec_prefix)" \
68
+ "infodir=$(infodir)" \
69
+ "libdir=$(libdir)" \
70
+ "prefix=$(prefix)" \
71
+ "AR=$(AR)" \
72
+ "AS=$(AS)" \
73
+ "CC=$(CC)" \
74
+ "CXX=$(CXX)" \
75
+ "LD=$(LD)" \
76
+ "NM=$(NM)" \
77
+ "RANLIB=$(RANLIB)" \
78
+ "DESTDIR=$(DESTDIR)"
79
+
80
+ MAKEOVERRIDES=
81
+
82
+ lib_LTLIBRARIES = libffi.la
83
+ noinst_LTLIBRARIES = libffi_convenience.la
84
+
85
+ libffi_la_SOURCES = src/debug.c src/prep_cif.c src/types.c \
86
+ src/raw_api.c src/java_raw_api.c src/closures.c
87
+
88
+ pkgconfigdir = $(libdir)/pkgconfig
89
+ pkgconfig_DATA = libffi.pc
90
+
91
+ nodist_libffi_la_SOURCES =
92
+
93
+ if MIPS
94
+ nodist_libffi_la_SOURCES += src/mips/ffi.c src/mips/o32.S src/mips/n32.S
95
+ endif
96
+ if X86
97
+ nodist_libffi_la_SOURCES += src/x86/ffi.c src/x86/sysv.S
98
+ endif
99
+ if X86_FREEBSD
100
+ nodist_libffi_la_SOURCES += src/x86/ffi.c src/x86/freebsd.S
101
+ endif
102
+ if X86_WIN32
103
+ nodist_libffi_la_SOURCES += src/x86/ffi.c src/x86/win32.S
104
+ endif
105
+ if X86_DARWIN
106
+ nodist_libffi_la_SOURCES += src/x86/ffi.c src/x86/darwin.S src/x86/ffi64.c src/x86/darwin64.S
107
+ endif
108
+ if SPARC
109
+ nodist_libffi_la_SOURCES += src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S
110
+ endif
111
+ if ALPHA
112
+ nodist_libffi_la_SOURCES += src/alpha/ffi.c src/alpha/osf.S
113
+ endif
114
+ if IA64
115
+ nodist_libffi_la_SOURCES += src/ia64/ffi.c src/ia64/unix.S
116
+ endif
117
+ if M32R
118
+ nodist_libffi_la_SOURCES += src/m32r/sysv.S src/m32r/ffi.c
119
+ endif
120
+ if M68K
121
+ nodist_libffi_la_SOURCES += src/m68k/ffi.c src/m68k/sysv.S
122
+ endif
123
+ if POWERPC
124
+ nodist_libffi_la_SOURCES += src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S src/powerpc/linux64.S src/powerpc/linux64_closure.S
125
+ endif
126
+ if POWERPC_AIX
127
+ nodist_libffi_la_SOURCES += src/powerpc/ffi_darwin.c src/powerpc/aix.S src/powerpc/aix_closure.S
128
+ endif
129
+ if POWERPC_DARWIN
130
+ nodist_libffi_la_SOURCES += src/powerpc/ffi_darwin.c src/powerpc/darwin.S src/powerpc/darwin_closure.S
131
+ endif
132
+ if POWERPC_FREEBSD
133
+ nodist_libffi_la_SOURCES += src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S
134
+ endif
135
+ if ARM
136
+ nodist_libffi_la_SOURCES += src/arm/sysv.S src/arm/ffi.c
137
+ endif
138
+ if LIBFFI_CRIS
139
+ nodist_libffi_la_SOURCES += src/cris/sysv.S src/cris/ffi.c
140
+ endif
141
+ if FRV
142
+ nodist_libffi_la_SOURCES += src/frv/eabi.S src/frv/ffi.c
143
+ endif
144
+ if S390
145
+ nodist_libffi_la_SOURCES += src/s390/sysv.S src/s390/ffi.c
146
+ endif
147
+ if X86_64
148
+ nodist_libffi_la_SOURCES += src/x86/ffi64.c src/x86/unix64.S src/x86/ffi.c src/x86/sysv.S
149
+ endif
150
+ if SH
151
+ nodist_libffi_la_SOURCES += src/sh/sysv.S src/sh/ffi.c
152
+ endif
153
+ if SH64
154
+ nodist_libffi_la_SOURCES += src/sh64/sysv.S src/sh64/ffi.c
155
+ endif
156
+ if PA_LINUX
157
+ nodist_libffi_la_SOURCES += src/pa/linux.S src/pa/ffi.c
158
+ endif
159
+ if PA_HPUX
160
+ nodist_libffi_la_SOURCES += src/pa/hpux32.S src/pa/ffi.c
161
+ endif
162
+
163
+ libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
164
+ nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)
165
+
166
+ AM_CFLAGS = -Wall -g -fexceptions
167
+
168
+ libffi_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
169
+
170
+ AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
171
+ AM_CCASFLAGS = $(AM_CPPFLAGS)
172
+
173
+ # No install-html or install-pdf support in automake yet
174
+ .PHONY: install-html install-pdf
175
+ install-html:
176
+ install-pdf:
177
+
@@ -0,0 +1,1640 @@
1
+ # Makefile.in generated by automake 1.10 from Makefile.am.
2
+ # @configure_input@
3
+
4
+ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
5
+ # 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
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
+
18
+ VPATH = @srcdir@
19
+ pkgdatadir = $(datadir)/@PACKAGE@
20
+ pkglibdir = $(libdir)/@PACKAGE@
21
+ pkgincludedir = $(includedir)/@PACKAGE@
22
+ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
23
+ install_sh_DATA = $(install_sh) -c -m 644
24
+ install_sh_PROGRAM = $(install_sh) -c
25
+ install_sh_SCRIPT = $(install_sh) -c
26
+ INSTALL_HEADER = $(INSTALL_DATA)
27
+ transform = $(program_transform_name)
28
+ NORMAL_INSTALL = :
29
+ PRE_INSTALL = :
30
+ POST_INSTALL = :
31
+ NORMAL_UNINSTALL = :
32
+ PRE_UNINSTALL = :
33
+ POST_UNINSTALL = :
34
+ build_triplet = @build@
35
+ host_triplet = @host@
36
+ target_triplet = @target@
37
+ @MIPS_TRUE@am__append_1 = src/mips/ffi.c src/mips/o32.S src/mips/n32.S
38
+ @X86_TRUE@am__append_2 = src/x86/ffi.c src/x86/sysv.S
39
+ @X86_FREEBSD_TRUE@am__append_3 = src/x86/ffi.c src/x86/freebsd.S
40
+ @X86_WIN32_TRUE@am__append_4 = src/x86/ffi.c src/x86/win32.S
41
+ @X86_DARWIN_TRUE@am__append_5 = src/x86/ffi.c src/x86/darwin.S src/x86/ffi64.c src/x86/darwin64.S
42
+ @SPARC_TRUE@am__append_6 = src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S
43
+ @ALPHA_TRUE@am__append_7 = src/alpha/ffi.c src/alpha/osf.S
44
+ @IA64_TRUE@am__append_8 = src/ia64/ffi.c src/ia64/unix.S
45
+ @M32R_TRUE@am__append_9 = src/m32r/sysv.S src/m32r/ffi.c
46
+ @M68K_TRUE@am__append_10 = src/m68k/ffi.c src/m68k/sysv.S
47
+ @POWERPC_TRUE@am__append_11 = src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S src/powerpc/linux64.S src/powerpc/linux64_closure.S
48
+ @POWERPC_AIX_TRUE@am__append_12 = src/powerpc/ffi_darwin.c src/powerpc/aix.S src/powerpc/aix_closure.S
49
+ @POWERPC_DARWIN_TRUE@am__append_13 = src/powerpc/ffi_darwin.c src/powerpc/darwin.S src/powerpc/darwin_closure.S
50
+ @POWERPC_FREEBSD_TRUE@am__append_14 = src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S
51
+ @ARM_TRUE@am__append_15 = src/arm/sysv.S src/arm/ffi.c
52
+ @LIBFFI_CRIS_TRUE@am__append_16 = src/cris/sysv.S src/cris/ffi.c
53
+ @FRV_TRUE@am__append_17 = src/frv/eabi.S src/frv/ffi.c
54
+ @S390_TRUE@am__append_18 = src/s390/sysv.S src/s390/ffi.c
55
+ @X86_64_TRUE@am__append_19 = src/x86/ffi64.c src/x86/unix64.S src/x86/ffi.c src/x86/sysv.S
56
+ @SH_TRUE@am__append_20 = src/sh/sysv.S src/sh/ffi.c
57
+ @SH64_TRUE@am__append_21 = src/sh64/sysv.S src/sh64/ffi.c
58
+ @PA_LINUX_TRUE@am__append_22 = src/pa/linux.S src/pa/ffi.c
59
+ @PA_HPUX_TRUE@am__append_23 = src/pa/hpux32.S src/pa/ffi.c
60
+ subdir = .
61
+ DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
62
+ $(srcdir)/Makefile.in $(srcdir)/doc/stamp-vti \
63
+ $(srcdir)/doc/version.texi $(srcdir)/fficonfig.h.in \
64
+ $(srcdir)/libffi.pc.in $(top_srcdir)/configure ChangeLog TODO \
65
+ compile config.guess config.sub depcomp install-sh ltcf-c.sh \
66
+ ltcf-cxx.sh ltcf-gcj.sh ltconfig ltmain.sh mdate-sh missing \
67
+ mkinstalldirs texinfo.tex
68
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
69
+ am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
70
+ $(top_srcdir)/configure.ac
71
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
72
+ $(ACLOCAL_M4)
73
+ am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
74
+ configure.lineno config.status.lineno
75
+ mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
76
+ CONFIG_HEADER = fficonfig.h
77
+ CONFIG_CLEAN_FILES = libffi.pc
78
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
79
+ am__vpath_adj = case $$p in \
80
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
81
+ *) f=$$p;; \
82
+ esac;
83
+ am__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
84
+ am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(infodir)" \
85
+ "$(DESTDIR)$(pkgconfigdir)"
86
+ libLTLIBRARIES_INSTALL = $(INSTALL)
87
+ LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
88
+ libffi_la_LIBADD =
89
+ am__dirstamp = $(am__leading_dot)dirstamp
90
+ am_libffi_la_OBJECTS = src/debug.lo src/prep_cif.lo src/types.lo \
91
+ src/raw_api.lo src/java_raw_api.lo src/closures.lo
92
+ @MIPS_TRUE@am__objects_1 = src/mips/ffi.lo src/mips/o32.lo \
93
+ @MIPS_TRUE@ src/mips/n32.lo
94
+ @X86_TRUE@am__objects_2 = src/x86/ffi.lo src/x86/sysv.lo
95
+ @X86_FREEBSD_TRUE@am__objects_3 = src/x86/ffi.lo src/x86/freebsd.lo
96
+ @X86_WIN32_TRUE@am__objects_4 = src/x86/ffi.lo src/x86/win32.lo
97
+ @X86_DARWIN_TRUE@am__objects_5 = src/x86/ffi.lo src/x86/darwin.lo \
98
+ @X86_DARWIN_TRUE@ src/x86/ffi64.lo src/x86/darwin64.lo
99
+ @SPARC_TRUE@am__objects_6 = src/sparc/ffi.lo src/sparc/v8.lo \
100
+ @SPARC_TRUE@ src/sparc/v9.lo
101
+ @ALPHA_TRUE@am__objects_7 = src/alpha/ffi.lo src/alpha/osf.lo
102
+ @IA64_TRUE@am__objects_8 = src/ia64/ffi.lo src/ia64/unix.lo
103
+ @M32R_TRUE@am__objects_9 = src/m32r/sysv.lo src/m32r/ffi.lo
104
+ @M68K_TRUE@am__objects_10 = src/m68k/ffi.lo src/m68k/sysv.lo
105
+ @POWERPC_TRUE@am__objects_11 = src/powerpc/ffi.lo src/powerpc/sysv.lo \
106
+ @POWERPC_TRUE@ src/powerpc/ppc_closure.lo \
107
+ @POWERPC_TRUE@ src/powerpc/linux64.lo \
108
+ @POWERPC_TRUE@ src/powerpc/linux64_closure.lo
109
+ @POWERPC_AIX_TRUE@am__objects_12 = src/powerpc/ffi_darwin.lo \
110
+ @POWERPC_AIX_TRUE@ src/powerpc/aix.lo \
111
+ @POWERPC_AIX_TRUE@ src/powerpc/aix_closure.lo
112
+ @POWERPC_DARWIN_TRUE@am__objects_13 = src/powerpc/ffi_darwin.lo \
113
+ @POWERPC_DARWIN_TRUE@ src/powerpc/darwin.lo \
114
+ @POWERPC_DARWIN_TRUE@ src/powerpc/darwin_closure.lo
115
+ @POWERPC_FREEBSD_TRUE@am__objects_14 = src/powerpc/ffi.lo \
116
+ @POWERPC_FREEBSD_TRUE@ src/powerpc/sysv.lo \
117
+ @POWERPC_FREEBSD_TRUE@ src/powerpc/ppc_closure.lo
118
+ @ARM_TRUE@am__objects_15 = src/arm/sysv.lo src/arm/ffi.lo
119
+ @LIBFFI_CRIS_TRUE@am__objects_16 = src/cris/sysv.lo src/cris/ffi.lo
120
+ @FRV_TRUE@am__objects_17 = src/frv/eabi.lo src/frv/ffi.lo
121
+ @S390_TRUE@am__objects_18 = src/s390/sysv.lo src/s390/ffi.lo
122
+ @X86_64_TRUE@am__objects_19 = src/x86/ffi64.lo src/x86/unix64.lo \
123
+ @X86_64_TRUE@ src/x86/ffi.lo src/x86/sysv.lo
124
+ @SH_TRUE@am__objects_20 = src/sh/sysv.lo src/sh/ffi.lo
125
+ @SH64_TRUE@am__objects_21 = src/sh64/sysv.lo src/sh64/ffi.lo
126
+ @PA_LINUX_TRUE@am__objects_22 = src/pa/linux.lo src/pa/ffi.lo
127
+ @PA_HPUX_TRUE@am__objects_23 = src/pa/hpux32.lo src/pa/ffi.lo
128
+ nodist_libffi_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
129
+ $(am__objects_3) $(am__objects_4) $(am__objects_5) \
130
+ $(am__objects_6) $(am__objects_7) $(am__objects_8) \
131
+ $(am__objects_9) $(am__objects_10) $(am__objects_11) \
132
+ $(am__objects_12) $(am__objects_13) $(am__objects_14) \
133
+ $(am__objects_15) $(am__objects_16) $(am__objects_17) \
134
+ $(am__objects_18) $(am__objects_19) $(am__objects_20) \
135
+ $(am__objects_21) $(am__objects_22) $(am__objects_23)
136
+ libffi_la_OBJECTS = $(am_libffi_la_OBJECTS) \
137
+ $(nodist_libffi_la_OBJECTS)
138
+ libffi_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
139
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
140
+ $(libffi_la_LDFLAGS) $(LDFLAGS) -o $@
141
+ libffi_convenience_la_LIBADD =
142
+ am__objects_24 = src/debug.lo src/prep_cif.lo src/types.lo \
143
+ src/raw_api.lo src/java_raw_api.lo src/closures.lo
144
+ am_libffi_convenience_la_OBJECTS = $(am__objects_24)
145
+ am__objects_25 = $(am__objects_1) $(am__objects_2) $(am__objects_3) \
146
+ $(am__objects_4) $(am__objects_5) $(am__objects_6) \
147
+ $(am__objects_7) $(am__objects_8) $(am__objects_9) \
148
+ $(am__objects_10) $(am__objects_11) $(am__objects_12) \
149
+ $(am__objects_13) $(am__objects_14) $(am__objects_15) \
150
+ $(am__objects_16) $(am__objects_17) $(am__objects_18) \
151
+ $(am__objects_19) $(am__objects_20) $(am__objects_21) \
152
+ $(am__objects_22) $(am__objects_23)
153
+ nodist_libffi_convenience_la_OBJECTS = $(am__objects_25)
154
+ libffi_convenience_la_OBJECTS = $(am_libffi_convenience_la_OBJECTS) \
155
+ $(nodist_libffi_convenience_la_OBJECTS)
156
+ DEFAULT_INCLUDES = -I.@am__isrc@
157
+ depcomp = $(SHELL) $(top_srcdir)/depcomp
158
+ am__depfiles_maybe = depfiles
159
+ CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
160
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
161
+ LTCPPASCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
162
+ --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
163
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
164
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
165
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
166
+ LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
167
+ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
168
+ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
169
+ CCLD = $(CC)
170
+ LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
171
+ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
172
+ $(LDFLAGS) -o $@
173
+ SOURCES = $(libffi_la_SOURCES) $(nodist_libffi_la_SOURCES) \
174
+ $(libffi_convenience_la_SOURCES) \
175
+ $(nodist_libffi_convenience_la_SOURCES)
176
+ DIST_SOURCES = $(libffi_la_SOURCES) $(libffi_convenience_la_SOURCES)
177
+ INFO_DEPS = $(srcdir)/doc/libffi.info
178
+ am__TEXINFO_TEX_DIR = $(srcdir)
179
+ DVIS = doc/libffi.dvi
180
+ PDFS = doc/libffi.pdf
181
+ PSS = doc/libffi.ps
182
+ HTMLS = doc/libffi.html
183
+ TEXINFOS = doc/libffi.texi
184
+ TEXI2DVI = texi2dvi
185
+ TEXI2PDF = $(TEXI2DVI) --pdf --batch
186
+ MAKEINFOHTML = $(MAKEINFO) --html
187
+ AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
188
+ DVIPS = dvips
189
+ RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
190
+ html-recursive info-recursive install-data-recursive \
191
+ install-dvi-recursive install-exec-recursive \
192
+ install-html-recursive install-info-recursive \
193
+ install-pdf-recursive install-ps-recursive install-recursive \
194
+ installcheck-recursive installdirs-recursive pdf-recursive \
195
+ ps-recursive uninstall-recursive
196
+ pkgconfigDATA_INSTALL = $(INSTALL_DATA)
197
+ DATA = $(pkgconfig_DATA)
198
+ RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
199
+ distclean-recursive maintainer-clean-recursive
200
+ ETAGS = etags
201
+ CTAGS = ctags
202
+ DIST_SUBDIRS = $(SUBDIRS)
203
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
204
+ distdir = $(PACKAGE)-$(VERSION)
205
+ top_distdir = $(distdir)
206
+ am__remove_distdir = \
207
+ { test ! -d $(distdir) \
208
+ || { find $(distdir) -type d ! -perm -200 -exec chmod u+w {} ';' \
209
+ && rm -fr $(distdir); }; }
210
+ DIST_ARCHIVES = $(distdir).tar.gz
211
+ GZIP_ENV = --best
212
+ distuninstallcheck_listfiles = find . -type f -print
213
+ distcleancheck_listfiles = find . -type f -print
214
+ ACLOCAL = @ACLOCAL@
215
+ ALLOCA = @ALLOCA@
216
+ AMTAR = @AMTAR@
217
+ AM_RUNTESTFLAGS = @AM_RUNTESTFLAGS@
218
+ AR = @AR@
219
+ AUTOCONF = @AUTOCONF@
220
+ AUTOHEADER = @AUTOHEADER@
221
+ AUTOMAKE = @AUTOMAKE@
222
+ AWK = @AWK@
223
+ CC = @CC@
224
+ CCAS = @CCAS@
225
+ CCASDEPMODE = @CCASDEPMODE@
226
+ CCASFLAGS = @CCASFLAGS@
227
+ CCDEPMODE = @CCDEPMODE@
228
+ CFLAGS = @CFLAGS@
229
+ CPP = @CPP@
230
+ CPPFLAGS = @CPPFLAGS@
231
+ CXX = @CXX@
232
+ CXXCPP = @CXXCPP@
233
+ CXXDEPMODE = @CXXDEPMODE@
234
+ CXXFLAGS = @CXXFLAGS@
235
+ CYGPATH_W = @CYGPATH_W@
236
+ DEFS = @DEFS@
237
+ DEPDIR = @DEPDIR@
238
+ ECHO = @ECHO@
239
+ ECHO_C = @ECHO_C@
240
+ ECHO_N = @ECHO_N@
241
+ ECHO_T = @ECHO_T@
242
+ EGREP = @EGREP@
243
+ EXEEXT = @EXEEXT@
244
+ F77 = @F77@
245
+ FFLAGS = @FFLAGS@
246
+ GREP = @GREP@
247
+ HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
248
+ INSTALL = @INSTALL@
249
+ INSTALL_DATA = @INSTALL_DATA@
250
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
251
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
252
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
253
+ LDFLAGS = @LDFLAGS@
254
+ LIBOBJS = @LIBOBJS@
255
+ LIBS = @LIBS@
256
+ LIBTOOL = @LIBTOOL@
257
+ LN_S = @LN_S@
258
+ LTLIBOBJS = @LTLIBOBJS@
259
+ MAINT = @MAINT@
260
+ MAKEINFO = @MAKEINFO@
261
+ MKDIR_P = @MKDIR_P@
262
+ OBJEXT = @OBJEXT@
263
+ PACKAGE = @PACKAGE@
264
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
265
+ PACKAGE_NAME = @PACKAGE_NAME@
266
+ PACKAGE_STRING = @PACKAGE_STRING@
267
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
268
+ PACKAGE_VERSION = @PACKAGE_VERSION@
269
+ PATH_SEPARATOR = @PATH_SEPARATOR@
270
+ RANLIB = @RANLIB@
271
+ SED = @SED@
272
+ SET_MAKE = @SET_MAKE@
273
+ SHELL = @SHELL@
274
+ STRIP = @STRIP@
275
+ TARGET = @TARGET@
276
+ TARGETDIR = @TARGETDIR@
277
+ VERSION = @VERSION@
278
+ abs_builddir = @abs_builddir@
279
+ abs_srcdir = @abs_srcdir@
280
+ abs_top_builddir = @abs_top_builddir@
281
+ abs_top_srcdir = @abs_top_srcdir@
282
+ ac_ct_CC = @ac_ct_CC@
283
+ ac_ct_CXX = @ac_ct_CXX@
284
+ ac_ct_F77 = @ac_ct_F77@
285
+ am__include = @am__include@
286
+ am__leading_dot = @am__leading_dot@
287
+ am__quote = @am__quote@
288
+ am__tar = @am__tar@
289
+ am__untar = @am__untar@
290
+ bindir = @bindir@
291
+ build = @build@
292
+ build_alias = @build_alias@
293
+ build_cpu = @build_cpu@
294
+ build_os = @build_os@
295
+ build_vendor = @build_vendor@
296
+ builddir = @builddir@
297
+ datadir = @datadir@
298
+ datarootdir = @datarootdir@
299
+ docdir = @docdir@
300
+ dvidir = @dvidir@
301
+ exec_prefix = @exec_prefix@
302
+ host = @host@
303
+ host_alias = @host_alias@
304
+ host_cpu = @host_cpu@
305
+ host_os = @host_os@
306
+ host_vendor = @host_vendor@
307
+ htmldir = @htmldir@
308
+ includedir = @includedir@
309
+ infodir = @infodir@
310
+ install_sh = @install_sh@
311
+ libdir = @libdir@
312
+ libexecdir = @libexecdir@
313
+ localedir = @localedir@
314
+ localstatedir = @localstatedir@
315
+ mandir = @mandir@
316
+ mkdir_p = @mkdir_p@
317
+ oldincludedir = @oldincludedir@
318
+ pdfdir = @pdfdir@
319
+ prefix = @prefix@
320
+ program_transform_name = @program_transform_name@
321
+ psdir = @psdir@
322
+ sbindir = @sbindir@
323
+ sharedstatedir = @sharedstatedir@
324
+ srcdir = @srcdir@
325
+ sysconfdir = @sysconfdir@
326
+ target = @target@
327
+ target_alias = @target_alias@
328
+ target_cpu = @target_cpu@
329
+ target_os = @target_os@
330
+ target_vendor = @target_vendor@
331
+ toolexecdir = @toolexecdir@
332
+ toolexeclibdir = @toolexeclibdir@
333
+ top_builddir = @top_builddir@
334
+ top_srcdir = @top_srcdir@
335
+ AUTOMAKE_OPTIONS = foreign subdir-objects
336
+ SUBDIRS = include testsuite man
337
+ EXTRA_DIST = LICENSE ChangeLog.v1 ChangeLog.libgcj configure.host \
338
+ src/alpha/ffi.c src/alpha/osf.S src/alpha/ffitarget.h \
339
+ src/arm/ffi.c src/arm/sysv.S src/arm/ffitarget.h \
340
+ src/cris/ffi.c src/cris/sysv.S src/cris/ffitarget.h \
341
+ src/ia64/ffi.c src/ia64/ffitarget.h src/ia64/ia64_flags.h \
342
+ src/ia64/unix.S \
343
+ src/mips/ffi.c src/mips/n32.S src/mips/o32.S \
344
+ src/mips/ffitarget.h \
345
+ src/m32r/ffi.c src/m32r/sysv.S src/m32r/ffitarget.h \
346
+ src/m68k/ffi.c src/m68k/sysv.S src/m68k/ffitarget.h \
347
+ src/powerpc/ffi.c src/powerpc/sysv.S \
348
+ src/powerpc/linux64.S src/powerpc/linux64_closure.S \
349
+ src/powerpc/ppc_closure.S src/powerpc/asm.h \
350
+ src/powerpc/aix.S src/powerpc/darwin.S \
351
+ src/powerpc/aix_closure.S src/powerpc/darwin_closure.S \
352
+ src/powerpc/ffi_darwin.c src/powerpc/ffitarget.h \
353
+ src/s390/ffi.c src/s390/sysv.S src/s390/ffitarget.h \
354
+ src/sh/ffi.c src/sh/sysv.S src/sh/ffitarget.h \
355
+ src/sh64/ffi.c src/sh64/sysv.S src/sh64/ffitarget.h \
356
+ src/sparc/v8.S src/sparc/v9.S src/sparc/ffitarget.h \
357
+ src/sparc/ffi.c src/x86/darwin64.S \
358
+ src/x86/ffi.c src/x86/sysv.S src/x86/win32.S src/x86/darwin.S \
359
+ src/x86/freebsd.S \
360
+ src/x86/ffi64.c src/x86/unix64.S src/x86/ffitarget.h \
361
+ src/pa/ffitarget.h src/pa/ffi.c src/pa/linux.S src/pa/hpux32.S \
362
+ src/frv/ffi.c src/frv/eabi.S src/frv/ffitarget.h src/dlmalloc.c \
363
+ libtool-version ChangeLog.libffi
364
+
365
+ info_TEXINFOS = doc/libffi.texi
366
+
367
+ # Work around what appears to be a GNU make bug handling MAKEFLAGS
368
+ # values defined in terms of make variables, as is the case for CC and
369
+ # friends when we are called from the top level Makefile.
370
+ AM_MAKEFLAGS = \
371
+ "AR_FLAGS=$(AR_FLAGS)" \
372
+ "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
373
+ "CFLAGS=$(CFLAGS)" \
374
+ "CXXFLAGS=$(CXXFLAGS)" \
375
+ "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
376
+ "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
377
+ "INSTALL=$(INSTALL)" \
378
+ "INSTALL_DATA=$(INSTALL_DATA)" \
379
+ "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
380
+ "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
381
+ "JC1FLAGS=$(JC1FLAGS)" \
382
+ "LDFLAGS=$(LDFLAGS)" \
383
+ "LIBCFLAGS=$(LIBCFLAGS)" \
384
+ "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
385
+ "MAKE=$(MAKE)" \
386
+ "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
387
+ "PICFLAG=$(PICFLAG)" \
388
+ "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
389
+ "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
390
+ "SHELL=$(SHELL)" \
391
+ "exec_prefix=$(exec_prefix)" \
392
+ "infodir=$(infodir)" \
393
+ "libdir=$(libdir)" \
394
+ "prefix=$(prefix)" \
395
+ "AR=$(AR)" \
396
+ "AS=$(AS)" \
397
+ "CC=$(CC)" \
398
+ "CXX=$(CXX)" \
399
+ "LD=$(LD)" \
400
+ "NM=$(NM)" \
401
+ "RANLIB=$(RANLIB)" \
402
+ "DESTDIR=$(DESTDIR)"
403
+
404
+ MAKEOVERRIDES =
405
+ lib_LTLIBRARIES = libffi.la
406
+ noinst_LTLIBRARIES = libffi_convenience.la
407
+ libffi_la_SOURCES = src/debug.c src/prep_cif.c src/types.c \
408
+ src/raw_api.c src/java_raw_api.c src/closures.c
409
+
410
+ pkgconfigdir = $(libdir)/pkgconfig
411
+ pkgconfig_DATA = libffi.pc
412
+ nodist_libffi_la_SOURCES = $(am__append_1) $(am__append_2) \
413
+ $(am__append_3) $(am__append_4) $(am__append_5) \
414
+ $(am__append_6) $(am__append_7) $(am__append_8) \
415
+ $(am__append_9) $(am__append_10) $(am__append_11) \
416
+ $(am__append_12) $(am__append_13) $(am__append_14) \
417
+ $(am__append_15) $(am__append_16) $(am__append_17) \
418
+ $(am__append_18) $(am__append_19) $(am__append_20) \
419
+ $(am__append_21) $(am__append_22) $(am__append_23)
420
+ libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
421
+ nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)
422
+ AM_CFLAGS = -Wall -g -fexceptions
423
+ libffi_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
424
+ AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
425
+ AM_CCASFLAGS = $(AM_CPPFLAGS)
426
+ all: fficonfig.h
427
+ $(MAKE) $(AM_MAKEFLAGS) all-recursive
428
+
429
+ .SUFFIXES:
430
+ .SUFFIXES: .S .c .dvi .lo .o .obj .ps
431
+ am--refresh:
432
+ @:
433
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
434
+ @for dep in $?; do \
435
+ case '$(am__configure_deps)' in \
436
+ *$$dep*) \
437
+ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign '; \
438
+ cd $(srcdir) && $(AUTOMAKE) --foreign \
439
+ && exit 0; \
440
+ exit 1;; \
441
+ esac; \
442
+ done; \
443
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
444
+ cd $(top_srcdir) && \
445
+ $(AUTOMAKE) --foreign Makefile
446
+ .PRECIOUS: Makefile
447
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
448
+ @case '$?' in \
449
+ *config.status*) \
450
+ echo ' $(SHELL) ./config.status'; \
451
+ $(SHELL) ./config.status;; \
452
+ *) \
453
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
454
+ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
455
+ esac;
456
+
457
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
458
+ $(SHELL) ./config.status --recheck
459
+
460
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
461
+ cd $(srcdir) && $(AUTOCONF)
462
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
463
+ cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
464
+
465
+ fficonfig.h: stamp-h1
466
+ @if test ! -f $@; then \
467
+ rm -f stamp-h1; \
468
+ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
469
+ else :; fi
470
+
471
+ stamp-h1: $(srcdir)/fficonfig.h.in $(top_builddir)/config.status
472
+ @rm -f stamp-h1
473
+ cd $(top_builddir) && $(SHELL) ./config.status fficonfig.h
474
+ $(srcdir)/fficonfig.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
475
+ cd $(top_srcdir) && $(AUTOHEADER)
476
+ rm -f stamp-h1
477
+ touch $@
478
+
479
+ distclean-hdr:
480
+ -rm -f fficonfig.h stamp-h1
481
+ libffi.pc: $(top_builddir)/config.status $(srcdir)/libffi.pc.in
482
+ cd $(top_builddir) && $(SHELL) ./config.status $@
483
+ install-libLTLIBRARIES: $(lib_LTLIBRARIES)
484
+ @$(NORMAL_INSTALL)
485
+ test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
486
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
487
+ if test -f $$p; then \
488
+ f=$(am__strip_dir) \
489
+ echo " $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
490
+ $(LIBTOOL) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
491
+ else :; fi; \
492
+ done
493
+
494
+ uninstall-libLTLIBRARIES:
495
+ @$(NORMAL_UNINSTALL)
496
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
497
+ p=$(am__strip_dir) \
498
+ echo " $(LIBTOOL) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
499
+ $(LIBTOOL) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
500
+ done
501
+
502
+ clean-libLTLIBRARIES:
503
+ -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
504
+ @list='$(lib_LTLIBRARIES)'; for p in $$list; do \
505
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
506
+ test "$$dir" != "$$p" || dir=.; \
507
+ echo "rm -f \"$${dir}/so_locations\""; \
508
+ rm -f "$${dir}/so_locations"; \
509
+ done
510
+
511
+ clean-noinstLTLIBRARIES:
512
+ -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
513
+ @list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
514
+ dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
515
+ test "$$dir" != "$$p" || dir=.; \
516
+ echo "rm -f \"$${dir}/so_locations\""; \
517
+ rm -f "$${dir}/so_locations"; \
518
+ done
519
+ src/$(am__dirstamp):
520
+ @$(MKDIR_P) src
521
+ @: > src/$(am__dirstamp)
522
+ src/$(DEPDIR)/$(am__dirstamp):
523
+ @$(MKDIR_P) src/$(DEPDIR)
524
+ @: > src/$(DEPDIR)/$(am__dirstamp)
525
+ src/debug.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
526
+ src/prep_cif.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
527
+ src/types.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
528
+ src/raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
529
+ src/java_raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
530
+ src/closures.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
531
+ src/mips/$(am__dirstamp):
532
+ @$(MKDIR_P) src/mips
533
+ @: > src/mips/$(am__dirstamp)
534
+ src/mips/$(DEPDIR)/$(am__dirstamp):
535
+ @$(MKDIR_P) src/mips/$(DEPDIR)
536
+ @: > src/mips/$(DEPDIR)/$(am__dirstamp)
537
+ src/mips/ffi.lo: src/mips/$(am__dirstamp) \
538
+ src/mips/$(DEPDIR)/$(am__dirstamp)
539
+ src/mips/o32.lo: src/mips/$(am__dirstamp) \
540
+ src/mips/$(DEPDIR)/$(am__dirstamp)
541
+ src/mips/n32.lo: src/mips/$(am__dirstamp) \
542
+ src/mips/$(DEPDIR)/$(am__dirstamp)
543
+ src/x86/$(am__dirstamp):
544
+ @$(MKDIR_P) src/x86
545
+ @: > src/x86/$(am__dirstamp)
546
+ src/x86/$(DEPDIR)/$(am__dirstamp):
547
+ @$(MKDIR_P) src/x86/$(DEPDIR)
548
+ @: > src/x86/$(DEPDIR)/$(am__dirstamp)
549
+ src/x86/ffi.lo: src/x86/$(am__dirstamp) \
550
+ src/x86/$(DEPDIR)/$(am__dirstamp)
551
+ src/x86/sysv.lo: src/x86/$(am__dirstamp) \
552
+ src/x86/$(DEPDIR)/$(am__dirstamp)
553
+ src/x86/freebsd.lo: src/x86/$(am__dirstamp) \
554
+ src/x86/$(DEPDIR)/$(am__dirstamp)
555
+ src/x86/win32.lo: src/x86/$(am__dirstamp) \
556
+ src/x86/$(DEPDIR)/$(am__dirstamp)
557
+ src/x86/darwin.lo: src/x86/$(am__dirstamp) \
558
+ src/x86/$(DEPDIR)/$(am__dirstamp)
559
+ src/x86/ffi64.lo: src/x86/$(am__dirstamp) \
560
+ src/x86/$(DEPDIR)/$(am__dirstamp)
561
+ src/x86/darwin64.lo: src/x86/$(am__dirstamp) \
562
+ src/x86/$(DEPDIR)/$(am__dirstamp)
563
+ src/sparc/$(am__dirstamp):
564
+ @$(MKDIR_P) src/sparc
565
+ @: > src/sparc/$(am__dirstamp)
566
+ src/sparc/$(DEPDIR)/$(am__dirstamp):
567
+ @$(MKDIR_P) src/sparc/$(DEPDIR)
568
+ @: > src/sparc/$(DEPDIR)/$(am__dirstamp)
569
+ src/sparc/ffi.lo: src/sparc/$(am__dirstamp) \
570
+ src/sparc/$(DEPDIR)/$(am__dirstamp)
571
+ src/sparc/v8.lo: src/sparc/$(am__dirstamp) \
572
+ src/sparc/$(DEPDIR)/$(am__dirstamp)
573
+ src/sparc/v9.lo: src/sparc/$(am__dirstamp) \
574
+ src/sparc/$(DEPDIR)/$(am__dirstamp)
575
+ src/alpha/$(am__dirstamp):
576
+ @$(MKDIR_P) src/alpha
577
+ @: > src/alpha/$(am__dirstamp)
578
+ src/alpha/$(DEPDIR)/$(am__dirstamp):
579
+ @$(MKDIR_P) src/alpha/$(DEPDIR)
580
+ @: > src/alpha/$(DEPDIR)/$(am__dirstamp)
581
+ src/alpha/ffi.lo: src/alpha/$(am__dirstamp) \
582
+ src/alpha/$(DEPDIR)/$(am__dirstamp)
583
+ src/alpha/osf.lo: src/alpha/$(am__dirstamp) \
584
+ src/alpha/$(DEPDIR)/$(am__dirstamp)
585
+ src/ia64/$(am__dirstamp):
586
+ @$(MKDIR_P) src/ia64
587
+ @: > src/ia64/$(am__dirstamp)
588
+ src/ia64/$(DEPDIR)/$(am__dirstamp):
589
+ @$(MKDIR_P) src/ia64/$(DEPDIR)
590
+ @: > src/ia64/$(DEPDIR)/$(am__dirstamp)
591
+ src/ia64/ffi.lo: src/ia64/$(am__dirstamp) \
592
+ src/ia64/$(DEPDIR)/$(am__dirstamp)
593
+ src/ia64/unix.lo: src/ia64/$(am__dirstamp) \
594
+ src/ia64/$(DEPDIR)/$(am__dirstamp)
595
+ src/m32r/$(am__dirstamp):
596
+ @$(MKDIR_P) src/m32r
597
+ @: > src/m32r/$(am__dirstamp)
598
+ src/m32r/$(DEPDIR)/$(am__dirstamp):
599
+ @$(MKDIR_P) src/m32r/$(DEPDIR)
600
+ @: > src/m32r/$(DEPDIR)/$(am__dirstamp)
601
+ src/m32r/sysv.lo: src/m32r/$(am__dirstamp) \
602
+ src/m32r/$(DEPDIR)/$(am__dirstamp)
603
+ src/m32r/ffi.lo: src/m32r/$(am__dirstamp) \
604
+ src/m32r/$(DEPDIR)/$(am__dirstamp)
605
+ src/m68k/$(am__dirstamp):
606
+ @$(MKDIR_P) src/m68k
607
+ @: > src/m68k/$(am__dirstamp)
608
+ src/m68k/$(DEPDIR)/$(am__dirstamp):
609
+ @$(MKDIR_P) src/m68k/$(DEPDIR)
610
+ @: > src/m68k/$(DEPDIR)/$(am__dirstamp)
611
+ src/m68k/ffi.lo: src/m68k/$(am__dirstamp) \
612
+ src/m68k/$(DEPDIR)/$(am__dirstamp)
613
+ src/m68k/sysv.lo: src/m68k/$(am__dirstamp) \
614
+ src/m68k/$(DEPDIR)/$(am__dirstamp)
615
+ src/powerpc/$(am__dirstamp):
616
+ @$(MKDIR_P) src/powerpc
617
+ @: > src/powerpc/$(am__dirstamp)
618
+ src/powerpc/$(DEPDIR)/$(am__dirstamp):
619
+ @$(MKDIR_P) src/powerpc/$(DEPDIR)
620
+ @: > src/powerpc/$(DEPDIR)/$(am__dirstamp)
621
+ src/powerpc/ffi.lo: src/powerpc/$(am__dirstamp) \
622
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
623
+ src/powerpc/sysv.lo: src/powerpc/$(am__dirstamp) \
624
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
625
+ src/powerpc/ppc_closure.lo: src/powerpc/$(am__dirstamp) \
626
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
627
+ src/powerpc/linux64.lo: src/powerpc/$(am__dirstamp) \
628
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
629
+ src/powerpc/linux64_closure.lo: src/powerpc/$(am__dirstamp) \
630
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
631
+ src/powerpc/ffi_darwin.lo: src/powerpc/$(am__dirstamp) \
632
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
633
+ src/powerpc/aix.lo: src/powerpc/$(am__dirstamp) \
634
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
635
+ src/powerpc/aix_closure.lo: src/powerpc/$(am__dirstamp) \
636
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
637
+ src/powerpc/darwin.lo: src/powerpc/$(am__dirstamp) \
638
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
639
+ src/powerpc/darwin_closure.lo: src/powerpc/$(am__dirstamp) \
640
+ src/powerpc/$(DEPDIR)/$(am__dirstamp)
641
+ src/arm/$(am__dirstamp):
642
+ @$(MKDIR_P) src/arm
643
+ @: > src/arm/$(am__dirstamp)
644
+ src/arm/$(DEPDIR)/$(am__dirstamp):
645
+ @$(MKDIR_P) src/arm/$(DEPDIR)
646
+ @: > src/arm/$(DEPDIR)/$(am__dirstamp)
647
+ src/arm/sysv.lo: src/arm/$(am__dirstamp) \
648
+ src/arm/$(DEPDIR)/$(am__dirstamp)
649
+ src/arm/ffi.lo: src/arm/$(am__dirstamp) \
650
+ src/arm/$(DEPDIR)/$(am__dirstamp)
651
+ src/cris/$(am__dirstamp):
652
+ @$(MKDIR_P) src/cris
653
+ @: > src/cris/$(am__dirstamp)
654
+ src/cris/$(DEPDIR)/$(am__dirstamp):
655
+ @$(MKDIR_P) src/cris/$(DEPDIR)
656
+ @: > src/cris/$(DEPDIR)/$(am__dirstamp)
657
+ src/cris/sysv.lo: src/cris/$(am__dirstamp) \
658
+ src/cris/$(DEPDIR)/$(am__dirstamp)
659
+ src/cris/ffi.lo: src/cris/$(am__dirstamp) \
660
+ src/cris/$(DEPDIR)/$(am__dirstamp)
661
+ src/frv/$(am__dirstamp):
662
+ @$(MKDIR_P) src/frv
663
+ @: > src/frv/$(am__dirstamp)
664
+ src/frv/$(DEPDIR)/$(am__dirstamp):
665
+ @$(MKDIR_P) src/frv/$(DEPDIR)
666
+ @: > src/frv/$(DEPDIR)/$(am__dirstamp)
667
+ src/frv/eabi.lo: src/frv/$(am__dirstamp) \
668
+ src/frv/$(DEPDIR)/$(am__dirstamp)
669
+ src/frv/ffi.lo: src/frv/$(am__dirstamp) \
670
+ src/frv/$(DEPDIR)/$(am__dirstamp)
671
+ src/s390/$(am__dirstamp):
672
+ @$(MKDIR_P) src/s390
673
+ @: > src/s390/$(am__dirstamp)
674
+ src/s390/$(DEPDIR)/$(am__dirstamp):
675
+ @$(MKDIR_P) src/s390/$(DEPDIR)
676
+ @: > src/s390/$(DEPDIR)/$(am__dirstamp)
677
+ src/s390/sysv.lo: src/s390/$(am__dirstamp) \
678
+ src/s390/$(DEPDIR)/$(am__dirstamp)
679
+ src/s390/ffi.lo: src/s390/$(am__dirstamp) \
680
+ src/s390/$(DEPDIR)/$(am__dirstamp)
681
+ src/x86/unix64.lo: src/x86/$(am__dirstamp) \
682
+ src/x86/$(DEPDIR)/$(am__dirstamp)
683
+ src/sh/$(am__dirstamp):
684
+ @$(MKDIR_P) src/sh
685
+ @: > src/sh/$(am__dirstamp)
686
+ src/sh/$(DEPDIR)/$(am__dirstamp):
687
+ @$(MKDIR_P) src/sh/$(DEPDIR)
688
+ @: > src/sh/$(DEPDIR)/$(am__dirstamp)
689
+ src/sh/sysv.lo: src/sh/$(am__dirstamp) \
690
+ src/sh/$(DEPDIR)/$(am__dirstamp)
691
+ src/sh/ffi.lo: src/sh/$(am__dirstamp) src/sh/$(DEPDIR)/$(am__dirstamp)
692
+ src/sh64/$(am__dirstamp):
693
+ @$(MKDIR_P) src/sh64
694
+ @: > src/sh64/$(am__dirstamp)
695
+ src/sh64/$(DEPDIR)/$(am__dirstamp):
696
+ @$(MKDIR_P) src/sh64/$(DEPDIR)
697
+ @: > src/sh64/$(DEPDIR)/$(am__dirstamp)
698
+ src/sh64/sysv.lo: src/sh64/$(am__dirstamp) \
699
+ src/sh64/$(DEPDIR)/$(am__dirstamp)
700
+ src/sh64/ffi.lo: src/sh64/$(am__dirstamp) \
701
+ src/sh64/$(DEPDIR)/$(am__dirstamp)
702
+ src/pa/$(am__dirstamp):
703
+ @$(MKDIR_P) src/pa
704
+ @: > src/pa/$(am__dirstamp)
705
+ src/pa/$(DEPDIR)/$(am__dirstamp):
706
+ @$(MKDIR_P) src/pa/$(DEPDIR)
707
+ @: > src/pa/$(DEPDIR)/$(am__dirstamp)
708
+ src/pa/linux.lo: src/pa/$(am__dirstamp) \
709
+ src/pa/$(DEPDIR)/$(am__dirstamp)
710
+ src/pa/ffi.lo: src/pa/$(am__dirstamp) src/pa/$(DEPDIR)/$(am__dirstamp)
711
+ src/pa/hpux32.lo: src/pa/$(am__dirstamp) \
712
+ src/pa/$(DEPDIR)/$(am__dirstamp)
713
+ libffi.la: $(libffi_la_OBJECTS) $(libffi_la_DEPENDENCIES)
714
+ $(libffi_la_LINK) -rpath $(libdir) $(libffi_la_OBJECTS) $(libffi_la_LIBADD) $(LIBS)
715
+ libffi_convenience.la: $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_DEPENDENCIES)
716
+ $(LINK) $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_LIBADD) $(LIBS)
717
+
718
+ mostlyclean-compile:
719
+ -rm -f *.$(OBJEXT)
720
+ -rm -f src/alpha/ffi.$(OBJEXT)
721
+ -rm -f src/alpha/ffi.lo
722
+ -rm -f src/alpha/osf.$(OBJEXT)
723
+ -rm -f src/alpha/osf.lo
724
+ -rm -f src/arm/ffi.$(OBJEXT)
725
+ -rm -f src/arm/ffi.lo
726
+ -rm -f src/arm/sysv.$(OBJEXT)
727
+ -rm -f src/arm/sysv.lo
728
+ -rm -f src/closures.$(OBJEXT)
729
+ -rm -f src/closures.lo
730
+ -rm -f src/cris/ffi.$(OBJEXT)
731
+ -rm -f src/cris/ffi.lo
732
+ -rm -f src/cris/sysv.$(OBJEXT)
733
+ -rm -f src/cris/sysv.lo
734
+ -rm -f src/debug.$(OBJEXT)
735
+ -rm -f src/debug.lo
736
+ -rm -f src/frv/eabi.$(OBJEXT)
737
+ -rm -f src/frv/eabi.lo
738
+ -rm -f src/frv/ffi.$(OBJEXT)
739
+ -rm -f src/frv/ffi.lo
740
+ -rm -f src/ia64/ffi.$(OBJEXT)
741
+ -rm -f src/ia64/ffi.lo
742
+ -rm -f src/ia64/unix.$(OBJEXT)
743
+ -rm -f src/ia64/unix.lo
744
+ -rm -f src/java_raw_api.$(OBJEXT)
745
+ -rm -f src/java_raw_api.lo
746
+ -rm -f src/m32r/ffi.$(OBJEXT)
747
+ -rm -f src/m32r/ffi.lo
748
+ -rm -f src/m32r/sysv.$(OBJEXT)
749
+ -rm -f src/m32r/sysv.lo
750
+ -rm -f src/m68k/ffi.$(OBJEXT)
751
+ -rm -f src/m68k/ffi.lo
752
+ -rm -f src/m68k/sysv.$(OBJEXT)
753
+ -rm -f src/m68k/sysv.lo
754
+ -rm -f src/mips/ffi.$(OBJEXT)
755
+ -rm -f src/mips/ffi.lo
756
+ -rm -f src/mips/n32.$(OBJEXT)
757
+ -rm -f src/mips/n32.lo
758
+ -rm -f src/mips/o32.$(OBJEXT)
759
+ -rm -f src/mips/o32.lo
760
+ -rm -f src/pa/ffi.$(OBJEXT)
761
+ -rm -f src/pa/ffi.lo
762
+ -rm -f src/pa/hpux32.$(OBJEXT)
763
+ -rm -f src/pa/hpux32.lo
764
+ -rm -f src/pa/linux.$(OBJEXT)
765
+ -rm -f src/pa/linux.lo
766
+ -rm -f src/powerpc/aix.$(OBJEXT)
767
+ -rm -f src/powerpc/aix.lo
768
+ -rm -f src/powerpc/aix_closure.$(OBJEXT)
769
+ -rm -f src/powerpc/aix_closure.lo
770
+ -rm -f src/powerpc/darwin.$(OBJEXT)
771
+ -rm -f src/powerpc/darwin.lo
772
+ -rm -f src/powerpc/darwin_closure.$(OBJEXT)
773
+ -rm -f src/powerpc/darwin_closure.lo
774
+ -rm -f src/powerpc/ffi.$(OBJEXT)
775
+ -rm -f src/powerpc/ffi.lo
776
+ -rm -f src/powerpc/ffi_darwin.$(OBJEXT)
777
+ -rm -f src/powerpc/ffi_darwin.lo
778
+ -rm -f src/powerpc/linux64.$(OBJEXT)
779
+ -rm -f src/powerpc/linux64.lo
780
+ -rm -f src/powerpc/linux64_closure.$(OBJEXT)
781
+ -rm -f src/powerpc/linux64_closure.lo
782
+ -rm -f src/powerpc/ppc_closure.$(OBJEXT)
783
+ -rm -f src/powerpc/ppc_closure.lo
784
+ -rm -f src/powerpc/sysv.$(OBJEXT)
785
+ -rm -f src/powerpc/sysv.lo
786
+ -rm -f src/prep_cif.$(OBJEXT)
787
+ -rm -f src/prep_cif.lo
788
+ -rm -f src/raw_api.$(OBJEXT)
789
+ -rm -f src/raw_api.lo
790
+ -rm -f src/s390/ffi.$(OBJEXT)
791
+ -rm -f src/s390/ffi.lo
792
+ -rm -f src/s390/sysv.$(OBJEXT)
793
+ -rm -f src/s390/sysv.lo
794
+ -rm -f src/sh/ffi.$(OBJEXT)
795
+ -rm -f src/sh/ffi.lo
796
+ -rm -f src/sh/sysv.$(OBJEXT)
797
+ -rm -f src/sh/sysv.lo
798
+ -rm -f src/sh64/ffi.$(OBJEXT)
799
+ -rm -f src/sh64/ffi.lo
800
+ -rm -f src/sh64/sysv.$(OBJEXT)
801
+ -rm -f src/sh64/sysv.lo
802
+ -rm -f src/sparc/ffi.$(OBJEXT)
803
+ -rm -f src/sparc/ffi.lo
804
+ -rm -f src/sparc/v8.$(OBJEXT)
805
+ -rm -f src/sparc/v8.lo
806
+ -rm -f src/sparc/v9.$(OBJEXT)
807
+ -rm -f src/sparc/v9.lo
808
+ -rm -f src/types.$(OBJEXT)
809
+ -rm -f src/types.lo
810
+ -rm -f src/x86/darwin.$(OBJEXT)
811
+ -rm -f src/x86/darwin.lo
812
+ -rm -f src/x86/darwin64.$(OBJEXT)
813
+ -rm -f src/x86/darwin64.lo
814
+ -rm -f src/x86/ffi.$(OBJEXT)
815
+ -rm -f src/x86/ffi.lo
816
+ -rm -f src/x86/ffi64.$(OBJEXT)
817
+ -rm -f src/x86/ffi64.lo
818
+ -rm -f src/x86/freebsd.$(OBJEXT)
819
+ -rm -f src/x86/freebsd.lo
820
+ -rm -f src/x86/sysv.$(OBJEXT)
821
+ -rm -f src/x86/sysv.lo
822
+ -rm -f src/x86/unix64.$(OBJEXT)
823
+ -rm -f src/x86/unix64.lo
824
+ -rm -f src/x86/win32.$(OBJEXT)
825
+ -rm -f src/x86/win32.lo
826
+
827
+ distclean-compile:
828
+ -rm -f *.tab.c
829
+
830
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/closures.Plo@am__quote@
831
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/debug.Plo@am__quote@
832
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/java_raw_api.Plo@am__quote@
833
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/prep_cif.Plo@am__quote@
834
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/raw_api.Plo@am__quote@
835
+ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/types.Plo@am__quote@
836
+ @AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/ffi.Plo@am__quote@
837
+ @AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/osf.Plo@am__quote@
838
+ @AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/ffi.Plo@am__quote@
839
+ @AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/sysv.Plo@am__quote@
840
+ @AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/ffi.Plo@am__quote@
841
+ @AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/sysv.Plo@am__quote@
842
+ @AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/eabi.Plo@am__quote@
843
+ @AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/ffi.Plo@am__quote@
844
+ @AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/ffi.Plo@am__quote@
845
+ @AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/unix.Plo@am__quote@
846
+ @AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/ffi.Plo@am__quote@
847
+ @AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/sysv.Plo@am__quote@
848
+ @AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/ffi.Plo@am__quote@
849
+ @AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/sysv.Plo@am__quote@
850
+ @AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/ffi.Plo@am__quote@
851
+ @AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/n32.Plo@am__quote@
852
+ @AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/o32.Plo@am__quote@
853
+ @AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/ffi.Plo@am__quote@
854
+ @AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/hpux32.Plo@am__quote@
855
+ @AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/linux.Plo@am__quote@
856
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix.Plo@am__quote@
857
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix_closure.Plo@am__quote@
858
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin.Plo@am__quote@
859
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin_closure.Plo@am__quote@
860
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi.Plo@am__quote@
861
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_darwin.Plo@am__quote@
862
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64.Plo@am__quote@
863
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64_closure.Plo@am__quote@
864
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ppc_closure.Plo@am__quote@
865
+ @AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/sysv.Plo@am__quote@
866
+ @AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/ffi.Plo@am__quote@
867
+ @AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/sysv.Plo@am__quote@
868
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/ffi.Plo@am__quote@
869
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/sysv.Plo@am__quote@
870
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/ffi.Plo@am__quote@
871
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/sysv.Plo@am__quote@
872
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/ffi.Plo@am__quote@
873
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v8.Plo@am__quote@
874
+ @AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v9.Plo@am__quote@
875
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/darwin.Plo@am__quote@
876
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/darwin64.Plo@am__quote@
877
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi.Plo@am__quote@
878
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi64.Plo@am__quote@
879
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/freebsd.Plo@am__quote@
880
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/sysv.Plo@am__quote@
881
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/unix64.Plo@am__quote@
882
+ @AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/win32.Plo@am__quote@
883
+
884
+ .S.o:
885
+ @am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
886
+ @am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
887
+ @am__fastdepCCAS_TRUE@ mv -f $$depbase.Tpo $$depbase.Po
888
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
889
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
890
+ @am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ $<
891
+
892
+ .S.obj:
893
+ @am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
894
+ @am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
895
+ @am__fastdepCCAS_TRUE@ mv -f $$depbase.Tpo $$depbase.Po
896
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
897
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
898
+ @am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
899
+
900
+ .S.lo:
901
+ @am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
902
+ @am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
903
+ @am__fastdepCCAS_TRUE@ mv -f $$depbase.Tpo $$depbase.Plo
904
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
905
+ @AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
906
+ @am__fastdepCCAS_FALSE@ $(LTCPPASCOMPILE) -c -o $@ $<
907
+
908
+ .c.o:
909
+ @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
910
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
911
+ @am__fastdepCC_TRUE@ mv -f $$depbase.Tpo $$depbase.Po
912
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
913
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
914
+ @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
915
+
916
+ .c.obj:
917
+ @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
918
+ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
919
+ @am__fastdepCC_TRUE@ mv -f $$depbase.Tpo $$depbase.Po
920
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
921
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
922
+ @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
923
+
924
+ .c.lo:
925
+ @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
926
+ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
927
+ @am__fastdepCC_TRUE@ mv -f $$depbase.Tpo $$depbase.Plo
928
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
929
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
930
+ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
931
+
932
+ mostlyclean-libtool:
933
+ -rm -f *.lo
934
+
935
+ clean-libtool:
936
+ -rm -rf .libs _libs
937
+ -rm -rf src/.libs src/_libs
938
+ -rm -rf src/alpha/.libs src/alpha/_libs
939
+ -rm -rf src/arm/.libs src/arm/_libs
940
+ -rm -rf src/cris/.libs src/cris/_libs
941
+ -rm -rf src/frv/.libs src/frv/_libs
942
+ -rm -rf src/ia64/.libs src/ia64/_libs
943
+ -rm -rf src/m32r/.libs src/m32r/_libs
944
+ -rm -rf src/m68k/.libs src/m68k/_libs
945
+ -rm -rf src/mips/.libs src/mips/_libs
946
+ -rm -rf src/pa/.libs src/pa/_libs
947
+ -rm -rf src/powerpc/.libs src/powerpc/_libs
948
+ -rm -rf src/s390/.libs src/s390/_libs
949
+ -rm -rf src/sh/.libs src/sh/_libs
950
+ -rm -rf src/sh64/.libs src/sh64/_libs
951
+ -rm -rf src/sparc/.libs src/sparc/_libs
952
+ -rm -rf src/x86/.libs src/x86/_libs
953
+
954
+ distclean-libtool:
955
+ -rm -f libtool
956
+ doc/$(am__dirstamp):
957
+ @$(MKDIR_P) doc
958
+ @: > doc/$(am__dirstamp)
959
+
960
+ $(srcdir)/doc/libffi.info: doc/libffi.texi $(srcdir)/doc/version.texi
961
+ restore=: && backupdir="$(am__leading_dot)am$$$$" && \
962
+ am__cwd=`pwd` && cd $(srcdir) && \
963
+ rm -rf $$backupdir && mkdir $$backupdir && \
964
+ if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
965
+ for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
966
+ if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
967
+ done; \
968
+ else :; fi && \
969
+ cd "$$am__cwd"; \
970
+ if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
971
+ -o $@ $(srcdir)/doc/libffi.texi; \
972
+ then \
973
+ rc=0; \
974
+ cd $(srcdir); \
975
+ else \
976
+ rc=$$?; \
977
+ cd $(srcdir) && \
978
+ $$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
979
+ fi; \
980
+ rm -rf $$backupdir; exit $$rc
981
+
982
+ doc/libffi.dvi: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
983
+ TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
984
+ MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
985
+ $(TEXI2DVI) -o $@ `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi
986
+
987
+ doc/libffi.pdf: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
988
+ TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
989
+ MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
990
+ $(TEXI2PDF) -o $@ `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi
991
+
992
+ doc/libffi.html: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
993
+ rm -rf $(@:.html=.htp)
994
+ if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
995
+ -o $(@:.html=.htp) `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi; \
996
+ then \
997
+ rm -rf $@; \
998
+ if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
999
+ mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
1000
+ else \
1001
+ if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
1002
+ rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
1003
+ exit 1; \
1004
+ fi
1005
+ $(srcdir)/doc/version.texi: @MAINTAINER_MODE_TRUE@ $(srcdir)/doc/stamp-vti
1006
+ $(srcdir)/doc/stamp-vti: doc/libffi.texi $(top_srcdir)/configure
1007
+ test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
1008
+ @(dir=.; test -f ./doc/libffi.texi || dir=$(srcdir); \
1009
+ set `$(SHELL) $(srcdir)/mdate-sh $$dir/doc/libffi.texi`; \
1010
+ echo "@set UPDATED $$1 $$2 $$3"; \
1011
+ echo "@set UPDATED-MONTH $$2 $$3"; \
1012
+ echo "@set EDITION $(VERSION)"; \
1013
+ echo "@set VERSION $(VERSION)") > vti.tmp
1014
+ @cmp -s vti.tmp $(srcdir)/doc/version.texi \
1015
+ || (echo "Updating $(srcdir)/doc/version.texi"; \
1016
+ cp vti.tmp $(srcdir)/doc/version.texi)
1017
+ -@rm -f vti.tmp
1018
+ @cp $(srcdir)/doc/version.texi $@
1019
+
1020
+ mostlyclean-vti:
1021
+ -rm -f vti.tmp
1022
+
1023
+ maintainer-clean-vti:
1024
+ @MAINTAINER_MODE_TRUE@ -rm -f $(srcdir)/doc/stamp-vti $(srcdir)/doc/version.texi
1025
+ .dvi.ps:
1026
+ TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
1027
+ $(DVIPS) -o $@ $<
1028
+
1029
+ uninstall-dvi-am:
1030
+ @$(NORMAL_UNINSTALL)
1031
+ @list='$(DVIS)'; for p in $$list; do \
1032
+ f=$(am__strip_dir) \
1033
+ echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
1034
+ rm -f "$(DESTDIR)$(dvidir)/$$f"; \
1035
+ done
1036
+
1037
+ uninstall-html-am:
1038
+ @$(NORMAL_UNINSTALL)
1039
+ @list='$(HTMLS)'; for p in $$list; do \
1040
+ f=$(am__strip_dir) \
1041
+ echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
1042
+ rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
1043
+ done
1044
+
1045
+ uninstall-info-am:
1046
+ @$(PRE_UNINSTALL)
1047
+ @if test -d '$(DESTDIR)$(infodir)' && \
1048
+ (install-info --version && \
1049
+ install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
1050
+ list='$(INFO_DEPS)'; \
1051
+ for file in $$list; do \
1052
+ relfile=`echo "$$file" | sed 's|^.*/||'`; \
1053
+ echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
1054
+ install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
1055
+ done; \
1056
+ else :; fi
1057
+ @$(NORMAL_UNINSTALL)
1058
+ @list='$(INFO_DEPS)'; \
1059
+ for file in $$list; do \
1060
+ relfile=`echo "$$file" | sed 's|^.*/||'`; \
1061
+ relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
1062
+ (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
1063
+ echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
1064
+ rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
1065
+ else :; fi); \
1066
+ done
1067
+
1068
+ uninstall-pdf-am:
1069
+ @$(NORMAL_UNINSTALL)
1070
+ @list='$(PDFS)'; for p in $$list; do \
1071
+ f=$(am__strip_dir) \
1072
+ echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
1073
+ rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
1074
+ done
1075
+
1076
+ uninstall-ps-am:
1077
+ @$(NORMAL_UNINSTALL)
1078
+ @list='$(PSS)'; for p in $$list; do \
1079
+ f=$(am__strip_dir) \
1080
+ echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
1081
+ rm -f "$(DESTDIR)$(psdir)/$$f"; \
1082
+ done
1083
+
1084
+ dist-info: $(INFO_DEPS)
1085
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
1086
+ list='$(INFO_DEPS)'; \
1087
+ for base in $$list; do \
1088
+ case $$base in \
1089
+ $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
1090
+ esac; \
1091
+ if test -f $$base; then d=.; else d=$(srcdir); fi; \
1092
+ base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
1093
+ for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
1094
+ if test -f $$file; then \
1095
+ relfile=`expr "$$file" : "$$d/\(.*\)"`; \
1096
+ test -f $(distdir)/$$relfile || \
1097
+ cp -p $$file $(distdir)/$$relfile; \
1098
+ else :; fi; \
1099
+ done; \
1100
+ done
1101
+
1102
+ mostlyclean-aminfo:
1103
+ -rm -rf libffi.aux libffi.cp libffi.cps libffi.fn libffi.ky libffi.log \
1104
+ libffi.pg libffi.tmp libffi.toc libffi.tp libffi.vr \
1105
+ doc/libffi.dvi doc/libffi.pdf doc/libffi.ps doc/libffi.html
1106
+
1107
+ maintainer-clean-aminfo:
1108
+ @list='$(INFO_DEPS)'; for i in $$list; do \
1109
+ i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
1110
+ echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
1111
+ rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
1112
+ done
1113
+ install-pkgconfigDATA: $(pkgconfig_DATA)
1114
+ @$(NORMAL_INSTALL)
1115
+ test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
1116
+ @list='$(pkgconfig_DATA)'; for p in $$list; do \
1117
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1118
+ f=$(am__strip_dir) \
1119
+ echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
1120
+ $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \
1121
+ done
1122
+
1123
+ uninstall-pkgconfigDATA:
1124
+ @$(NORMAL_UNINSTALL)
1125
+ @list='$(pkgconfig_DATA)'; for p in $$list; do \
1126
+ f=$(am__strip_dir) \
1127
+ echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
1128
+ rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
1129
+ done
1130
+
1131
+ # This directory's subdirectories are mostly independent; you can cd
1132
+ # into them and run `make' without going through this Makefile.
1133
+ # To change the values of `make' variables: instead of editing Makefiles,
1134
+ # (1) if the variable is set in `config.status', edit `config.status'
1135
+ # (which will cause the Makefiles to be regenerated when you run `make');
1136
+ # (2) otherwise, pass the desired values on the `make' command line.
1137
+ $(RECURSIVE_TARGETS):
1138
+ @failcom='exit 1'; \
1139
+ for f in x $$MAKEFLAGS; do \
1140
+ case $$f in \
1141
+ *=* | --[!k]*);; \
1142
+ *k*) failcom='fail=yes';; \
1143
+ esac; \
1144
+ done; \
1145
+ dot_seen=no; \
1146
+ target=`echo $@ | sed s/-recursive//`; \
1147
+ list='$(SUBDIRS)'; for subdir in $$list; do \
1148
+ echo "Making $$target in $$subdir"; \
1149
+ if test "$$subdir" = "."; then \
1150
+ dot_seen=yes; \
1151
+ local_target="$$target-am"; \
1152
+ else \
1153
+ local_target="$$target"; \
1154
+ fi; \
1155
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
1156
+ || eval $$failcom; \
1157
+ done; \
1158
+ if test "$$dot_seen" = "no"; then \
1159
+ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
1160
+ fi; test -z "$$fail"
1161
+
1162
+ $(RECURSIVE_CLEAN_TARGETS):
1163
+ @failcom='exit 1'; \
1164
+ for f in x $$MAKEFLAGS; do \
1165
+ case $$f in \
1166
+ *=* | --[!k]*);; \
1167
+ *k*) failcom='fail=yes';; \
1168
+ esac; \
1169
+ done; \
1170
+ dot_seen=no; \
1171
+ case "$@" in \
1172
+ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
1173
+ *) list='$(SUBDIRS)' ;; \
1174
+ esac; \
1175
+ rev=''; for subdir in $$list; do \
1176
+ if test "$$subdir" = "."; then :; else \
1177
+ rev="$$subdir $$rev"; \
1178
+ fi; \
1179
+ done; \
1180
+ rev="$$rev ."; \
1181
+ target=`echo $@ | sed s/-recursive//`; \
1182
+ for subdir in $$rev; do \
1183
+ echo "Making $$target in $$subdir"; \
1184
+ if test "$$subdir" = "."; then \
1185
+ local_target="$$target-am"; \
1186
+ else \
1187
+ local_target="$$target"; \
1188
+ fi; \
1189
+ (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
1190
+ || eval $$failcom; \
1191
+ done && test -z "$$fail"
1192
+ tags-recursive:
1193
+ list='$(SUBDIRS)'; for subdir in $$list; do \
1194
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
1195
+ done
1196
+ ctags-recursive:
1197
+ list='$(SUBDIRS)'; for subdir in $$list; do \
1198
+ test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
1199
+ done
1200
+
1201
+ ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
1202
+ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
1203
+ unique=`for i in $$list; do \
1204
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1205
+ done | \
1206
+ $(AWK) ' { files[$$0] = 1; } \
1207
+ END { for (i in files) print i; }'`; \
1208
+ mkid -fID $$unique
1209
+ tags: TAGS
1210
+
1211
+ TAGS: tags-recursive $(HEADERS) $(SOURCES) fficonfig.h.in $(TAGS_DEPENDENCIES) \
1212
+ $(TAGS_FILES) $(LISP)
1213
+ tags=; \
1214
+ here=`pwd`; \
1215
+ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
1216
+ include_option=--etags-include; \
1217
+ empty_fix=.; \
1218
+ else \
1219
+ include_option=--include; \
1220
+ empty_fix=; \
1221
+ fi; \
1222
+ list='$(SUBDIRS)'; for subdir in $$list; do \
1223
+ if test "$$subdir" = .; then :; else \
1224
+ test ! -f $$subdir/TAGS || \
1225
+ tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
1226
+ fi; \
1227
+ done; \
1228
+ list='$(SOURCES) $(HEADERS) fficonfig.h.in $(LISP) $(TAGS_FILES)'; \
1229
+ unique=`for i in $$list; do \
1230
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1231
+ done | \
1232
+ $(AWK) ' { files[$$0] = 1; } \
1233
+ END { for (i in files) print i; }'`; \
1234
+ if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
1235
+ test -n "$$unique" || unique=$$empty_fix; \
1236
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
1237
+ $$tags $$unique; \
1238
+ fi
1239
+ ctags: CTAGS
1240
+ CTAGS: ctags-recursive $(HEADERS) $(SOURCES) fficonfig.h.in $(TAGS_DEPENDENCIES) \
1241
+ $(TAGS_FILES) $(LISP)
1242
+ tags=; \
1243
+ here=`pwd`; \
1244
+ list='$(SOURCES) $(HEADERS) fficonfig.h.in $(LISP) $(TAGS_FILES)'; \
1245
+ unique=`for i in $$list; do \
1246
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
1247
+ done | \
1248
+ $(AWK) ' { files[$$0] = 1; } \
1249
+ END { for (i in files) print i; }'`; \
1250
+ test -z "$(CTAGS_ARGS)$$tags$$unique" \
1251
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
1252
+ $$tags $$unique
1253
+
1254
+ GTAGS:
1255
+ here=`$(am__cd) $(top_builddir) && pwd` \
1256
+ && cd $(top_srcdir) \
1257
+ && gtags -i $(GTAGS_ARGS) $$here
1258
+
1259
+ distclean-tags:
1260
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
1261
+
1262
+ distdir: $(DISTFILES)
1263
+ $(am__remove_distdir)
1264
+ test -d $(distdir) || mkdir $(distdir)
1265
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1266
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1267
+ list='$(DISTFILES)'; \
1268
+ dist_files=`for file in $$list; do echo $$file; done | \
1269
+ sed -e "s|^$$srcdirstrip/||;t" \
1270
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1271
+ case $$dist_files in \
1272
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
1273
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1274
+ sort -u` ;; \
1275
+ esac; \
1276
+ for file in $$dist_files; do \
1277
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1278
+ if test -d $$d/$$file; then \
1279
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1280
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1281
+ cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
1282
+ fi; \
1283
+ cp -pR $$d/$$file $(distdir)$$dir || exit 1; \
1284
+ else \
1285
+ test -f $(distdir)/$$file \
1286
+ || cp -p $$d/$$file $(distdir)/$$file \
1287
+ || exit 1; \
1288
+ fi; \
1289
+ done
1290
+ list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
1291
+ if test "$$subdir" = .; then :; else \
1292
+ test -d "$(distdir)/$$subdir" \
1293
+ || $(MKDIR_P) "$(distdir)/$$subdir" \
1294
+ || exit 1; \
1295
+ distdir=`$(am__cd) $(distdir) && pwd`; \
1296
+ top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
1297
+ (cd $$subdir && \
1298
+ $(MAKE) $(AM_MAKEFLAGS) \
1299
+ top_distdir="$$top_distdir" \
1300
+ distdir="$$distdir/$$subdir" \
1301
+ am__remove_distdir=: \
1302
+ am__skip_length_check=: \
1303
+ distdir) \
1304
+ || exit 1; \
1305
+ fi; \
1306
+ done
1307
+ $(MAKE) $(AM_MAKEFLAGS) \
1308
+ top_distdir="$(top_distdir)" distdir="$(distdir)" \
1309
+ dist-info
1310
+ -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
1311
+ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
1312
+ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
1313
+ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
1314
+ || chmod -R a+r $(distdir)
1315
+ dist-gzip: distdir
1316
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
1317
+ $(am__remove_distdir)
1318
+
1319
+ dist-bzip2: distdir
1320
+ tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
1321
+ $(am__remove_distdir)
1322
+
1323
+ dist-tarZ: distdir
1324
+ tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
1325
+ $(am__remove_distdir)
1326
+
1327
+ dist-shar: distdir
1328
+ shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
1329
+ $(am__remove_distdir)
1330
+
1331
+ dist-zip: distdir
1332
+ -rm -f $(distdir).zip
1333
+ zip -rq $(distdir).zip $(distdir)
1334
+ $(am__remove_distdir)
1335
+
1336
+ dist dist-all: distdir
1337
+ tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
1338
+ $(am__remove_distdir)
1339
+
1340
+ # This target untars the dist file and tries a VPATH configuration. Then
1341
+ # it guarantees that the distribution is self-contained by making another
1342
+ # tarfile.
1343
+ distcheck: dist
1344
+ case '$(DIST_ARCHIVES)' in \
1345
+ *.tar.gz*) \
1346
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(am__untar) ;;\
1347
+ *.tar.bz2*) \
1348
+ bunzip2 -c $(distdir).tar.bz2 | $(am__untar) ;;\
1349
+ *.tar.Z*) \
1350
+ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
1351
+ *.shar.gz*) \
1352
+ GZIP=$(GZIP_ENV) gunzip -c $(distdir).shar.gz | unshar ;;\
1353
+ *.zip*) \
1354
+ unzip $(distdir).zip ;;\
1355
+ esac
1356
+ chmod -R a-w $(distdir); chmod a+w $(distdir)
1357
+ mkdir $(distdir)/_build
1358
+ mkdir $(distdir)/_inst
1359
+ chmod a-w $(distdir)
1360
+ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
1361
+ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
1362
+ && cd $(distdir)/_build \
1363
+ && ../configure --srcdir=.. --prefix="$$dc_install_base" \
1364
+ $(DISTCHECK_CONFIGURE_FLAGS) \
1365
+ && $(MAKE) $(AM_MAKEFLAGS) \
1366
+ && $(MAKE) $(AM_MAKEFLAGS) dvi \
1367
+ && $(MAKE) $(AM_MAKEFLAGS) check \
1368
+ && $(MAKE) $(AM_MAKEFLAGS) install \
1369
+ && $(MAKE) $(AM_MAKEFLAGS) installcheck \
1370
+ && $(MAKE) $(AM_MAKEFLAGS) uninstall \
1371
+ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
1372
+ distuninstallcheck \
1373
+ && chmod -R a-w "$$dc_install_base" \
1374
+ && ({ \
1375
+ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
1376
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
1377
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
1378
+ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
1379
+ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
1380
+ } || { rm -rf "$$dc_destdir"; exit 1; }) \
1381
+ && rm -rf "$$dc_destdir" \
1382
+ && $(MAKE) $(AM_MAKEFLAGS) dist \
1383
+ && rm -rf $(DIST_ARCHIVES) \
1384
+ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck
1385
+ $(am__remove_distdir)
1386
+ @(echo "$(distdir) archives ready for distribution: "; \
1387
+ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
1388
+ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
1389
+ distuninstallcheck:
1390
+ @cd $(distuninstallcheck_dir) \
1391
+ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
1392
+ || { echo "ERROR: files left after uninstall:" ; \
1393
+ if test -n "$(DESTDIR)"; then \
1394
+ echo " (check DESTDIR support)"; \
1395
+ fi ; \
1396
+ $(distuninstallcheck_listfiles) ; \
1397
+ exit 1; } >&2
1398
+ distcleancheck: distclean
1399
+ @if test '$(srcdir)' = . ; then \
1400
+ echo "ERROR: distcleancheck can only run from a VPATH build" ; \
1401
+ exit 1 ; \
1402
+ fi
1403
+ @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
1404
+ || { echo "ERROR: files left in build directory after distclean:" ; \
1405
+ $(distcleancheck_listfiles) ; \
1406
+ exit 1; } >&2
1407
+ check-am: all-am
1408
+ check: check-recursive
1409
+ all-am: Makefile $(INFO_DEPS) $(LTLIBRARIES) $(DATA) fficonfig.h
1410
+ installdirs: installdirs-recursive
1411
+ installdirs-am:
1412
+ for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(pkgconfigdir)"; do \
1413
+ test -z "$$dir" || $(MKDIR_P) "$$dir"; \
1414
+ done
1415
+ install: install-recursive
1416
+ install-exec: install-exec-recursive
1417
+ install-data: install-data-recursive
1418
+ uninstall: uninstall-recursive
1419
+
1420
+ install-am: all-am
1421
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1422
+
1423
+ installcheck: installcheck-recursive
1424
+ install-strip:
1425
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1426
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1427
+ `test -z '$(STRIP)' || \
1428
+ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
1429
+ mostlyclean-generic:
1430
+
1431
+ clean-generic:
1432
+
1433
+ distclean-generic:
1434
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1435
+ -rm -f doc/$(am__dirstamp)
1436
+ -rm -f src/$(DEPDIR)/$(am__dirstamp)
1437
+ -rm -f src/$(am__dirstamp)
1438
+ -rm -f src/alpha/$(DEPDIR)/$(am__dirstamp)
1439
+ -rm -f src/alpha/$(am__dirstamp)
1440
+ -rm -f src/arm/$(DEPDIR)/$(am__dirstamp)
1441
+ -rm -f src/arm/$(am__dirstamp)
1442
+ -rm -f src/cris/$(DEPDIR)/$(am__dirstamp)
1443
+ -rm -f src/cris/$(am__dirstamp)
1444
+ -rm -f src/frv/$(DEPDIR)/$(am__dirstamp)
1445
+ -rm -f src/frv/$(am__dirstamp)
1446
+ -rm -f src/ia64/$(DEPDIR)/$(am__dirstamp)
1447
+ -rm -f src/ia64/$(am__dirstamp)
1448
+ -rm -f src/m32r/$(DEPDIR)/$(am__dirstamp)
1449
+ -rm -f src/m32r/$(am__dirstamp)
1450
+ -rm -f src/m68k/$(DEPDIR)/$(am__dirstamp)
1451
+ -rm -f src/m68k/$(am__dirstamp)
1452
+ -rm -f src/mips/$(DEPDIR)/$(am__dirstamp)
1453
+ -rm -f src/mips/$(am__dirstamp)
1454
+ -rm -f src/pa/$(DEPDIR)/$(am__dirstamp)
1455
+ -rm -f src/pa/$(am__dirstamp)
1456
+ -rm -f src/powerpc/$(DEPDIR)/$(am__dirstamp)
1457
+ -rm -f src/powerpc/$(am__dirstamp)
1458
+ -rm -f src/s390/$(DEPDIR)/$(am__dirstamp)
1459
+ -rm -f src/s390/$(am__dirstamp)
1460
+ -rm -f src/sh/$(DEPDIR)/$(am__dirstamp)
1461
+ -rm -f src/sh/$(am__dirstamp)
1462
+ -rm -f src/sh64/$(DEPDIR)/$(am__dirstamp)
1463
+ -rm -f src/sh64/$(am__dirstamp)
1464
+ -rm -f src/sparc/$(DEPDIR)/$(am__dirstamp)
1465
+ -rm -f src/sparc/$(am__dirstamp)
1466
+ -rm -f src/x86/$(DEPDIR)/$(am__dirstamp)
1467
+ -rm -f src/x86/$(am__dirstamp)
1468
+
1469
+ maintainer-clean-generic:
1470
+ @echo "This command is intended for maintainers to use"
1471
+ @echo "it deletes files that may require special tools to rebuild."
1472
+ clean: clean-recursive
1473
+
1474
+ clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
1475
+ clean-noinstLTLIBRARIES mostlyclean-am
1476
+
1477
+ distclean: distclean-recursive
1478
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
1479
+ -rm -rf src/$(DEPDIR) src/alpha/$(DEPDIR) src/arm/$(DEPDIR) src/cris/$(DEPDIR) src/frv/$(DEPDIR) src/ia64/$(DEPDIR) src/m32r/$(DEPDIR) src/m68k/$(DEPDIR) src/mips/$(DEPDIR) src/pa/$(DEPDIR) src/powerpc/$(DEPDIR) src/s390/$(DEPDIR) src/sh/$(DEPDIR) src/sh64/$(DEPDIR) src/sparc/$(DEPDIR) src/x86/$(DEPDIR)
1480
+ -rm -f Makefile
1481
+ distclean-am: clean-am distclean-compile distclean-generic \
1482
+ distclean-hdr distclean-libtool distclean-tags
1483
+
1484
+ dvi: dvi-recursive
1485
+
1486
+ dvi-am: $(DVIS)
1487
+
1488
+ html: html-recursive
1489
+
1490
+ html-am: $(HTMLS)
1491
+
1492
+ info: info-recursive
1493
+
1494
+ info-am: $(INFO_DEPS)
1495
+
1496
+ install-data-am: install-info-am install-pkgconfigDATA
1497
+
1498
+ install-dvi: install-dvi-recursive
1499
+
1500
+ install-dvi-am: $(DVIS)
1501
+ @$(NORMAL_INSTALL)
1502
+ test -z "$(dvidir)" || $(MKDIR_P) "$(DESTDIR)$(dvidir)"
1503
+ @list='$(DVIS)'; for p in $$list; do \
1504
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1505
+ f=$(am__strip_dir) \
1506
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/$$f'"; \
1507
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(dvidir)/$$f"; \
1508
+ done
1509
+ install-exec-am: install-libLTLIBRARIES
1510
+
1511
+ install-html-am: $(HTMLS)
1512
+ @$(NORMAL_INSTALL)
1513
+ test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
1514
+ @list='$(HTMLS)'; for p in $$list; do \
1515
+ if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
1516
+ f=$(am__strip_dir) \
1517
+ if test -d "$$d$$p"; then \
1518
+ echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
1519
+ $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
1520
+ echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
1521
+ $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
1522
+ else \
1523
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
1524
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
1525
+ fi; \
1526
+ done
1527
+ install-info: install-info-recursive
1528
+
1529
+ install-info-am: $(INFO_DEPS)
1530
+ @$(NORMAL_INSTALL)
1531
+ test -z "$(infodir)" || $(MKDIR_P) "$(DESTDIR)$(infodir)"
1532
+ @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
1533
+ list='$(INFO_DEPS)'; \
1534
+ for file in $$list; do \
1535
+ case $$file in \
1536
+ $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
1537
+ esac; \
1538
+ if test -f $$file; then d=.; else d=$(srcdir); fi; \
1539
+ file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
1540
+ for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
1541
+ $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
1542
+ if test -f $$ifile; then \
1543
+ relfile=`echo "$$ifile" | sed 's|^.*/||'`; \
1544
+ echo " $(INSTALL_DATA) '$$ifile' '$(DESTDIR)$(infodir)/$$relfile'"; \
1545
+ $(INSTALL_DATA) "$$ifile" "$(DESTDIR)$(infodir)/$$relfile"; \
1546
+ else : ; fi; \
1547
+ done; \
1548
+ done
1549
+ @$(POST_INSTALL)
1550
+ @if (install-info --version && \
1551
+ install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
1552
+ list='$(INFO_DEPS)'; \
1553
+ for file in $$list; do \
1554
+ relfile=`echo "$$file" | sed 's|^.*/||'`; \
1555
+ echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
1556
+ install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
1557
+ done; \
1558
+ else : ; fi
1559
+ install-man:
1560
+
1561
+ install-pdf-am: $(PDFS)
1562
+ @$(NORMAL_INSTALL)
1563
+ test -z "$(pdfdir)" || $(MKDIR_P) "$(DESTDIR)$(pdfdir)"
1564
+ @list='$(PDFS)'; for p in $$list; do \
1565
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1566
+ f=$(am__strip_dir) \
1567
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
1568
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
1569
+ done
1570
+ install-ps: install-ps-recursive
1571
+
1572
+ install-ps-am: $(PSS)
1573
+ @$(NORMAL_INSTALL)
1574
+ test -z "$(psdir)" || $(MKDIR_P) "$(DESTDIR)$(psdir)"
1575
+ @list='$(PSS)'; for p in $$list; do \
1576
+ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
1577
+ f=$(am__strip_dir) \
1578
+ echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(psdir)/$$f'"; \
1579
+ $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(psdir)/$$f"; \
1580
+ done
1581
+ installcheck-am:
1582
+
1583
+ maintainer-clean: maintainer-clean-recursive
1584
+ -rm -f $(am__CONFIG_DISTCLEAN_FILES)
1585
+ -rm -rf $(top_srcdir)/autom4te.cache
1586
+ -rm -rf src/$(DEPDIR) src/alpha/$(DEPDIR) src/arm/$(DEPDIR) src/cris/$(DEPDIR) src/frv/$(DEPDIR) src/ia64/$(DEPDIR) src/m32r/$(DEPDIR) src/m68k/$(DEPDIR) src/mips/$(DEPDIR) src/pa/$(DEPDIR) src/powerpc/$(DEPDIR) src/s390/$(DEPDIR) src/sh/$(DEPDIR) src/sh64/$(DEPDIR) src/sparc/$(DEPDIR) src/x86/$(DEPDIR)
1587
+ -rm -f Makefile
1588
+ maintainer-clean-am: distclean-am maintainer-clean-aminfo \
1589
+ maintainer-clean-generic maintainer-clean-vti
1590
+
1591
+ mostlyclean: mostlyclean-recursive
1592
+
1593
+ mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
1594
+ mostlyclean-generic mostlyclean-libtool mostlyclean-vti
1595
+
1596
+ pdf: pdf-recursive
1597
+
1598
+ pdf-am: $(PDFS)
1599
+
1600
+ ps: ps-recursive
1601
+
1602
+ ps-am: $(PSS)
1603
+
1604
+ uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
1605
+ uninstall-libLTLIBRARIES uninstall-pdf-am \
1606
+ uninstall-pkgconfigDATA uninstall-ps-am
1607
+
1608
+ .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
1609
+ install-strip
1610
+
1611
+ .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
1612
+ all all-am am--refresh check check-am clean clean-generic \
1613
+ clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \
1614
+ ctags ctags-recursive dist dist-all dist-bzip2 dist-gzip \
1615
+ dist-info dist-shar dist-tarZ dist-zip distcheck distclean \
1616
+ distclean-compile distclean-generic distclean-hdr \
1617
+ distclean-libtool distclean-tags distcleancheck distdir \
1618
+ distuninstallcheck dvi dvi-am html html-am info info-am \
1619
+ install install-am install-data install-data-am install-dvi \
1620
+ install-dvi-am install-exec install-exec-am install-html \
1621
+ install-html-am install-info install-info-am \
1622
+ install-libLTLIBRARIES install-man install-pdf install-pdf-am \
1623
+ install-pkgconfigDATA install-ps install-ps-am install-strip \
1624
+ installcheck installcheck-am installdirs installdirs-am \
1625
+ maintainer-clean maintainer-clean-aminfo \
1626
+ maintainer-clean-generic maintainer-clean-vti mostlyclean \
1627
+ mostlyclean-aminfo mostlyclean-compile mostlyclean-generic \
1628
+ mostlyclean-libtool mostlyclean-vti pdf pdf-am ps ps-am tags \
1629
+ tags-recursive uninstall uninstall-am uninstall-dvi-am \
1630
+ uninstall-html-am uninstall-info-am uninstall-libLTLIBRARIES \
1631
+ uninstall-pdf-am uninstall-pkgconfigDATA uninstall-ps-am
1632
+
1633
+
1634
+ # No install-html or install-pdf support in automake yet
1635
+ .PHONY: install-html install-pdf
1636
+ install-html:
1637
+ install-pdf:
1638
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1639
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1640
+ .NOEXPORT: