ffi 1.1.2 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +456 -0
- data/COPYING +49 -0
- data/Gemfile +21 -0
- data/LICENSE +21 -11
- data/LICENSE.SPECS +22 -0
- data/README.md +137 -0
- data/Rakefile +166 -156
- data/ext/ffi_c/AbstractMemory.c +240 -140
- data/ext/ffi_c/AbstractMemory.h +25 -15
- data/ext/ffi_c/ArrayType.c +78 -29
- data/ext/ffi_c/ArrayType.h +22 -12
- data/ext/ffi_c/Buffer.c +121 -60
- data/ext/ffi_c/Call.c +184 -137
- data/ext/ffi_c/Call.h +46 -22
- data/ext/ffi_c/ClosurePool.c +101 -43
- data/ext/ffi_c/ClosurePool.h +24 -13
- data/ext/ffi_c/DynamicLibrary.c +139 -57
- data/ext/ffi_c/DynamicLibrary.h +70 -12
- data/ext/ffi_c/Function.c +372 -273
- data/ext/ffi_c/Function.h +25 -20
- data/ext/ffi_c/FunctionInfo.c +135 -49
- data/ext/ffi_c/LastError.c +97 -30
- data/ext/ffi_c/LastError.h +21 -12
- data/ext/ffi_c/LongDouble.c +15 -9
- data/ext/ffi_c/LongDouble.h +21 -16
- data/ext/ffi_c/MappedType.c +88 -38
- data/ext/ffi_c/MappedType.h +21 -14
- data/ext/ffi_c/MemoryPointer.c +91 -38
- data/ext/ffi_c/MemoryPointer.h +22 -19
- data/ext/ffi_c/MethodHandle.c +52 -51
- data/ext/ffi_c/MethodHandle.h +24 -14
- data/ext/ffi_c/Platform.c +28 -62
- data/ext/ffi_c/Platform.h +21 -12
- data/ext/ffi_c/Pointer.c +145 -86
- data/ext/ffi_c/Pointer.h +23 -19
- data/ext/ffi_c/Struct.c +363 -163
- data/ext/ffi_c/Struct.h +39 -21
- data/ext/ffi_c/StructByValue.c +72 -37
- data/ext/ffi_c/StructByValue.h +21 -12
- data/ext/ffi_c/StructLayout.c +308 -94
- data/ext/ffi_c/Thread.c +73 -270
- data/ext/ffi_c/Thread.h +32 -35
- data/ext/ffi_c/Type.c +147 -84
- data/ext/ffi_c/Type.h +27 -11
- data/ext/ffi_c/Types.c +40 -24
- data/ext/ffi_c/Types.h +24 -21
- data/ext/ffi_c/Variadic.c +148 -64
- data/ext/ffi_c/compat.h +45 -37
- data/ext/ffi_c/extconf.rb +86 -32
- data/ext/ffi_c/ffi.c +32 -21
- data/ext/ffi_c/libffi/.allow-ai-service +0 -0
- data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/ext/ffi_c/libffi/.appveyor.yml +84 -0
- data/ext/ffi_c/libffi/.ci/ar-lib +270 -0
- data/ext/ffi_c/libffi/.ci/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/.ci/build-in-container.sh +10 -0
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/.ci/compile +351 -0
- data/ext/ffi_c/libffi/.ci/install.sh +78 -0
- data/ext/ffi_c/libffi/.ci/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/moxie-sim.exp +60 -0
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/.ci/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.ci/site.exp +29 -0
- data/ext/ffi_c/libffi/.ci/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +479 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +172 -0
- data/ext/ffi_c/libffi/.gitignore +46 -0
- data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.old} +6366 -3559
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +353 -0
- data/ext/ffi_c/libffi/Makefile.am +131 -170
- data/ext/ffi_c/libffi/Makefile.in +1317 -1010
- data/ext/ffi_c/libffi/README.md +531 -0
- data/ext/ffi_c/libffi/acinclude.m4 +289 -4
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/compile +222 -17
- data/ext/ffi_c/libffi/config.guess +1033 -780
- data/ext/ffi_c/libffi/config.sub +1393 -1206
- data/ext/ffi_c/libffi/configure +16340 -10740
- data/ext/ffi_c/libffi/configure.ac +226 -271
- data/ext/ffi_c/libffi/configure.host +330 -4
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/Makefile.in +818 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +525 -79
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +41 -52
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +312 -0
- data/ext/ffi_c/libffi/include/Makefile.am +3 -3
- data/ext/ffi_c/libffi/include/Makefile.in +201 -79
- data/ext/ffi_c/libffi/include/ffi.h.in +190 -99
- data/ext/ffi_c/libffi/include/ffi_cfi.h +76 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +72 -14
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +231 -210
- data/ext/ffi_c/libffi/libffi.map.in +81 -0
- data/ext/ffi_c/libffi/libffi.pc.in +3 -2
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +997 -0
- data/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +3868 -2068
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +50 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +47 -25
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +110 -147
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +53 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +75 -19
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +8 -29
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +11 -9
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +104 -52
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +18 -8
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
- data/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/ext/ffi_c/libffi/man/Makefile.am +2 -2
- data/ext/ffi_c/libffi/man/Makefile.in +156 -57
- data/ext/ffi_c/libffi/man/ffi.3 +10 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/missing +153 -314
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/ext/ffi_c/libffi/{include/ffi.h.vc64 → msvc_build/aarch64/aarch64_include/ffi.h} +151 -67
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
- data/ext/ffi_c/libffi/msvcc.sh +176 -20
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +1142 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +97 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +100 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +695 -0
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
- data/ext/ffi_c/libffi/src/arc/arcompact.S +210 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +443 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +67 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +706 -513
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +32 -8
- data/ext/ffi_c/libffi/src/arm/internal.h +17 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +372 -413
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +565 -73
- data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
- data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
- data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
- data/ext/ffi_c/libffi/src/debug.c +8 -3
- data/ext/ffi_c/libffi/src/dlmalloc.c +23 -13
- data/ext/ffi_c/libffi/src/frv/ffi.c +2 -2
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +47 -13
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +8 -2
- data/ext/ffi_c/libffi/src/ia64/unix.S +28 -3
- data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
- data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
- data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
- data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
- data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffi.c +624 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +32 -15
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +382 -101
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +23 -14
- data/ext/ffi_c/libffi/src/mips/n32.S +321 -89
- data/ext/ffi_c/libffi/src/mips/o32.S +211 -31
- data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
- data/ext/ffi_c/libffi/src/moxie/ffi.c +100 -66
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +341 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +62 -108
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +28 -12
- data/ext/ffi_c/libffi/src/pa/hpux32.S +87 -38
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +109 -39
- data/ext/ffi_c/libffi/src/powerpc/aix.S +245 -7
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +253 -4
- data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +105 -1378
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +157 -52
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1153 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +105 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +110 -45
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +191 -85
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +438 -108
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +73 -119
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +131 -25
- data/ext/ffi_c/libffi/src/raw_api.c +18 -5
- data/ext/ffi_c/libffi/src/riscv/ffi.c +514 -0
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
- data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +630 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
- data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/types.c +48 -19
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +947 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +686 -498
- data/ext/ffi_c/libffi/src/x86/ffi64.c +444 -129
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +79 -36
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +361 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +43 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +36 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +1198 -394
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +998 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +585 -300
- data/ext/ffi_c/libffi/src/x86/win64.S +244 -458
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +238 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +306 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +268 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -73
- data/ext/ffi_c/libffi/testsuite/Makefile.in +233 -117
- data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +86 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +360 -28
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +22 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1746 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +747 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +28 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +108 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +52 -42
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +15 -12
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +9 -10
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +140 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call/closure_stdcall.c → libffi.closures/closure_simple.c} +13 -16
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +22 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +26 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +28 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +33 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +8 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +25 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +40 -8
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +23 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +17 -4
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +113 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +26 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +17 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +33 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +29 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +32 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +28 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +43 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +29 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +18 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +18 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +18 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +24 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +44 -31
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +44 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +22 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +22 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +23 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +7 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +19 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +14 -4
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +32 -12
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_many_mixed_float_double.c +55 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +6 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +21 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +125 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +49 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +7 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +41 -40
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +38 -15
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +9 -9
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +19 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +137 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +15 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +15 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +17 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +14 -5
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +17 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +17 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +7 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +6 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +6 -6
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +8 -3
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest.cc +4 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.closures}/unwindtest_ffi_call.cc +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/libffi.bsd.mk +13 -7
- data/ext/ffi_c/libffi.darwin.mk +25 -13
- data/ext/ffi_c/libffi.gnu.mk +4 -3
- data/ext/ffi_c/libffi.mk +11 -6
- data/ext/ffi_c/libffi.vc.mk +1 -1
- data/ext/ffi_c/libffi.vc64.mk +1 -1
- data/ext/ffi_c/rbffi.h +23 -15
- data/ext/ffi_c/rbffi_endian.h +11 -2
- data/ffi.gemspec +42 -0
- data/lib/ffi/abstract_memory.rb +44 -0
- data/lib/ffi/autopointer.rb +65 -68
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/dynamic_library.rb +118 -0
- data/lib/ffi/enum.rb +166 -25
- data/lib/ffi/errno.rb +21 -11
- data/lib/ffi/ffi.rb +28 -11
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +25 -15
- data/lib/ffi/library.rb +227 -136
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +64 -35
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +175 -0
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/lib/ffi/platform/arm-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/arm-linux/types.conf +110 -82
- data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +89 -89
- data/lib/ffi/platform/i386-freebsd12/types.conf +152 -0
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -87
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +43 -96
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparcv9-linux/types.conf +102 -0
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +93 -63
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +90 -88
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -87
- data/lib/ffi/platform/x86_64-openbsd/types.conf +100 -92
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +52 -0
- data/lib/ffi/platform.rb +91 -34
- data/lib/ffi/pointer.rb +78 -33
- data/lib/ffi/struct.rb +100 -66
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +84 -19
- data/lib/ffi/tools/const_generator.rb +11 -8
- data/lib/ffi/tools/generator.rb +48 -1
- data/lib/ffi/tools/generator_task.rb +13 -16
- data/lib/ffi/tools/struct_generator.rb +6 -5
- data/lib/ffi/tools/types_generator.rb +14 -10
- data/lib/ffi/types.rb +96 -51
- data/lib/ffi/union.rb +23 -12
- data/lib/ffi/variadic.rb +44 -29
- data/lib/ffi/version.rb +3 -0
- data/lib/ffi.rb +20 -8
- data/rakelib/ffi_gem_helper.rb +65 -0
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +8 -0
- data/samples/hello_ractor.rb +11 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +75 -0
- data/samples/qsort.rb +20 -0
- data/samples/qsort_ractor.rb +28 -0
- data/sig/ffi/abstract_memory.rbs +165 -0
- data/sig/ffi/auto_pointer.rbs +27 -0
- data/sig/ffi/buffer.rbs +18 -0
- data/sig/ffi/data_converter.rbs +10 -0
- data/sig/ffi/dynamic_library.rbs +9 -0
- data/sig/ffi/enum.rbs +38 -0
- data/sig/ffi/function.rbs +39 -0
- data/sig/ffi/library.rbs +42 -0
- data/sig/ffi/native_type.rbs +86 -0
- data/sig/ffi/pointer.rbs +42 -0
- data/sig/ffi/struct.rbs +76 -0
- data/sig/ffi/struct_by_reference.rbs +11 -0
- data/sig/ffi/struct_by_value.rbs +7 -0
- data/sig/ffi/struct_layout.rbs +9 -0
- data/sig/ffi/struct_layout_builder.rbs +5 -0
- data/sig/ffi/type.rbs +39 -0
- data/sig/ffi.rbs +26 -0
- data.tar.gz.sig +0 -0
- metadata +508 -268
- metadata.gz.sig +1 -0
- data/History.txt +0 -1
- data/README.rdoc +0 -102
- data/ext/ffi_c/DataConverter.c +0 -91
- data/ext/ffi_c/Ffi_c.iml +0 -12
- data/ext/ffi_c/StructByReference.c +0 -158
- data/ext/ffi_c/StructByReference.h +0 -50
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/ext/ffi_c/libffi/Makefile.vc +0 -141
- data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
- data/ext/ffi_c/libffi/README +0 -342
- data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
- data/ext/ffi_c/libffi/build-ios.sh +0 -67
- data/ext/ffi_c/libffi/depcomp +0 -630
- data/ext/ffi_c/libffi/doc/libffi.info +0 -593
- data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
- data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +0 -76
- data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
- data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
- data/ext/ffi_c/libffi/mdate-sh +0 -201
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
- data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
- data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
- data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
- data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
- data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
- data/ext/ffi_c/libffi/texinfo.tex +0 -7210
- data/ext/ffi_c/win32/stdint.h +0 -199
- data/gen/Rakefile +0 -30
- data/lib/Lib.iml +0 -13
- data/spec/ffi/Ffi.iml +0 -12
- data/spec/ffi/async_callback_spec.rb +0 -46
- data/spec/ffi/bool_spec.rb +0 -40
- data/spec/ffi/buffer_spec.rb +0 -215
- data/spec/ffi/callback_spec.rb +0 -668
- data/spec/ffi/custom_param_type.rb +0 -47
- data/spec/ffi/custom_type_spec.rb +0 -85
- data/spec/ffi/dup_spec.rb +0 -65
- data/spec/ffi/enum_spec.rb +0 -227
- data/spec/ffi/errno_spec.rb +0 -29
- data/spec/ffi/ffi_spec.rb +0 -40
- data/spec/ffi/function_spec.rb +0 -87
- data/spec/ffi/library_spec.rb +0 -208
- data/spec/ffi/long_double.rb +0 -41
- data/spec/ffi/managed_struct_spec.rb +0 -72
- data/spec/ffi/number_spec.rb +0 -247
- data/spec/ffi/pointer_spec.rb +0 -214
- data/spec/ffi/rbx/attach_function_spec.rb +0 -28
- data/spec/ffi/rbx/memory_pointer_spec.rb +0 -111
- data/spec/ffi/rbx/spec_helper.rb +0 -1
- data/spec/ffi/rbx/struct_spec.rb +0 -13
- data/spec/ffi/spec_helper.rb +0 -35
- data/spec/ffi/string_spec.rb +0 -119
- data/spec/ffi/strptr_spec.rb +0 -61
- data/spec/ffi/struct_callback_spec.rb +0 -80
- data/spec/ffi/struct_initialize_spec.rb +0 -46
- data/spec/ffi/struct_packed_spec.rb +0 -62
- data/spec/ffi/struct_spec.rb +0 -719
- data/spec/ffi/typedef_spec.rb +0 -89
- data/spec/ffi/union_spec.rb +0 -76
- data/spec/ffi/variadic_spec.rb +0 -103
- data/spec/spec.opts +0 -4
- data/tasks/ann.rake +0 -80
- data/tasks/extension.rake +0 -32
- data/tasks/gem.rake +0 -199
- data/tasks/git.rake +0 -41
- data/tasks/notes.rake +0 -27
- data/tasks/post_load.rake +0 -34
- data/tasks/rdoc.rake +0 -50
- data/tasks/rubyforge.rake +0 -55
- data/tasks/setup.rb +0 -301
- data/tasks/spec.rake +0 -54
- data/tasks/svn.rake +0 -47
- data/tasks/test.rake +0 -40
- data/tasks/yard.rake +0 -11
- data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/lib/ffi/platform/{i486-gnu → i386-gnu}/types.conf +84 -84
@@ -1,9 +1,8 @@
|
|
1
|
-
# Makefile.in generated by automake 1.
|
1
|
+
# Makefile.in generated by automake 1.16.5 from Makefile.am.
|
2
2
|
# @configure_input@
|
3
3
|
|
4
|
-
# Copyright (C) 1994
|
5
|
-
|
6
|
-
# Inc.
|
4
|
+
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
|
5
|
+
|
7
6
|
# This Makefile.in is free software; the Free Software Foundation
|
8
7
|
# gives unlimited permission to copy and/or distribute it,
|
9
8
|
# with or without modifications, as long as this notice is preserved.
|
@@ -16,7 +15,63 @@
|
|
16
15
|
@SET_MAKE@
|
17
16
|
|
18
17
|
|
18
|
+
|
19
19
|
VPATH = @srcdir@
|
20
|
+
am__is_gnu_make = { \
|
21
|
+
if test -z '$(MAKELEVEL)'; then \
|
22
|
+
false; \
|
23
|
+
elif test -n '$(MAKE_HOST)'; then \
|
24
|
+
true; \
|
25
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
26
|
+
true; \
|
27
|
+
else \
|
28
|
+
false; \
|
29
|
+
fi; \
|
30
|
+
}
|
31
|
+
am__make_running_with_option = \
|
32
|
+
case $${target_option-} in \
|
33
|
+
?) ;; \
|
34
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
35
|
+
"target option '$${target_option-}' specified" >&2; \
|
36
|
+
exit 1;; \
|
37
|
+
esac; \
|
38
|
+
has_opt=no; \
|
39
|
+
sane_makeflags=$$MAKEFLAGS; \
|
40
|
+
if $(am__is_gnu_make); then \
|
41
|
+
sane_makeflags=$$MFLAGS; \
|
42
|
+
else \
|
43
|
+
case $$MAKEFLAGS in \
|
44
|
+
*\\[\ \ ]*) \
|
45
|
+
bs=\\; \
|
46
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
47
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
48
|
+
esac; \
|
49
|
+
fi; \
|
50
|
+
skip_next=no; \
|
51
|
+
strip_trailopt () \
|
52
|
+
{ \
|
53
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
54
|
+
}; \
|
55
|
+
for flg in $$sane_makeflags; do \
|
56
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
57
|
+
case $$flg in \
|
58
|
+
*=*|--*) continue;; \
|
59
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
60
|
+
-*I?*) strip_trailopt 'I';; \
|
61
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
62
|
+
-*O?*) strip_trailopt 'O';; \
|
63
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
64
|
+
-*l?*) strip_trailopt 'l';; \
|
65
|
+
-[dEDm]) skip_next=yes;; \
|
66
|
+
-[JT]) skip_next=yes;; \
|
67
|
+
esac; \
|
68
|
+
case $$flg in \
|
69
|
+
*$$target_option*) has_opt=yes; break;; \
|
70
|
+
esac; \
|
71
|
+
done; \
|
72
|
+
test $$has_opt = yes
|
73
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
74
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
20
75
|
pkgdatadir = $(datadir)/@PACKAGE@
|
21
76
|
pkgincludedir = $(includedir)/@PACKAGE@
|
22
77
|
pkglibdir = $(libdir)/@PACKAGE@
|
@@ -36,57 +91,32 @@ POST_UNINSTALL = :
|
|
36
91
|
build_triplet = @build@
|
37
92
|
host_triplet = @host@
|
38
93
|
target_triplet = @target@
|
39
|
-
@
|
40
|
-
@
|
41
|
-
@X86_FREEBSD_TRUE@am__append_3 = src/x86/ffi.c src/x86/freebsd.S
|
42
|
-
@X86_WIN32_TRUE@am__append_4 = src/x86/ffi.c src/x86/win32.S
|
43
|
-
@X86_WIN64_TRUE@am__append_5 = src/x86/ffi.c src/x86/win64.S
|
44
|
-
@X86_DARWIN_TRUE@am__append_6 = src/x86/ffi.c src/x86/darwin.S src/x86/ffi64.c src/x86/darwin64.S
|
45
|
-
@SPARC_TRUE@am__append_7 = src/sparc/ffi.c src/sparc/v8.S src/sparc/v9.S
|
46
|
-
@ALPHA_TRUE@am__append_8 = src/alpha/ffi.c src/alpha/osf.S
|
47
|
-
@IA64_TRUE@am__append_9 = src/ia64/ffi.c src/ia64/unix.S
|
48
|
-
@M32R_TRUE@am__append_10 = src/m32r/sysv.S src/m32r/ffi.c
|
49
|
-
@M68K_TRUE@am__append_11 = src/m68k/ffi.c src/m68k/sysv.S
|
50
|
-
@POWERPC_TRUE@am__append_12 = src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S src/powerpc/linux64.S src/powerpc/linux64_closure.S
|
51
|
-
@POWERPC_AIX_TRUE@am__append_13 = src/powerpc/ffi_darwin.c src/powerpc/aix.S src/powerpc/aix_closure.S
|
52
|
-
@POWERPC_DARWIN_TRUE@am__append_14 = src/powerpc/ffi_darwin.c src/powerpc/darwin.S src/powerpc/darwin_closure.S
|
53
|
-
@POWERPC_FREEBSD_TRUE@am__append_15 = src/powerpc/ffi.c src/powerpc/sysv.S src/powerpc/ppc_closure.S
|
54
|
-
@ARM_TRUE@am__append_16 = src/arm/sysv.S src/arm/ffi.c
|
55
|
-
@ARM_TRUE@@FFI_EXEC_TRAMPOLINE_TABLE_TRUE@am__append_17 = src/arm/trampoline.S
|
56
|
-
@AVR32_TRUE@am__append_18 = src/avr32/sysv.S src/avr32/ffi.c
|
57
|
-
@LIBFFI_CRIS_TRUE@am__append_19 = src/cris/sysv.S src/cris/ffi.c
|
58
|
-
@FRV_TRUE@am__append_20 = src/frv/eabi.S src/frv/ffi.c
|
59
|
-
@S390_TRUE@am__append_21 = src/s390/sysv.S src/s390/ffi.c
|
60
|
-
@X86_64_TRUE@am__append_22 = src/x86/ffi64.c src/x86/unix64.S src/x86/ffi.c src/x86/sysv.S
|
61
|
-
@SH_TRUE@am__append_23 = src/sh/sysv.S src/sh/ffi.c
|
62
|
-
@SH64_TRUE@am__append_24 = src/sh64/sysv.S src/sh64/ffi.c
|
63
|
-
@PA_LINUX_TRUE@am__append_25 = src/pa/linux.S src/pa/ffi.c
|
64
|
-
@PA_HPUX_TRUE@am__append_26 = src/pa/hpux32.S src/pa/ffi.c
|
94
|
+
@BUILD_DOCS_TRUE@am__append_1 = doc
|
95
|
+
@FFI_DEBUG_TRUE@am__append_2 = src/debug.c
|
65
96
|
# Build debug. Define FFI_DEBUG on the commandline so that, when building with
|
66
97
|
# MSVC, it can link against the debug CRT.
|
67
|
-
@FFI_DEBUG_TRUE@
|
98
|
+
@FFI_DEBUG_TRUE@am__append_3 = -DFFI_DEBUG
|
68
99
|
subdir = .
|
69
|
-
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
|
70
|
-
$(srcdir)/Makefile.in $(srcdir)/doc/stamp-vti \
|
71
|
-
$(srcdir)/doc/version.texi $(srcdir)/fficonfig.h.in \
|
72
|
-
$(srcdir)/libffi.pc.in $(top_srcdir)/configure ChangeLog \
|
73
|
-
compile config.guess config.sub depcomp install-sh ltmain.sh \
|
74
|
-
mdate-sh missing texinfo.tex
|
75
100
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
76
|
-
am__aclocal_m4_deps = $(top_srcdir)/m4/
|
101
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/asmcfi.m4 \
|
102
|
+
$(top_srcdir)/m4/ax_cc_maxopt.m4 \
|
77
103
|
$(top_srcdir)/m4/ax_cflags_warn_all.m4 \
|
78
|
-
$(top_srcdir)/m4/
|
104
|
+
$(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
79
105
|
$(top_srcdir)/m4/ax_compiler_vendor.m4 \
|
80
106
|
$(top_srcdir)/m4/ax_configure_args.m4 \
|
81
107
|
$(top_srcdir)/m4/ax_enable_builddir.m4 \
|
82
108
|
$(top_srcdir)/m4/ax_gcc_archflag.m4 \
|
83
109
|
$(top_srcdir)/m4/ax_gcc_x86_cpuid.m4 \
|
110
|
+
$(top_srcdir)/m4/ax_prepend_flag.m4 \
|
111
|
+
$(top_srcdir)/m4/ax_require_defined.m4 \
|
84
112
|
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
85
113
|
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
86
114
|
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
|
87
115
|
$(top_srcdir)/configure.ac
|
88
116
|
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
89
117
|
$(ACLOCAL_M4)
|
118
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
119
|
+
$(am__configure_deps) $(noinst_HEADERS) $(am__DIST_COMMON)
|
90
120
|
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
91
121
|
configure.lineno config.status.lineno
|
92
122
|
mkinstalldirs = $(install_sh) -d
|
@@ -114,139 +144,204 @@ am__nobase_list = $(am__nobase_strip_setup); \
|
|
114
144
|
am__base_list = \
|
115
145
|
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
116
146
|
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
117
|
-
|
147
|
+
am__uninstall_files_from_dir = { \
|
148
|
+
test -z "$$files" \
|
149
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
150
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
151
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
152
|
+
}
|
153
|
+
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" \
|
118
154
|
"$(DESTDIR)$(pkgconfigdir)"
|
119
|
-
LTLIBRARIES = $(
|
120
|
-
|
155
|
+
LTLIBRARIES = $(noinst_LTLIBRARIES) $(toolexeclib_LTLIBRARIES)
|
156
|
+
am__DEPENDENCIES_1 =
|
157
|
+
am__libffi_la_SOURCES_DIST = src/prep_cif.c src/types.c src/raw_api.c \
|
158
|
+
src/java_raw_api.c src/closures.c src/tramp.c src/debug.c
|
121
159
|
am__dirstamp = $(am__leading_dot)dirstamp
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
@SPARC_TRUE@am__objects_7 = src/sparc/ffi.lo src/sparc/v8.lo \
|
133
|
-
@SPARC_TRUE@ src/sparc/v9.lo
|
134
|
-
@ALPHA_TRUE@am__objects_8 = src/alpha/ffi.lo src/alpha/osf.lo
|
135
|
-
@IA64_TRUE@am__objects_9 = src/ia64/ffi.lo src/ia64/unix.lo
|
136
|
-
@M32R_TRUE@am__objects_10 = src/m32r/sysv.lo src/m32r/ffi.lo
|
137
|
-
@M68K_TRUE@am__objects_11 = src/m68k/ffi.lo src/m68k/sysv.lo
|
138
|
-
@POWERPC_TRUE@am__objects_12 = src/powerpc/ffi.lo src/powerpc/sysv.lo \
|
139
|
-
@POWERPC_TRUE@ src/powerpc/ppc_closure.lo \
|
140
|
-
@POWERPC_TRUE@ src/powerpc/linux64.lo \
|
141
|
-
@POWERPC_TRUE@ src/powerpc/linux64_closure.lo
|
142
|
-
@POWERPC_AIX_TRUE@am__objects_13 = src/powerpc/ffi_darwin.lo \
|
143
|
-
@POWERPC_AIX_TRUE@ src/powerpc/aix.lo \
|
144
|
-
@POWERPC_AIX_TRUE@ src/powerpc/aix_closure.lo
|
145
|
-
@POWERPC_DARWIN_TRUE@am__objects_14 = src/powerpc/ffi_darwin.lo \
|
146
|
-
@POWERPC_DARWIN_TRUE@ src/powerpc/darwin.lo \
|
147
|
-
@POWERPC_DARWIN_TRUE@ src/powerpc/darwin_closure.lo
|
148
|
-
@POWERPC_FREEBSD_TRUE@am__objects_15 = src/powerpc/ffi.lo \
|
149
|
-
@POWERPC_FREEBSD_TRUE@ src/powerpc/sysv.lo \
|
150
|
-
@POWERPC_FREEBSD_TRUE@ src/powerpc/ppc_closure.lo
|
151
|
-
@ARM_TRUE@am__objects_16 = src/arm/sysv.lo src/arm/ffi.lo
|
152
|
-
@ARM_TRUE@@FFI_EXEC_TRAMPOLINE_TABLE_TRUE@am__objects_17 = src/arm/trampoline.lo
|
153
|
-
@AVR32_TRUE@am__objects_18 = src/avr32/sysv.lo src/avr32/ffi.lo
|
154
|
-
@LIBFFI_CRIS_TRUE@am__objects_19 = src/cris/sysv.lo src/cris/ffi.lo
|
155
|
-
@FRV_TRUE@am__objects_20 = src/frv/eabi.lo src/frv/ffi.lo
|
156
|
-
@S390_TRUE@am__objects_21 = src/s390/sysv.lo src/s390/ffi.lo
|
157
|
-
@X86_64_TRUE@am__objects_22 = src/x86/ffi64.lo src/x86/unix64.lo \
|
158
|
-
@X86_64_TRUE@ src/x86/ffi.lo src/x86/sysv.lo
|
159
|
-
@SH_TRUE@am__objects_23 = src/sh/sysv.lo src/sh/ffi.lo
|
160
|
-
@SH64_TRUE@am__objects_24 = src/sh64/sysv.lo src/sh64/ffi.lo
|
161
|
-
@PA_LINUX_TRUE@am__objects_25 = src/pa/linux.lo src/pa/ffi.lo
|
162
|
-
@PA_HPUX_TRUE@am__objects_26 = src/pa/hpux32.lo src/pa/ffi.lo
|
163
|
-
nodist_libffi_la_OBJECTS = $(am__objects_1) $(am__objects_2) \
|
164
|
-
$(am__objects_3) $(am__objects_4) $(am__objects_5) \
|
165
|
-
$(am__objects_6) $(am__objects_7) $(am__objects_8) \
|
166
|
-
$(am__objects_9) $(am__objects_10) $(am__objects_11) \
|
167
|
-
$(am__objects_12) $(am__objects_13) $(am__objects_14) \
|
168
|
-
$(am__objects_15) $(am__objects_16) $(am__objects_17) \
|
169
|
-
$(am__objects_18) $(am__objects_19) $(am__objects_20) \
|
170
|
-
$(am__objects_21) $(am__objects_22) $(am__objects_23) \
|
171
|
-
$(am__objects_24) $(am__objects_25) $(am__objects_26)
|
172
|
-
libffi_la_OBJECTS = $(am_libffi_la_OBJECTS) \
|
173
|
-
$(nodist_libffi_la_OBJECTS)
|
174
|
-
libffi_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
|
160
|
+
@FFI_DEBUG_TRUE@am__objects_1 = src/debug.lo
|
161
|
+
am_libffi_la_OBJECTS = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
162
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
163
|
+
$(am__objects_1)
|
164
|
+
libffi_la_OBJECTS = $(am_libffi_la_OBJECTS)
|
165
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
166
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
167
|
+
am__v_lt_0 = --silent
|
168
|
+
am__v_lt_1 =
|
169
|
+
libffi_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
175
170
|
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
176
171
|
$(libffi_la_LDFLAGS) $(LDFLAGS) -o $@
|
177
|
-
|
178
|
-
|
179
|
-
src/raw_api.
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
$(
|
184
|
-
|
185
|
-
|
186
|
-
$(am__objects_16) $(am__objects_17) $(am__objects_18) \
|
187
|
-
$(am__objects_19) $(am__objects_20) $(am__objects_21) \
|
188
|
-
$(am__objects_22) $(am__objects_23) $(am__objects_24) \
|
189
|
-
$(am__objects_25) $(am__objects_26)
|
190
|
-
nodist_libffi_convenience_la_OBJECTS = $(am__objects_28)
|
172
|
+
am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1)
|
173
|
+
am__libffi_convenience_la_SOURCES_DIST = src/prep_cif.c src/types.c \
|
174
|
+
src/raw_api.c src/java_raw_api.c src/closures.c src/tramp.c \
|
175
|
+
src/debug.c
|
176
|
+
am__objects_2 = src/prep_cif.lo src/types.lo src/raw_api.lo \
|
177
|
+
src/java_raw_api.lo src/closures.lo src/tramp.lo \
|
178
|
+
$(am__objects_1)
|
179
|
+
am_libffi_convenience_la_OBJECTS = $(am__objects_2)
|
180
|
+
nodist_libffi_convenience_la_OBJECTS =
|
191
181
|
libffi_convenience_la_OBJECTS = $(am_libffi_convenience_la_OBJECTS) \
|
192
182
|
$(nodist_libffi_convenience_la_OBJECTS)
|
183
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
184
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
185
|
+
am__v_P_0 = false
|
186
|
+
am__v_P_1 = :
|
187
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
188
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
189
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
190
|
+
am__v_GEN_1 =
|
191
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
192
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
193
|
+
am__v_at_0 = @
|
194
|
+
am__v_at_1 =
|
193
195
|
DEFAULT_INCLUDES = -I.@am__isrc@
|
194
196
|
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
195
|
-
|
197
|
+
am__maybe_remake_depfiles = depfiles
|
198
|
+
am__depfiles_remade = src/$(DEPDIR)/closures.Plo \
|
199
|
+
src/$(DEPDIR)/debug.Plo src/$(DEPDIR)/java_raw_api.Plo \
|
200
|
+
src/$(DEPDIR)/prep_cif.Plo src/$(DEPDIR)/raw_api.Plo \
|
201
|
+
src/$(DEPDIR)/tramp.Plo src/$(DEPDIR)/types.Plo \
|
202
|
+
src/aarch64/$(DEPDIR)/ffi.Plo src/aarch64/$(DEPDIR)/sysv.Plo \
|
203
|
+
src/aarch64/$(DEPDIR)/win64_armasm.Plo \
|
204
|
+
src/alpha/$(DEPDIR)/ffi.Plo src/alpha/$(DEPDIR)/osf.Plo \
|
205
|
+
src/arc/$(DEPDIR)/arcompact.Plo src/arc/$(DEPDIR)/ffi.Plo \
|
206
|
+
src/arm/$(DEPDIR)/ffi.Plo src/arm/$(DEPDIR)/sysv.Plo \
|
207
|
+
src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo \
|
208
|
+
src/avr32/$(DEPDIR)/ffi.Plo src/avr32/$(DEPDIR)/sysv.Plo \
|
209
|
+
src/bfin/$(DEPDIR)/ffi.Plo src/bfin/$(DEPDIR)/sysv.Plo \
|
210
|
+
src/cris/$(DEPDIR)/ffi.Plo src/cris/$(DEPDIR)/sysv.Plo \
|
211
|
+
src/csky/$(DEPDIR)/ffi.Plo src/csky/$(DEPDIR)/sysv.Plo \
|
212
|
+
src/frv/$(DEPDIR)/eabi.Plo src/frv/$(DEPDIR)/ffi.Plo \
|
213
|
+
src/ia64/$(DEPDIR)/ffi.Plo src/ia64/$(DEPDIR)/unix.Plo \
|
214
|
+
src/kvx/$(DEPDIR)/ffi.Plo src/kvx/$(DEPDIR)/sysv.Plo \
|
215
|
+
src/loongarch64/$(DEPDIR)/ffi.Plo \
|
216
|
+
src/loongarch64/$(DEPDIR)/sysv.Plo src/m32r/$(DEPDIR)/ffi.Plo \
|
217
|
+
src/m32r/$(DEPDIR)/sysv.Plo src/m68k/$(DEPDIR)/ffi.Plo \
|
218
|
+
src/m68k/$(DEPDIR)/sysv.Plo src/m88k/$(DEPDIR)/ffi.Plo \
|
219
|
+
src/m88k/$(DEPDIR)/obsd.Plo src/metag/$(DEPDIR)/ffi.Plo \
|
220
|
+
src/metag/$(DEPDIR)/sysv.Plo src/microblaze/$(DEPDIR)/ffi.Plo \
|
221
|
+
src/microblaze/$(DEPDIR)/sysv.Plo src/mips/$(DEPDIR)/ffi.Plo \
|
222
|
+
src/mips/$(DEPDIR)/n32.Plo src/mips/$(DEPDIR)/o32.Plo \
|
223
|
+
src/moxie/$(DEPDIR)/eabi.Plo src/moxie/$(DEPDIR)/ffi.Plo \
|
224
|
+
src/nios2/$(DEPDIR)/ffi.Plo src/nios2/$(DEPDIR)/sysv.Plo \
|
225
|
+
src/or1k/$(DEPDIR)/ffi.Plo src/or1k/$(DEPDIR)/sysv.Plo \
|
226
|
+
src/pa/$(DEPDIR)/ffi.Plo src/pa/$(DEPDIR)/hpux32.Plo \
|
227
|
+
src/pa/$(DEPDIR)/hpux64.Plo src/pa/$(DEPDIR)/linux.Plo \
|
228
|
+
src/powerpc/$(DEPDIR)/aix.Plo \
|
229
|
+
src/powerpc/$(DEPDIR)/aix_closure.Plo \
|
230
|
+
src/powerpc/$(DEPDIR)/darwin.Plo \
|
231
|
+
src/powerpc/$(DEPDIR)/darwin_closure.Plo \
|
232
|
+
src/powerpc/$(DEPDIR)/ffi.Plo \
|
233
|
+
src/powerpc/$(DEPDIR)/ffi_darwin.Plo \
|
234
|
+
src/powerpc/$(DEPDIR)/ffi_linux64.Plo \
|
235
|
+
src/powerpc/$(DEPDIR)/ffi_sysv.Plo \
|
236
|
+
src/powerpc/$(DEPDIR)/linux64.Plo \
|
237
|
+
src/powerpc/$(DEPDIR)/linux64_closure.Plo \
|
238
|
+
src/powerpc/$(DEPDIR)/ppc_closure.Plo \
|
239
|
+
src/powerpc/$(DEPDIR)/sysv.Plo src/riscv/$(DEPDIR)/ffi.Plo \
|
240
|
+
src/riscv/$(DEPDIR)/sysv.Plo src/s390/$(DEPDIR)/ffi.Plo \
|
241
|
+
src/s390/$(DEPDIR)/sysv.Plo src/sh/$(DEPDIR)/ffi.Plo \
|
242
|
+
src/sh/$(DEPDIR)/sysv.Plo src/sh64/$(DEPDIR)/ffi.Plo \
|
243
|
+
src/sh64/$(DEPDIR)/sysv.Plo src/sparc/$(DEPDIR)/ffi.Plo \
|
244
|
+
src/sparc/$(DEPDIR)/ffi64.Plo src/sparc/$(DEPDIR)/v8.Plo \
|
245
|
+
src/sparc/$(DEPDIR)/v9.Plo src/tile/$(DEPDIR)/ffi.Plo \
|
246
|
+
src/tile/$(DEPDIR)/tile.Plo src/vax/$(DEPDIR)/elfbsd.Plo \
|
247
|
+
src/vax/$(DEPDIR)/ffi.Plo src/wasm32/$(DEPDIR)/ffi.Plo \
|
248
|
+
src/x86/$(DEPDIR)/ffi.Plo src/x86/$(DEPDIR)/ffi64.Plo \
|
249
|
+
src/x86/$(DEPDIR)/ffiw64.Plo src/x86/$(DEPDIR)/sysv.Plo \
|
250
|
+
src/x86/$(DEPDIR)/sysv_intel.Plo src/x86/$(DEPDIR)/unix64.Plo \
|
251
|
+
src/x86/$(DEPDIR)/win64.Plo src/x86/$(DEPDIR)/win64_intel.Plo \
|
252
|
+
src/xtensa/$(DEPDIR)/ffi.Plo src/xtensa/$(DEPDIR)/sysv.Plo
|
196
253
|
am__mv = mv -f
|
197
254
|
CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
198
255
|
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
199
|
-
LTCPPASCOMPILE = $(LIBTOOL) $(
|
200
|
-
--mode=compile $(CCAS) $(DEFS)
|
201
|
-
$(
|
256
|
+
LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
257
|
+
$(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \
|
258
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
259
|
+
$(AM_CCASFLAGS) $(CCASFLAGS)
|
260
|
+
AM_V_CPPAS = $(am__v_CPPAS_@AM_V@)
|
261
|
+
am__v_CPPAS_ = $(am__v_CPPAS_@AM_DEFAULT_V@)
|
262
|
+
am__v_CPPAS_0 = @echo " CPPAS " $@;
|
263
|
+
am__v_CPPAS_1 =
|
202
264
|
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
203
265
|
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
204
|
-
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS)
|
205
|
-
--mode=compile $(CC) $(DEFS)
|
206
|
-
$(
|
266
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
267
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
268
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
269
|
+
$(AM_CFLAGS) $(CFLAGS)
|
270
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
271
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
272
|
+
am__v_CC_0 = @echo " CC " $@;
|
273
|
+
am__v_CC_1 =
|
207
274
|
CCLD = $(CC)
|
208
|
-
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS)
|
209
|
-
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS)
|
210
|
-
$(LDFLAGS) -o $@
|
211
|
-
|
275
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
276
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
277
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
278
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
279
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
280
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
281
|
+
am__v_CCLD_1 =
|
282
|
+
SOURCES = $(libffi_la_SOURCES) $(EXTRA_libffi_la_SOURCES) \
|
212
283
|
$(libffi_convenience_la_SOURCES) \
|
284
|
+
$(EXTRA_libffi_convenience_la_SOURCES) \
|
213
285
|
$(nodist_libffi_convenience_la_SOURCES)
|
214
|
-
DIST_SOURCES = $(
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
install-pdf-recursive install-ps-recursive install-recursive \
|
232
|
-
installcheck-recursive installdirs-recursive pdf-recursive \
|
233
|
-
ps-recursive uninstall-recursive
|
286
|
+
DIST_SOURCES = $(am__libffi_la_SOURCES_DIST) \
|
287
|
+
$(EXTRA_libffi_la_SOURCES) \
|
288
|
+
$(am__libffi_convenience_la_SOURCES_DIST) \
|
289
|
+
$(EXTRA_libffi_convenience_la_SOURCES)
|
290
|
+
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
|
291
|
+
ctags-recursive dvi-recursive html-recursive info-recursive \
|
292
|
+
install-data-recursive install-dvi-recursive \
|
293
|
+
install-exec-recursive install-html-recursive \
|
294
|
+
install-info-recursive install-pdf-recursive \
|
295
|
+
install-ps-recursive install-recursive installcheck-recursive \
|
296
|
+
installdirs-recursive pdf-recursive ps-recursive \
|
297
|
+
tags-recursive uninstall-recursive
|
298
|
+
am__can_run_installinfo = \
|
299
|
+
case $$AM_UPDATE_INFO_DIR in \
|
300
|
+
n|no|NO) false;; \
|
301
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
302
|
+
esac
|
234
303
|
DATA = $(pkgconfig_DATA)
|
304
|
+
HEADERS = $(noinst_HEADERS)
|
235
305
|
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
|
236
306
|
distclean-recursive maintainer-clean-recursive
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
307
|
+
am__recursive_targets = \
|
308
|
+
$(RECURSIVE_TARGETS) \
|
309
|
+
$(RECURSIVE_CLEAN_TARGETS) \
|
310
|
+
$(am__extra_recursive_targets)
|
311
|
+
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
312
|
+
cscope distdir distdir-am dist dist-all distcheck
|
313
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
|
314
|
+
fficonfig.h.in
|
315
|
+
# Read a list of newline-separated strings from the standard input,
|
316
|
+
# and print each of them once, without duplicates. Input order is
|
317
|
+
# *not* preserved.
|
318
|
+
am__uniquify_input = $(AWK) '\
|
319
|
+
BEGIN { nonempty = 0; } \
|
320
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
321
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
322
|
+
'
|
323
|
+
# Make sure the list of sources is unique. This is necessary because,
|
324
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
325
|
+
# for different programs/libraries.
|
326
|
+
am__define_uniq_tagged_files = \
|
327
|
+
list='$(am__tagged_files)'; \
|
328
|
+
unique=`for i in $$list; do \
|
329
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
330
|
+
done | $(am__uniquify_input)`
|
331
|
+
DIST_SUBDIRS = include testsuite man doc
|
332
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/fficonfig.h.in \
|
333
|
+
$(srcdir)/libffi.pc.in README.md compile config.guess \
|
334
|
+
config.sub depcomp install-sh ltmain.sh missing
|
243
335
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
244
336
|
distdir = $(PACKAGE)-$(VERSION)
|
245
337
|
top_distdir = $(distdir)
|
246
338
|
am__remove_distdir = \
|
247
|
-
|
248
|
-
|
249
|
-
|
339
|
+
if test -d "$(distdir)"; then \
|
340
|
+
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
341
|
+
&& rm -rf "$(distdir)" \
|
342
|
+
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
343
|
+
else :; fi
|
344
|
+
am__post_remove_distdir = $(am__remove_distdir)
|
250
345
|
am__relativize = \
|
251
346
|
dir0=`pwd`; \
|
252
347
|
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
|
@@ -274,11 +369,16 @@ am__relativize = \
|
|
274
369
|
reldir="$$dir2"
|
275
370
|
DIST_ARCHIVES = $(distdir).tar.gz
|
276
371
|
GZIP_ENV = --best
|
372
|
+
DIST_TARGETS = dist-gzip
|
373
|
+
# Exists only to be overridden by the user if desired.
|
374
|
+
AM_DISTCHECK_DVI_TARGET = dvi
|
277
375
|
distuninstallcheck_listfiles = find . -type f -print
|
376
|
+
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
377
|
+
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
278
378
|
distcleancheck_listfiles = find . -type f -print
|
279
379
|
ACLOCAL = @ACLOCAL@
|
280
|
-
ALLOCA = @ALLOCA@
|
281
380
|
AMTAR = @AMTAR@
|
381
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
282
382
|
AM_LTLDFLAGS = @AM_LTLDFLAGS@
|
283
383
|
AM_RUNTESTFLAGS = @AM_RUNTESTFLAGS@
|
284
384
|
AR = @AR@
|
@@ -292,8 +392,13 @@ CCASDEPMODE = @CCASDEPMODE@
|
|
292
392
|
CCASFLAGS = @CCASFLAGS@
|
293
393
|
CCDEPMODE = @CCDEPMODE@
|
294
394
|
CFLAGS = @CFLAGS@
|
295
|
-
CPP = @CPP@
|
296
395
|
CPPFLAGS = @CPPFLAGS@
|
396
|
+
CSCOPE = @CSCOPE@
|
397
|
+
CTAGS = @CTAGS@
|
398
|
+
CXX = @CXX@
|
399
|
+
CXXCPP = @CXXCPP@
|
400
|
+
CXXDEPMODE = @CXXDEPMODE@
|
401
|
+
CXXFLAGS = @CXXFLAGS@
|
297
402
|
CYGPATH_W = @CYGPATH_W@
|
298
403
|
DEFS = @DEFS@
|
299
404
|
DEPDIR = @DEPDIR@
|
@@ -304,11 +409,14 @@ ECHO_C = @ECHO_C@
|
|
304
409
|
ECHO_N = @ECHO_N@
|
305
410
|
ECHO_T = @ECHO_T@
|
306
411
|
EGREP = @EGREP@
|
412
|
+
ETAGS = @ETAGS@
|
307
413
|
EXEEXT = @EXEEXT@
|
308
414
|
FFI_EXEC_TRAMPOLINE_TABLE = @FFI_EXEC_TRAMPOLINE_TABLE@
|
309
415
|
FGREP = @FGREP@
|
416
|
+
FILECMD = @FILECMD@
|
310
417
|
GREP = @GREP@
|
311
418
|
HAVE_LONG_DOUBLE = @HAVE_LONG_DOUBLE@
|
419
|
+
HAVE_LONG_DOUBLE_VARIANT = @HAVE_LONG_DOUBLE_VARIANT@
|
312
420
|
INSTALL = @INSTALL@
|
313
421
|
INSTALL_DATA = @INSTALL_DATA@
|
314
422
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
@@ -322,6 +430,7 @@ LIBTOOL = @LIBTOOL@
|
|
322
430
|
LIPO = @LIPO@
|
323
431
|
LN_S = @LN_S@
|
324
432
|
LTLIBOBJS = @LTLIBOBJS@
|
433
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
325
434
|
MAINT = @MAINT@
|
326
435
|
MAKEINFO = @MAKEINFO@
|
327
436
|
MANIFEST_TOOL = @MANIFEST_TOOL@
|
@@ -330,6 +439,7 @@ NM = @NM@
|
|
330
439
|
NMEDIT = @NMEDIT@
|
331
440
|
OBJDUMP = @OBJDUMP@
|
332
441
|
OBJEXT = @OBJEXT@
|
442
|
+
OPT_LDFLAGS = @OPT_LDFLAGS@
|
333
443
|
OTOOL = @OTOOL@
|
334
444
|
OTOOL64 = @OTOOL64@
|
335
445
|
PACKAGE = @PACKAGE@
|
@@ -342,12 +452,15 @@ PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
342
452
|
PATH_SEPARATOR = @PATH_SEPARATOR@
|
343
453
|
PRTDIAG = @PRTDIAG@
|
344
454
|
RANLIB = @RANLIB@
|
455
|
+
READELF = @READELF@
|
456
|
+
SECTION_LDFLAGS = @SECTION_LDFLAGS@
|
345
457
|
SED = @SED@
|
346
458
|
SET_MAKE = @SET_MAKE@
|
347
459
|
SHELL = @SHELL@
|
348
460
|
STRIP = @STRIP@
|
349
461
|
TARGET = @TARGET@
|
350
462
|
TARGETDIR = @TARGETDIR@
|
463
|
+
TARGET_OBJ = @TARGET_OBJ@
|
351
464
|
VERSION = @VERSION@
|
352
465
|
abs_builddir = @abs_builddir@
|
353
466
|
abs_srcdir = @abs_srcdir@
|
@@ -355,6 +468,7 @@ abs_top_builddir = @abs_top_builddir@
|
|
355
468
|
abs_top_srcdir = @abs_top_srcdir@
|
356
469
|
ac_ct_AR = @ac_ct_AR@
|
357
470
|
ac_ct_CC = @ac_ct_CC@
|
471
|
+
ac_ct_CXX = @ac_ct_CXX@
|
358
472
|
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
359
473
|
am__include = @am__include@
|
360
474
|
am__leading_dot = @am__leading_dot@
|
@@ -394,6 +508,7 @@ pdfdir = @pdfdir@
|
|
394
508
|
prefix = @prefix@
|
395
509
|
program_transform_name = @program_transform_name@
|
396
510
|
psdir = @psdir@
|
511
|
+
runstatedir = @runstatedir@
|
397
512
|
sbindir = @sbindir@
|
398
513
|
sharedstatedir = @sharedstatedir@
|
399
514
|
srcdir = @srcdir@
|
@@ -404,113 +519,116 @@ target_alias = @target_alias@
|
|
404
519
|
target_cpu = @target_cpu@
|
405
520
|
target_os = @target_os@
|
406
521
|
target_vendor = @target_vendor@
|
522
|
+
tmake_file = @tmake_file@
|
407
523
|
toolexecdir = @toolexecdir@
|
408
524
|
toolexeclibdir = @toolexeclibdir@
|
409
525
|
top_build_prefix = @top_build_prefix@
|
410
526
|
top_builddir = @top_builddir@
|
411
527
|
top_srcdir = @top_srcdir@
|
412
528
|
AUTOMAKE_OPTIONS = foreign subdir-objects
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
src/sh64/sysv.S src/sh64/ffitarget.h src/sparc/v8.S \
|
432
|
-
src/sparc/v9.S src/sparc/ffitarget.h src/sparc/ffi.c \
|
433
|
-
src/x86/darwin64.S src/x86/ffi.c src/x86/sysv.S \
|
434
|
-
src/x86/win32.S src/x86/win64.S src/x86/darwin.S \
|
435
|
-
src/x86/freebsd.S src/x86/ffi64.c src/x86/unix64.S \
|
436
|
-
src/x86/ffitarget.h src/pa/ffitarget.h src/pa/ffi.c \
|
437
|
-
src/pa/linux.S src/pa/hpux32.S src/frv/ffi.c src/frv/eabi.S \
|
438
|
-
src/frv/ffitarget.h src/dlmalloc.c src/moxie/ffi.c \
|
439
|
-
src/moxie/eabi.S libtool-version ChangeLog.libffi \
|
440
|
-
m4/libtool.m4 m4/lt~obsolete.m4 m4/ltoptions.m4 m4/ltsugar.m4 \
|
441
|
-
m4/ltversion.m4 build-ios.sh src/arm/gentramp.sh src/debug.c \
|
442
|
-
msvcc.sh
|
443
|
-
|
444
|
-
info_TEXINFOS = doc/libffi.texi
|
445
|
-
|
446
|
-
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
447
|
-
# values defined in terms of make variables, as is the case for CC and
|
448
|
-
# friends when we are called from the top level Makefile.
|
449
|
-
AM_MAKEFLAGS = \
|
450
|
-
"AR_FLAGS=$(AR_FLAGS)" \
|
451
|
-
"CC_FOR_BUILD=$(CC_FOR_BUILD)" \
|
452
|
-
"CFLAGS=$(CFLAGS)" \
|
453
|
-
"CXXFLAGS=$(CXXFLAGS)" \
|
454
|
-
"CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
|
455
|
-
"CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
|
456
|
-
"INSTALL=$(INSTALL)" \
|
457
|
-
"INSTALL_DATA=$(INSTALL_DATA)" \
|
458
|
-
"INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
|
459
|
-
"INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
|
460
|
-
"JC1FLAGS=$(JC1FLAGS)" \
|
461
|
-
"LDFLAGS=$(LDFLAGS)" \
|
462
|
-
"LIBCFLAGS=$(LIBCFLAGS)" \
|
463
|
-
"LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
|
464
|
-
"MAKE=$(MAKE)" \
|
465
|
-
"MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
|
466
|
-
"PICFLAG=$(PICFLAG)" \
|
467
|
-
"PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
|
468
|
-
"RUNTESTFLAGS=$(RUNTESTFLAGS)" \
|
469
|
-
"SHELL=$(SHELL)" \
|
470
|
-
"exec_prefix=$(exec_prefix)" \
|
471
|
-
"infodir=$(infodir)" \
|
472
|
-
"libdir=$(libdir)" \
|
473
|
-
"mandir=$(mandir)" \
|
474
|
-
"prefix=$(prefix)" \
|
475
|
-
"AR=$(AR)" \
|
476
|
-
"AS=$(AS)" \
|
477
|
-
"CC=$(CC)" \
|
478
|
-
"CXX=$(CXX)" \
|
479
|
-
"LD=$(LD)" \
|
480
|
-
"NM=$(NM)" \
|
481
|
-
"RANLIB=$(RANLIB)" \
|
482
|
-
"DESTDIR=$(DESTDIR)"
|
483
|
-
|
529
|
+
ACLOCAL_AMFLAGS = -I m4
|
530
|
+
SUBDIRS = include testsuite man $(am__append_1)
|
531
|
+
EXTRA_DIST = LICENSE ChangeLog.old \
|
532
|
+
m4/libtool.m4 m4/lt~obsolete.m4 \
|
533
|
+
m4/ltoptions.m4 m4/ltsugar.m4 m4/ltversion.m4 \
|
534
|
+
m4/ltversion.m4 src/debug.c msvcc.sh \
|
535
|
+
generate-darwin-source-and-headers.py \
|
536
|
+
libffi.xcodeproj/project.pbxproj \
|
537
|
+
src/powerpc/t-aix \
|
538
|
+
libtool-ldflags libtool-version configure.host README.md \
|
539
|
+
libffi.map.in LICENSE-BUILDTOOLS msvc_build make_sunver.pl
|
540
|
+
|
541
|
+
|
542
|
+
# local.exp is generated by configure
|
543
|
+
DISTCLEANFILES = local.exp
|
544
|
+
|
545
|
+
# Subdir rules rely on $(FLAGS_TO_PASS)
|
546
|
+
FLAGS_TO_PASS = $(AM_MAKEFLAGS)
|
484
547
|
MAKEOVERRIDES =
|
485
|
-
ACLOCAL_AMFLAGS = $(ACLOCAL_AMFLAGS) -I m4
|
486
|
-
lib_LTLIBRARIES = libffi.la
|
487
|
-
noinst_LTLIBRARIES = libffi_convenience.la
|
488
|
-
libffi_la_SOURCES = src/debug.c src/prep_cif.c src/types.c \
|
489
|
-
src/raw_api.c src/java_raw_api.c src/closures.c
|
490
|
-
|
491
548
|
pkgconfigdir = $(libdir)/pkgconfig
|
492
549
|
pkgconfig_DATA = libffi.pc
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
550
|
+
toolexeclib_LTLIBRARIES = libffi.la
|
551
|
+
noinst_LTLIBRARIES = libffi_convenience.la
|
552
|
+
libffi_la_SOURCES = src/prep_cif.c src/types.c src/raw_api.c \
|
553
|
+
src/java_raw_api.c src/closures.c src/tramp.c $(am__append_2)
|
554
|
+
noinst_HEADERS = src/aarch64/ffitarget.h src/aarch64/internal.h \
|
555
|
+
src/alpha/ffitarget.h src/alpha/internal.h \
|
556
|
+
src/arc/ffitarget.h src/arm/ffitarget.h src/arm/internal.h \
|
557
|
+
src/avr32/ffitarget.h src/bfin/ffitarget.h \
|
558
|
+
src/cris/ffitarget.h src/csky/ffitarget.h src/frv/ffitarget.h \
|
559
|
+
src/ia64/ffitarget.h src/ia64/ia64_flags.h \
|
560
|
+
src/m32r/ffitarget.h src/m68k/ffitarget.h \
|
561
|
+
src/m88k/ffitarget.h src/metag/ffitarget.h \
|
562
|
+
src/microblaze/ffitarget.h src/mips/ffitarget.h \
|
563
|
+
src/moxie/ffitarget.h src/nios2/ffitarget.h \
|
564
|
+
src/or1k/ffitarget.h src/pa/ffitarget.h \
|
565
|
+
src/powerpc/ffitarget.h src/powerpc/asm.h \
|
566
|
+
src/powerpc/ffi_powerpc.h src/riscv/ffitarget.h \
|
567
|
+
src/s390/ffitarget.h src/s390/internal.h src/sh/ffitarget.h \
|
568
|
+
src/sh64/ffitarget.h src/sparc/ffitarget.h \
|
569
|
+
src/sparc/internal.h src/tile/ffitarget.h src/vax/ffitarget.h \
|
570
|
+
src/wasm32/ffitarget.h \
|
571
|
+
src/x86/ffitarget.h src/x86/internal.h src/x86/internal64.h \
|
572
|
+
src/x86/asmnames.h src/xtensa/ffitarget.h src/dlmalloc.c \
|
573
|
+
src/kvx/ffitarget.h src/kvx/asm.h \
|
574
|
+
src/loongarch64/ffitarget.h
|
575
|
+
|
576
|
+
EXTRA_libffi_la_SOURCES = src/aarch64/ffi.c src/aarch64/sysv.S \
|
577
|
+
src/aarch64/win64_armasm.S src/alpha/ffi.c src/alpha/osf.S \
|
578
|
+
src/arc/ffi.c src/arc/arcompact.S src/arm/ffi.c \
|
579
|
+
src/arm/sysv.S src/arm/ffi.c src/arm/sysv_msvc_arm32.S \
|
580
|
+
src/avr32/ffi.c src/avr32/sysv.S src/bfin/ffi.c \
|
581
|
+
src/bfin/sysv.S src/cris/ffi.c src/cris/sysv.S src/frv/ffi.c \
|
582
|
+
src/csky/ffi.c src/csky/sysv.S src/frv/eabi.S src/ia64/ffi.c \
|
583
|
+
src/ia64/unix.S src/m32r/ffi.c src/m32r/sysv.S src/m68k/ffi.c \
|
584
|
+
src/m68k/sysv.S src/m88k/ffi.c src/m88k/obsd.S \
|
585
|
+
src/metag/ffi.c src/metag/sysv.S src/microblaze/ffi.c \
|
586
|
+
src/microblaze/sysv.S src/mips/ffi.c src/mips/o32.S \
|
587
|
+
src/mips/n32.S src/moxie/ffi.c src/moxie/eabi.S \
|
588
|
+
src/nios2/ffi.c src/nios2/sysv.S src/or1k/ffi.c \
|
589
|
+
src/or1k/sysv.S src/pa/ffi.c src/pa/linux.S src/pa/hpux32.S \
|
590
|
+
src/pa/hpux64.S src/powerpc/ffi.c src/powerpc/ffi_sysv.c \
|
591
|
+
src/powerpc/ffi_linux64.c src/powerpc/sysv.S \
|
592
|
+
src/powerpc/linux64.S src/powerpc/linux64_closure.S \
|
593
|
+
src/powerpc/ppc_closure.S src/powerpc/aix.S \
|
594
|
+
src/powerpc/darwin.S src/powerpc/aix_closure.S \
|
595
|
+
src/powerpc/darwin_closure.S src/powerpc/ffi_darwin.c \
|
596
|
+
src/riscv/ffi.c src/riscv/sysv.S src/s390/ffi.c \
|
597
|
+
src/s390/sysv.S src/sh/ffi.c src/sh/sysv.S src/sh64/ffi.c \
|
598
|
+
src/sh64/sysv.S src/sparc/ffi.c src/sparc/ffi64.c \
|
599
|
+
src/sparc/v8.S src/sparc/v9.S src/tile/ffi.c src/tile/tile.S \
|
600
|
+
src/vax/ffi.c src/vax/elfbsd.S src/x86/ffi.c src/x86/sysv.S \
|
601
|
+
src/wasm32/ffi.c \
|
602
|
+
src/x86/ffiw64.c src/x86/win64.S src/x86/ffi64.c \
|
603
|
+
src/x86/unix64.S src/x86/sysv_intel.S src/x86/win64_intel.S \
|
604
|
+
src/xtensa/ffi.c src/xtensa/sysv.S src/kvx/ffi.c \
|
605
|
+
src/kvx/sysv.S src/loongarch64/ffi.c src/loongarch64/sysv.S
|
606
|
+
|
607
|
+
libffi_la_LIBADD = $(TARGET_OBJ)
|
502
608
|
libffi_convenience_la_SOURCES = $(libffi_la_SOURCES)
|
609
|
+
EXTRA_libffi_convenience_la_SOURCES = $(EXTRA_libffi_la_SOURCES)
|
610
|
+
libffi_convenience_la_LIBADD = $(libffi_la_LIBADD)
|
611
|
+
libffi_convenience_la_DEPENDENCIES = $(libffi_la_DEPENDENCIES)
|
503
612
|
nodist_libffi_convenience_la_SOURCES = $(nodist_libffi_la_SOURCES)
|
504
|
-
|
505
|
-
|
613
|
+
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/libtool-ldflags $(LDFLAGS))
|
614
|
+
AM_CFLAGS = $(am__append_3)
|
615
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_FALSE@libffi_version_script =
|
616
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_script = -Wl,--version-script,libffi.map
|
617
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_script = -Wl,-M,libffi.map-sun
|
618
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_FALSE@libffi_version_dep =
|
619
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_GNU_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_dep = libffi.map
|
620
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi_version_dep = libffi.map-sun
|
621
|
+
libffi_version_info = -version-info `grep -v '^\#' $(srcdir)/libtool-version`
|
622
|
+
libffi_la_LDFLAGS = -no-undefined $(libffi_version_info) $(libffi_version_script) $(LTLDFLAGS) $(AM_LTLDFLAGS)
|
623
|
+
libffi_la_DEPENDENCIES = $(libffi_la_LIBADD) $(libffi_version_dep)
|
506
624
|
AM_CPPFLAGS = -I. -I$(top_srcdir)/include -Iinclude -I$(top_srcdir)/src
|
507
625
|
AM_CCASFLAGS = $(AM_CPPFLAGS)
|
508
626
|
all: fficonfig.h
|
509
627
|
$(MAKE) $(AM_MAKEFLAGS) all-recursive
|
510
628
|
|
511
629
|
.SUFFIXES:
|
512
|
-
.SUFFIXES: .S .c .
|
513
|
-
am--refresh:
|
630
|
+
.SUFFIXES: .S .c .lo .o .obj
|
631
|
+
am--refresh: Makefile
|
514
632
|
@:
|
515
633
|
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
516
634
|
@for dep in $?; do \
|
@@ -525,15 +643,14 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi
|
|
525
643
|
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
526
644
|
$(am__cd) $(top_srcdir) && \
|
527
645
|
$(AUTOMAKE) --foreign Makefile
|
528
|
-
.PRECIOUS: Makefile
|
529
646
|
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
530
647
|
@case '$?' in \
|
531
648
|
*config.status*) \
|
532
649
|
echo ' $(SHELL) ./config.status'; \
|
533
650
|
$(SHELL) ./config.status;; \
|
534
651
|
*) \
|
535
|
-
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(
|
536
|
-
cd $(top_builddir) && $(SHELL) ./config.status $@ $(
|
652
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
653
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
537
654
|
esac;
|
538
655
|
|
539
656
|
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
@@ -546,10 +663,8 @@ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
546
663
|
$(am__aclocal_m4_deps):
|
547
664
|
|
548
665
|
fficonfig.h: stamp-h1
|
549
|
-
@
|
550
|
-
|
551
|
-
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
|
552
|
-
else :; fi
|
666
|
+
@test -f $@ || rm -f stamp-h1
|
667
|
+
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
553
668
|
|
554
669
|
stamp-h1: $(srcdir)/fficonfig.h.in $(top_builddir)/config.status
|
555
670
|
@rm -f stamp-h1
|
@@ -563,104 +678,77 @@ distclean-hdr:
|
|
563
678
|
-rm -f fficonfig.h stamp-h1
|
564
679
|
libffi.pc: $(top_builddir)/config.status $(srcdir)/libffi.pc.in
|
565
680
|
cd $(top_builddir) && $(SHELL) ./config.status $@
|
566
|
-
|
681
|
+
|
682
|
+
clean-noinstLTLIBRARIES:
|
683
|
+
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
684
|
+
@list='$(noinst_LTLIBRARIES)'; \
|
685
|
+
locs=`for p in $$list; do echo $$p; done | \
|
686
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
687
|
+
sort -u`; \
|
688
|
+
test -z "$$locs" || { \
|
689
|
+
echo rm -f $${locs}; \
|
690
|
+
rm -f $${locs}; \
|
691
|
+
}
|
692
|
+
|
693
|
+
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
|
567
694
|
@$(NORMAL_INSTALL)
|
568
|
-
test -
|
569
|
-
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
695
|
+
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
|
570
696
|
list2=; for p in $$list; do \
|
571
697
|
if test -f $$p; then \
|
572
698
|
list2="$$list2 $$p"; \
|
573
699
|
else :; fi; \
|
574
700
|
done; \
|
575
701
|
test -z "$$list2" || { \
|
576
|
-
echo " $(
|
577
|
-
$(
|
702
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
|
703
|
+
$(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
|
704
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
|
705
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
|
578
706
|
}
|
579
707
|
|
580
|
-
uninstall-
|
708
|
+
uninstall-toolexeclibLTLIBRARIES:
|
581
709
|
@$(NORMAL_UNINSTALL)
|
582
|
-
@list='$(
|
710
|
+
@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
|
583
711
|
for p in $$list; do \
|
584
712
|
$(am__strip_dir) \
|
585
|
-
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(
|
586
|
-
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(
|
713
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
|
714
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
|
587
715
|
done
|
588
716
|
|
589
|
-
clean-
|
590
|
-
-test -z "$(
|
591
|
-
@list='$(
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
|
600
|
-
@list='$(noinst_LTLIBRARIES)'; for p in $$list; do \
|
601
|
-
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
|
602
|
-
test "$$dir" != "$$p" || dir=.; \
|
603
|
-
echo "rm -f \"$${dir}/so_locations\""; \
|
604
|
-
rm -f "$${dir}/so_locations"; \
|
605
|
-
done
|
717
|
+
clean-toolexeclibLTLIBRARIES:
|
718
|
+
-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
|
719
|
+
@list='$(toolexeclib_LTLIBRARIES)'; \
|
720
|
+
locs=`for p in $$list; do echo $$p; done | \
|
721
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
722
|
+
sort -u`; \
|
723
|
+
test -z "$$locs" || { \
|
724
|
+
echo rm -f $${locs}; \
|
725
|
+
rm -f $${locs}; \
|
726
|
+
}
|
606
727
|
src/$(am__dirstamp):
|
607
728
|
@$(MKDIR_P) src
|
608
729
|
@: > src/$(am__dirstamp)
|
609
730
|
src/$(DEPDIR)/$(am__dirstamp):
|
610
731
|
@$(MKDIR_P) src/$(DEPDIR)
|
611
732
|
@: > src/$(DEPDIR)/$(am__dirstamp)
|
612
|
-
src/debug.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
613
733
|
src/prep_cif.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
614
734
|
src/types.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
615
735
|
src/raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
616
736
|
src/java_raw_api.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
617
737
|
src/closures.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
618
|
-
src/
|
619
|
-
|
620
|
-
|
621
|
-
src/
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
src/
|
626
|
-
src/
|
627
|
-
src/
|
628
|
-
src/
|
629
|
-
src/
|
630
|
-
src/
|
631
|
-
|
632
|
-
@: > src/x86/$(am__dirstamp)
|
633
|
-
src/x86/$(DEPDIR)/$(am__dirstamp):
|
634
|
-
@$(MKDIR_P) src/x86/$(DEPDIR)
|
635
|
-
@: > src/x86/$(DEPDIR)/$(am__dirstamp)
|
636
|
-
src/x86/ffi.lo: src/x86/$(am__dirstamp) \
|
637
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
638
|
-
src/x86/sysv.lo: src/x86/$(am__dirstamp) \
|
639
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
640
|
-
src/x86/freebsd.lo: src/x86/$(am__dirstamp) \
|
641
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
642
|
-
src/x86/win32.lo: src/x86/$(am__dirstamp) \
|
643
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
644
|
-
src/x86/win64.lo: src/x86/$(am__dirstamp) \
|
645
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
646
|
-
src/x86/darwin.lo: src/x86/$(am__dirstamp) \
|
647
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
648
|
-
src/x86/ffi64.lo: src/x86/$(am__dirstamp) \
|
649
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
650
|
-
src/x86/darwin64.lo: src/x86/$(am__dirstamp) \
|
651
|
-
src/x86/$(DEPDIR)/$(am__dirstamp)
|
652
|
-
src/sparc/$(am__dirstamp):
|
653
|
-
@$(MKDIR_P) src/sparc
|
654
|
-
@: > src/sparc/$(am__dirstamp)
|
655
|
-
src/sparc/$(DEPDIR)/$(am__dirstamp):
|
656
|
-
@$(MKDIR_P) src/sparc/$(DEPDIR)
|
657
|
-
@: > src/sparc/$(DEPDIR)/$(am__dirstamp)
|
658
|
-
src/sparc/ffi.lo: src/sparc/$(am__dirstamp) \
|
659
|
-
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
660
|
-
src/sparc/v8.lo: src/sparc/$(am__dirstamp) \
|
661
|
-
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
662
|
-
src/sparc/v9.lo: src/sparc/$(am__dirstamp) \
|
663
|
-
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
738
|
+
src/tramp.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
739
|
+
src/debug.lo: src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
|
740
|
+
src/aarch64/$(am__dirstamp):
|
741
|
+
@$(MKDIR_P) src/aarch64
|
742
|
+
@: > src/aarch64/$(am__dirstamp)
|
743
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp):
|
744
|
+
@$(MKDIR_P) src/aarch64/$(DEPDIR)
|
745
|
+
@: > src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
746
|
+
src/aarch64/ffi.lo: src/aarch64/$(am__dirstamp) \
|
747
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
748
|
+
src/aarch64/sysv.lo: src/aarch64/$(am__dirstamp) \
|
749
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
750
|
+
src/aarch64/win64_armasm.lo: src/aarch64/$(am__dirstamp) \
|
751
|
+
src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
664
752
|
src/alpha/$(am__dirstamp):
|
665
753
|
@$(MKDIR_P) src/alpha
|
666
754
|
@: > src/alpha/$(am__dirstamp)
|
@@ -671,6 +759,78 @@ src/alpha/ffi.lo: src/alpha/$(am__dirstamp) \
|
|
671
759
|
src/alpha/$(DEPDIR)/$(am__dirstamp)
|
672
760
|
src/alpha/osf.lo: src/alpha/$(am__dirstamp) \
|
673
761
|
src/alpha/$(DEPDIR)/$(am__dirstamp)
|
762
|
+
src/arc/$(am__dirstamp):
|
763
|
+
@$(MKDIR_P) src/arc
|
764
|
+
@: > src/arc/$(am__dirstamp)
|
765
|
+
src/arc/$(DEPDIR)/$(am__dirstamp):
|
766
|
+
@$(MKDIR_P) src/arc/$(DEPDIR)
|
767
|
+
@: > src/arc/$(DEPDIR)/$(am__dirstamp)
|
768
|
+
src/arc/ffi.lo: src/arc/$(am__dirstamp) \
|
769
|
+
src/arc/$(DEPDIR)/$(am__dirstamp)
|
770
|
+
src/arc/arcompact.lo: src/arc/$(am__dirstamp) \
|
771
|
+
src/arc/$(DEPDIR)/$(am__dirstamp)
|
772
|
+
src/arm/$(am__dirstamp):
|
773
|
+
@$(MKDIR_P) src/arm
|
774
|
+
@: > src/arm/$(am__dirstamp)
|
775
|
+
src/arm/$(DEPDIR)/$(am__dirstamp):
|
776
|
+
@$(MKDIR_P) src/arm/$(DEPDIR)
|
777
|
+
@: > src/arm/$(DEPDIR)/$(am__dirstamp)
|
778
|
+
src/arm/ffi.lo: src/arm/$(am__dirstamp) \
|
779
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
780
|
+
src/arm/sysv.lo: src/arm/$(am__dirstamp) \
|
781
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
782
|
+
src/arm/sysv_msvc_arm32.lo: src/arm/$(am__dirstamp) \
|
783
|
+
src/arm/$(DEPDIR)/$(am__dirstamp)
|
784
|
+
src/avr32/$(am__dirstamp):
|
785
|
+
@$(MKDIR_P) src/avr32
|
786
|
+
@: > src/avr32/$(am__dirstamp)
|
787
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp):
|
788
|
+
@$(MKDIR_P) src/avr32/$(DEPDIR)
|
789
|
+
@: > src/avr32/$(DEPDIR)/$(am__dirstamp)
|
790
|
+
src/avr32/ffi.lo: src/avr32/$(am__dirstamp) \
|
791
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
792
|
+
src/avr32/sysv.lo: src/avr32/$(am__dirstamp) \
|
793
|
+
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
794
|
+
src/bfin/$(am__dirstamp):
|
795
|
+
@$(MKDIR_P) src/bfin
|
796
|
+
@: > src/bfin/$(am__dirstamp)
|
797
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp):
|
798
|
+
@$(MKDIR_P) src/bfin/$(DEPDIR)
|
799
|
+
@: > src/bfin/$(DEPDIR)/$(am__dirstamp)
|
800
|
+
src/bfin/ffi.lo: src/bfin/$(am__dirstamp) \
|
801
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp)
|
802
|
+
src/bfin/sysv.lo: src/bfin/$(am__dirstamp) \
|
803
|
+
src/bfin/$(DEPDIR)/$(am__dirstamp)
|
804
|
+
src/cris/$(am__dirstamp):
|
805
|
+
@$(MKDIR_P) src/cris
|
806
|
+
@: > src/cris/$(am__dirstamp)
|
807
|
+
src/cris/$(DEPDIR)/$(am__dirstamp):
|
808
|
+
@$(MKDIR_P) src/cris/$(DEPDIR)
|
809
|
+
@: > src/cris/$(DEPDIR)/$(am__dirstamp)
|
810
|
+
src/cris/ffi.lo: src/cris/$(am__dirstamp) \
|
811
|
+
src/cris/$(DEPDIR)/$(am__dirstamp)
|
812
|
+
src/cris/sysv.lo: src/cris/$(am__dirstamp) \
|
813
|
+
src/cris/$(DEPDIR)/$(am__dirstamp)
|
814
|
+
src/frv/$(am__dirstamp):
|
815
|
+
@$(MKDIR_P) src/frv
|
816
|
+
@: > src/frv/$(am__dirstamp)
|
817
|
+
src/frv/$(DEPDIR)/$(am__dirstamp):
|
818
|
+
@$(MKDIR_P) src/frv/$(DEPDIR)
|
819
|
+
@: > src/frv/$(DEPDIR)/$(am__dirstamp)
|
820
|
+
src/frv/ffi.lo: src/frv/$(am__dirstamp) \
|
821
|
+
src/frv/$(DEPDIR)/$(am__dirstamp)
|
822
|
+
src/csky/$(am__dirstamp):
|
823
|
+
@$(MKDIR_P) src/csky
|
824
|
+
@: > src/csky/$(am__dirstamp)
|
825
|
+
src/csky/$(DEPDIR)/$(am__dirstamp):
|
826
|
+
@$(MKDIR_P) src/csky/$(DEPDIR)
|
827
|
+
@: > src/csky/$(DEPDIR)/$(am__dirstamp)
|
828
|
+
src/csky/ffi.lo: src/csky/$(am__dirstamp) \
|
829
|
+
src/csky/$(DEPDIR)/$(am__dirstamp)
|
830
|
+
src/csky/sysv.lo: src/csky/$(am__dirstamp) \
|
831
|
+
src/csky/$(DEPDIR)/$(am__dirstamp)
|
832
|
+
src/frv/eabi.lo: src/frv/$(am__dirstamp) \
|
833
|
+
src/frv/$(DEPDIR)/$(am__dirstamp)
|
674
834
|
src/ia64/$(am__dirstamp):
|
675
835
|
@$(MKDIR_P) src/ia64
|
676
836
|
@: > src/ia64/$(am__dirstamp)
|
@@ -687,10 +847,10 @@ src/m32r/$(am__dirstamp):
|
|
687
847
|
src/m32r/$(DEPDIR)/$(am__dirstamp):
|
688
848
|
@$(MKDIR_P) src/m32r/$(DEPDIR)
|
689
849
|
@: > src/m32r/$(DEPDIR)/$(am__dirstamp)
|
690
|
-
src/m32r/sysv.lo: src/m32r/$(am__dirstamp) \
|
691
|
-
src/m32r/$(DEPDIR)/$(am__dirstamp)
|
692
850
|
src/m32r/ffi.lo: src/m32r/$(am__dirstamp) \
|
693
851
|
src/m32r/$(DEPDIR)/$(am__dirstamp)
|
852
|
+
src/m32r/sysv.lo: src/m32r/$(am__dirstamp) \
|
853
|
+
src/m32r/$(DEPDIR)/$(am__dirstamp)
|
694
854
|
src/m68k/$(am__dirstamp):
|
695
855
|
@$(MKDIR_P) src/m68k
|
696
856
|
@: > src/m68k/$(am__dirstamp)
|
@@ -701,6 +861,91 @@ src/m68k/ffi.lo: src/m68k/$(am__dirstamp) \
|
|
701
861
|
src/m68k/$(DEPDIR)/$(am__dirstamp)
|
702
862
|
src/m68k/sysv.lo: src/m68k/$(am__dirstamp) \
|
703
863
|
src/m68k/$(DEPDIR)/$(am__dirstamp)
|
864
|
+
src/m88k/$(am__dirstamp):
|
865
|
+
@$(MKDIR_P) src/m88k
|
866
|
+
@: > src/m88k/$(am__dirstamp)
|
867
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp):
|
868
|
+
@$(MKDIR_P) src/m88k/$(DEPDIR)
|
869
|
+
@: > src/m88k/$(DEPDIR)/$(am__dirstamp)
|
870
|
+
src/m88k/ffi.lo: src/m88k/$(am__dirstamp) \
|
871
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp)
|
872
|
+
src/m88k/obsd.lo: src/m88k/$(am__dirstamp) \
|
873
|
+
src/m88k/$(DEPDIR)/$(am__dirstamp)
|
874
|
+
src/metag/$(am__dirstamp):
|
875
|
+
@$(MKDIR_P) src/metag
|
876
|
+
@: > src/metag/$(am__dirstamp)
|
877
|
+
src/metag/$(DEPDIR)/$(am__dirstamp):
|
878
|
+
@$(MKDIR_P) src/metag/$(DEPDIR)
|
879
|
+
@: > src/metag/$(DEPDIR)/$(am__dirstamp)
|
880
|
+
src/metag/ffi.lo: src/metag/$(am__dirstamp) \
|
881
|
+
src/metag/$(DEPDIR)/$(am__dirstamp)
|
882
|
+
src/metag/sysv.lo: src/metag/$(am__dirstamp) \
|
883
|
+
src/metag/$(DEPDIR)/$(am__dirstamp)
|
884
|
+
src/microblaze/$(am__dirstamp):
|
885
|
+
@$(MKDIR_P) src/microblaze
|
886
|
+
@: > src/microblaze/$(am__dirstamp)
|
887
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp):
|
888
|
+
@$(MKDIR_P) src/microblaze/$(DEPDIR)
|
889
|
+
@: > src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
890
|
+
src/microblaze/ffi.lo: src/microblaze/$(am__dirstamp) \
|
891
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
892
|
+
src/microblaze/sysv.lo: src/microblaze/$(am__dirstamp) \
|
893
|
+
src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
894
|
+
src/mips/$(am__dirstamp):
|
895
|
+
@$(MKDIR_P) src/mips
|
896
|
+
@: > src/mips/$(am__dirstamp)
|
897
|
+
src/mips/$(DEPDIR)/$(am__dirstamp):
|
898
|
+
@$(MKDIR_P) src/mips/$(DEPDIR)
|
899
|
+
@: > src/mips/$(DEPDIR)/$(am__dirstamp)
|
900
|
+
src/mips/ffi.lo: src/mips/$(am__dirstamp) \
|
901
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
902
|
+
src/mips/o32.lo: src/mips/$(am__dirstamp) \
|
903
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
904
|
+
src/mips/n32.lo: src/mips/$(am__dirstamp) \
|
905
|
+
src/mips/$(DEPDIR)/$(am__dirstamp)
|
906
|
+
src/moxie/$(am__dirstamp):
|
907
|
+
@$(MKDIR_P) src/moxie
|
908
|
+
@: > src/moxie/$(am__dirstamp)
|
909
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp):
|
910
|
+
@$(MKDIR_P) src/moxie/$(DEPDIR)
|
911
|
+
@: > src/moxie/$(DEPDIR)/$(am__dirstamp)
|
912
|
+
src/moxie/ffi.lo: src/moxie/$(am__dirstamp) \
|
913
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp)
|
914
|
+
src/moxie/eabi.lo: src/moxie/$(am__dirstamp) \
|
915
|
+
src/moxie/$(DEPDIR)/$(am__dirstamp)
|
916
|
+
src/nios2/$(am__dirstamp):
|
917
|
+
@$(MKDIR_P) src/nios2
|
918
|
+
@: > src/nios2/$(am__dirstamp)
|
919
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp):
|
920
|
+
@$(MKDIR_P) src/nios2/$(DEPDIR)
|
921
|
+
@: > src/nios2/$(DEPDIR)/$(am__dirstamp)
|
922
|
+
src/nios2/ffi.lo: src/nios2/$(am__dirstamp) \
|
923
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp)
|
924
|
+
src/nios2/sysv.lo: src/nios2/$(am__dirstamp) \
|
925
|
+
src/nios2/$(DEPDIR)/$(am__dirstamp)
|
926
|
+
src/or1k/$(am__dirstamp):
|
927
|
+
@$(MKDIR_P) src/or1k
|
928
|
+
@: > src/or1k/$(am__dirstamp)
|
929
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp):
|
930
|
+
@$(MKDIR_P) src/or1k/$(DEPDIR)
|
931
|
+
@: > src/or1k/$(DEPDIR)/$(am__dirstamp)
|
932
|
+
src/or1k/ffi.lo: src/or1k/$(am__dirstamp) \
|
933
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp)
|
934
|
+
src/or1k/sysv.lo: src/or1k/$(am__dirstamp) \
|
935
|
+
src/or1k/$(DEPDIR)/$(am__dirstamp)
|
936
|
+
src/pa/$(am__dirstamp):
|
937
|
+
@$(MKDIR_P) src/pa
|
938
|
+
@: > src/pa/$(am__dirstamp)
|
939
|
+
src/pa/$(DEPDIR)/$(am__dirstamp):
|
940
|
+
@$(MKDIR_P) src/pa/$(DEPDIR)
|
941
|
+
@: > src/pa/$(DEPDIR)/$(am__dirstamp)
|
942
|
+
src/pa/ffi.lo: src/pa/$(am__dirstamp) src/pa/$(DEPDIR)/$(am__dirstamp)
|
943
|
+
src/pa/linux.lo: src/pa/$(am__dirstamp) \
|
944
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
945
|
+
src/pa/hpux32.lo: src/pa/$(am__dirstamp) \
|
946
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
947
|
+
src/pa/hpux64.lo: src/pa/$(am__dirstamp) \
|
948
|
+
src/pa/$(DEPDIR)/$(am__dirstamp)
|
704
949
|
src/powerpc/$(am__dirstamp):
|
705
950
|
@$(MKDIR_P) src/powerpc
|
706
951
|
@: > src/powerpc/$(am__dirstamp)
|
@@ -709,338 +954,391 @@ src/powerpc/$(DEPDIR)/$(am__dirstamp):
|
|
709
954
|
@: > src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
710
955
|
src/powerpc/ffi.lo: src/powerpc/$(am__dirstamp) \
|
711
956
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
712
|
-
src/powerpc/
|
957
|
+
src/powerpc/ffi_sysv.lo: src/powerpc/$(am__dirstamp) \
|
713
958
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
714
|
-
src/powerpc/
|
959
|
+
src/powerpc/ffi_linux64.lo: src/powerpc/$(am__dirstamp) \
|
960
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
961
|
+
src/powerpc/sysv.lo: src/powerpc/$(am__dirstamp) \
|
715
962
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
716
963
|
src/powerpc/linux64.lo: src/powerpc/$(am__dirstamp) \
|
717
964
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
718
965
|
src/powerpc/linux64_closure.lo: src/powerpc/$(am__dirstamp) \
|
719
966
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
720
|
-
src/powerpc/
|
967
|
+
src/powerpc/ppc_closure.lo: src/powerpc/$(am__dirstamp) \
|
721
968
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
722
969
|
src/powerpc/aix.lo: src/powerpc/$(am__dirstamp) \
|
723
970
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
724
|
-
src/powerpc/aix_closure.lo: src/powerpc/$(am__dirstamp) \
|
725
|
-
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
726
971
|
src/powerpc/darwin.lo: src/powerpc/$(am__dirstamp) \
|
727
972
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
973
|
+
src/powerpc/aix_closure.lo: src/powerpc/$(am__dirstamp) \
|
974
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
728
975
|
src/powerpc/darwin_closure.lo: src/powerpc/$(am__dirstamp) \
|
729
976
|
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
730
|
-
src/
|
731
|
-
|
732
|
-
|
733
|
-
src/
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
src/
|
738
|
-
src/
|
739
|
-
src/
|
740
|
-
src/
|
741
|
-
src/
|
742
|
-
src/avr32/$(am__dirstamp):
|
743
|
-
@$(MKDIR_P) src/avr32
|
744
|
-
@: > src/avr32/$(am__dirstamp)
|
745
|
-
src/avr32/$(DEPDIR)/$(am__dirstamp):
|
746
|
-
@$(MKDIR_P) src/avr32/$(DEPDIR)
|
747
|
-
@: > src/avr32/$(DEPDIR)/$(am__dirstamp)
|
748
|
-
src/avr32/sysv.lo: src/avr32/$(am__dirstamp) \
|
749
|
-
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
750
|
-
src/avr32/ffi.lo: src/avr32/$(am__dirstamp) \
|
751
|
-
src/avr32/$(DEPDIR)/$(am__dirstamp)
|
752
|
-
src/cris/$(am__dirstamp):
|
753
|
-
@$(MKDIR_P) src/cris
|
754
|
-
@: > src/cris/$(am__dirstamp)
|
755
|
-
src/cris/$(DEPDIR)/$(am__dirstamp):
|
756
|
-
@$(MKDIR_P) src/cris/$(DEPDIR)
|
757
|
-
@: > src/cris/$(DEPDIR)/$(am__dirstamp)
|
758
|
-
src/cris/sysv.lo: src/cris/$(am__dirstamp) \
|
759
|
-
src/cris/$(DEPDIR)/$(am__dirstamp)
|
760
|
-
src/cris/ffi.lo: src/cris/$(am__dirstamp) \
|
761
|
-
src/cris/$(DEPDIR)/$(am__dirstamp)
|
762
|
-
src/frv/$(am__dirstamp):
|
763
|
-
@$(MKDIR_P) src/frv
|
764
|
-
@: > src/frv/$(am__dirstamp)
|
765
|
-
src/frv/$(DEPDIR)/$(am__dirstamp):
|
766
|
-
@$(MKDIR_P) src/frv/$(DEPDIR)
|
767
|
-
@: > src/frv/$(DEPDIR)/$(am__dirstamp)
|
768
|
-
src/frv/eabi.lo: src/frv/$(am__dirstamp) \
|
769
|
-
src/frv/$(DEPDIR)/$(am__dirstamp)
|
770
|
-
src/frv/ffi.lo: src/frv/$(am__dirstamp) \
|
771
|
-
src/frv/$(DEPDIR)/$(am__dirstamp)
|
977
|
+
src/powerpc/ffi_darwin.lo: src/powerpc/$(am__dirstamp) \
|
978
|
+
src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
979
|
+
src/riscv/$(am__dirstamp):
|
980
|
+
@$(MKDIR_P) src/riscv
|
981
|
+
@: > src/riscv/$(am__dirstamp)
|
982
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp):
|
983
|
+
@$(MKDIR_P) src/riscv/$(DEPDIR)
|
984
|
+
@: > src/riscv/$(DEPDIR)/$(am__dirstamp)
|
985
|
+
src/riscv/ffi.lo: src/riscv/$(am__dirstamp) \
|
986
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp)
|
987
|
+
src/riscv/sysv.lo: src/riscv/$(am__dirstamp) \
|
988
|
+
src/riscv/$(DEPDIR)/$(am__dirstamp)
|
772
989
|
src/s390/$(am__dirstamp):
|
773
990
|
@$(MKDIR_P) src/s390
|
774
991
|
@: > src/s390/$(am__dirstamp)
|
775
992
|
src/s390/$(DEPDIR)/$(am__dirstamp):
|
776
993
|
@$(MKDIR_P) src/s390/$(DEPDIR)
|
777
994
|
@: > src/s390/$(DEPDIR)/$(am__dirstamp)
|
778
|
-
src/s390/sysv.lo: src/s390/$(am__dirstamp) \
|
779
|
-
src/s390/$(DEPDIR)/$(am__dirstamp)
|
780
995
|
src/s390/ffi.lo: src/s390/$(am__dirstamp) \
|
781
996
|
src/s390/$(DEPDIR)/$(am__dirstamp)
|
782
|
-
src/
|
783
|
-
src/
|
997
|
+
src/s390/sysv.lo: src/s390/$(am__dirstamp) \
|
998
|
+
src/s390/$(DEPDIR)/$(am__dirstamp)
|
784
999
|
src/sh/$(am__dirstamp):
|
785
1000
|
@$(MKDIR_P) src/sh
|
786
1001
|
@: > src/sh/$(am__dirstamp)
|
787
1002
|
src/sh/$(DEPDIR)/$(am__dirstamp):
|
788
1003
|
@$(MKDIR_P) src/sh/$(DEPDIR)
|
789
1004
|
@: > src/sh/$(DEPDIR)/$(am__dirstamp)
|
1005
|
+
src/sh/ffi.lo: src/sh/$(am__dirstamp) src/sh/$(DEPDIR)/$(am__dirstamp)
|
790
1006
|
src/sh/sysv.lo: src/sh/$(am__dirstamp) \
|
791
1007
|
src/sh/$(DEPDIR)/$(am__dirstamp)
|
792
|
-
src/sh/ffi.lo: src/sh/$(am__dirstamp) src/sh/$(DEPDIR)/$(am__dirstamp)
|
793
1008
|
src/sh64/$(am__dirstamp):
|
794
1009
|
@$(MKDIR_P) src/sh64
|
795
1010
|
@: > src/sh64/$(am__dirstamp)
|
796
1011
|
src/sh64/$(DEPDIR)/$(am__dirstamp):
|
797
1012
|
@$(MKDIR_P) src/sh64/$(DEPDIR)
|
798
1013
|
@: > src/sh64/$(DEPDIR)/$(am__dirstamp)
|
799
|
-
src/sh64/sysv.lo: src/sh64/$(am__dirstamp) \
|
800
|
-
src/sh64/$(DEPDIR)/$(am__dirstamp)
|
801
1014
|
src/sh64/ffi.lo: src/sh64/$(am__dirstamp) \
|
802
1015
|
src/sh64/$(DEPDIR)/$(am__dirstamp)
|
803
|
-
src/
|
804
|
-
|
805
|
-
|
806
|
-
src/
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
src/
|
811
|
-
src/
|
812
|
-
src/
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
1016
|
+
src/sh64/sysv.lo: src/sh64/$(am__dirstamp) \
|
1017
|
+
src/sh64/$(DEPDIR)/$(am__dirstamp)
|
1018
|
+
src/sparc/$(am__dirstamp):
|
1019
|
+
@$(MKDIR_P) src/sparc
|
1020
|
+
@: > src/sparc/$(am__dirstamp)
|
1021
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp):
|
1022
|
+
@$(MKDIR_P) src/sparc/$(DEPDIR)
|
1023
|
+
@: > src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1024
|
+
src/sparc/ffi.lo: src/sparc/$(am__dirstamp) \
|
1025
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1026
|
+
src/sparc/ffi64.lo: src/sparc/$(am__dirstamp) \
|
1027
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1028
|
+
src/sparc/v8.lo: src/sparc/$(am__dirstamp) \
|
1029
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1030
|
+
src/sparc/v9.lo: src/sparc/$(am__dirstamp) \
|
1031
|
+
src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1032
|
+
src/tile/$(am__dirstamp):
|
1033
|
+
@$(MKDIR_P) src/tile
|
1034
|
+
@: > src/tile/$(am__dirstamp)
|
1035
|
+
src/tile/$(DEPDIR)/$(am__dirstamp):
|
1036
|
+
@$(MKDIR_P) src/tile/$(DEPDIR)
|
1037
|
+
@: > src/tile/$(DEPDIR)/$(am__dirstamp)
|
1038
|
+
src/tile/ffi.lo: src/tile/$(am__dirstamp) \
|
1039
|
+
src/tile/$(DEPDIR)/$(am__dirstamp)
|
1040
|
+
src/tile/tile.lo: src/tile/$(am__dirstamp) \
|
1041
|
+
src/tile/$(DEPDIR)/$(am__dirstamp)
|
1042
|
+
src/vax/$(am__dirstamp):
|
1043
|
+
@$(MKDIR_P) src/vax
|
1044
|
+
@: > src/vax/$(am__dirstamp)
|
1045
|
+
src/vax/$(DEPDIR)/$(am__dirstamp):
|
1046
|
+
@$(MKDIR_P) src/vax/$(DEPDIR)
|
1047
|
+
@: > src/vax/$(DEPDIR)/$(am__dirstamp)
|
1048
|
+
src/vax/ffi.lo: src/vax/$(am__dirstamp) \
|
1049
|
+
src/vax/$(DEPDIR)/$(am__dirstamp)
|
1050
|
+
src/vax/elfbsd.lo: src/vax/$(am__dirstamp) \
|
1051
|
+
src/vax/$(DEPDIR)/$(am__dirstamp)
|
1052
|
+
src/x86/$(am__dirstamp):
|
1053
|
+
@$(MKDIR_P) src/x86
|
1054
|
+
@: > src/x86/$(am__dirstamp)
|
1055
|
+
src/x86/$(DEPDIR)/$(am__dirstamp):
|
1056
|
+
@$(MKDIR_P) src/x86/$(DEPDIR)
|
1057
|
+
@: > src/x86/$(DEPDIR)/$(am__dirstamp)
|
1058
|
+
src/x86/ffi.lo: src/x86/$(am__dirstamp) \
|
1059
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1060
|
+
src/x86/sysv.lo: src/x86/$(am__dirstamp) \
|
1061
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1062
|
+
src/wasm32/$(am__dirstamp):
|
1063
|
+
@$(MKDIR_P) src/wasm32
|
1064
|
+
@: > src/wasm32/$(am__dirstamp)
|
1065
|
+
src/wasm32/$(DEPDIR)/$(am__dirstamp):
|
1066
|
+
@$(MKDIR_P) src/wasm32/$(DEPDIR)
|
1067
|
+
@: > src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1068
|
+
src/wasm32/ffi.lo: src/wasm32/$(am__dirstamp) \
|
1069
|
+
src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1070
|
+
src/x86/ffiw64.lo: src/x86/$(am__dirstamp) \
|
1071
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1072
|
+
src/x86/win64.lo: src/x86/$(am__dirstamp) \
|
1073
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1074
|
+
src/x86/ffi64.lo: src/x86/$(am__dirstamp) \
|
1075
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1076
|
+
src/x86/unix64.lo: src/x86/$(am__dirstamp) \
|
1077
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1078
|
+
src/x86/sysv_intel.lo: src/x86/$(am__dirstamp) \
|
1079
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1080
|
+
src/x86/win64_intel.lo: src/x86/$(am__dirstamp) \
|
1081
|
+
src/x86/$(DEPDIR)/$(am__dirstamp)
|
1082
|
+
src/xtensa/$(am__dirstamp):
|
1083
|
+
@$(MKDIR_P) src/xtensa
|
1084
|
+
@: > src/xtensa/$(am__dirstamp)
|
1085
|
+
src/xtensa/$(DEPDIR)/$(am__dirstamp):
|
1086
|
+
@$(MKDIR_P) src/xtensa/$(DEPDIR)
|
1087
|
+
@: > src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1088
|
+
src/xtensa/ffi.lo: src/xtensa/$(am__dirstamp) \
|
1089
|
+
src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1090
|
+
src/xtensa/sysv.lo: src/xtensa/$(am__dirstamp) \
|
1091
|
+
src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1092
|
+
src/kvx/$(am__dirstamp):
|
1093
|
+
@$(MKDIR_P) src/kvx
|
1094
|
+
@: > src/kvx/$(am__dirstamp)
|
1095
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp):
|
1096
|
+
@$(MKDIR_P) src/kvx/$(DEPDIR)
|
1097
|
+
@: > src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1098
|
+
src/kvx/ffi.lo: src/kvx/$(am__dirstamp) \
|
1099
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1100
|
+
src/kvx/sysv.lo: src/kvx/$(am__dirstamp) \
|
1101
|
+
src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1102
|
+
src/loongarch64/$(am__dirstamp):
|
1103
|
+
@$(MKDIR_P) src/loongarch64
|
1104
|
+
@: > src/loongarch64/$(am__dirstamp)
|
1105
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp):
|
1106
|
+
@$(MKDIR_P) src/loongarch64/$(DEPDIR)
|
1107
|
+
@: > src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1108
|
+
src/loongarch64/ffi.lo: src/loongarch64/$(am__dirstamp) \
|
1109
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1110
|
+
src/loongarch64/sysv.lo: src/loongarch64/$(am__dirstamp) \
|
1111
|
+
src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1112
|
+
|
1113
|
+
libffi.la: $(libffi_la_OBJECTS) $(libffi_la_DEPENDENCIES) $(EXTRA_libffi_la_DEPENDENCIES)
|
1114
|
+
$(AM_V_CCLD)$(libffi_la_LINK) -rpath $(toolexeclibdir) $(libffi_la_OBJECTS) $(libffi_la_LIBADD) $(LIBS)
|
1115
|
+
|
1116
|
+
libffi_convenience.la: $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_DEPENDENCIES) $(EXTRA_libffi_convenience_la_DEPENDENCIES)
|
1117
|
+
$(AM_V_CCLD)$(LINK) $(libffi_convenience_la_OBJECTS) $(libffi_convenience_la_LIBADD) $(LIBS)
|
818
1118
|
|
819
1119
|
mostlyclean-compile:
|
820
1120
|
-rm -f *.$(OBJEXT)
|
821
|
-
-rm -f src
|
822
|
-
-rm -f src
|
823
|
-
-rm -f src/
|
824
|
-
-rm -f src/
|
825
|
-
-rm -f src/
|
826
|
-
-rm -f src/
|
827
|
-
-rm -f src/
|
828
|
-
-rm -f src/
|
829
|
-
-rm -f src/arm
|
830
|
-
-rm -f src/arm
|
831
|
-
-rm -f src/avr32
|
832
|
-
-rm -f src/avr32
|
833
|
-
-rm -f src/
|
834
|
-
-rm -f src/
|
835
|
-
-rm -f src/
|
836
|
-
-rm -f src/
|
837
|
-
-rm -f src/
|
838
|
-
-rm -f src/
|
839
|
-
-rm -f src/
|
840
|
-
-rm -f src/
|
841
|
-
-rm -f src/
|
842
|
-
-rm -f src/
|
843
|
-
-rm -f src/
|
844
|
-
-rm -f src/
|
845
|
-
-rm -f src/
|
846
|
-
-rm -f src/
|
847
|
-
-rm -f src/
|
848
|
-
-rm -f src/
|
849
|
-
-rm -f src/
|
850
|
-
-rm -f src/
|
851
|
-
-rm -f src/
|
852
|
-
-rm -f src/
|
853
|
-
-rm -f src/
|
854
|
-
-rm -f src/
|
855
|
-
-rm -f src/
|
856
|
-
-rm -f src/
|
857
|
-
-rm -f src/
|
858
|
-
-rm -f src/
|
859
|
-
-rm -f src/
|
860
|
-
-rm -f src/
|
861
|
-
-rm -f src/
|
862
|
-
-rm -f src/
|
863
|
-
-rm -f src/
|
864
|
-
-rm -f src/
|
865
|
-
-rm -f src/
|
866
|
-
-rm -f src/
|
867
|
-
-rm -f src/
|
868
|
-
-rm -f src/
|
869
|
-
-rm -f src/
|
870
|
-
-rm -f src/
|
871
|
-
-rm -f src/
|
872
|
-
-rm -f src/
|
873
|
-
-rm -f src/
|
874
|
-
-rm -f src/
|
875
|
-
-rm -f src/
|
876
|
-
-rm -f src/
|
877
|
-
-rm -f src/
|
878
|
-
-rm -f src/
|
879
|
-
-rm -f src/
|
880
|
-
-rm -f src/
|
881
|
-
-rm -f src/
|
882
|
-
-rm -f src/
|
883
|
-
-rm -f src/
|
884
|
-
-rm -f src/
|
885
|
-
-rm -f src/
|
886
|
-
-rm -f src/
|
887
|
-
-rm -f src/
|
888
|
-
-rm -f src/
|
889
|
-
-rm -f src/powerpc/ppc_closure.$(OBJEXT)
|
890
|
-
-rm -f src/powerpc/ppc_closure.lo
|
891
|
-
-rm -f src/powerpc/sysv.$(OBJEXT)
|
892
|
-
-rm -f src/powerpc/sysv.lo
|
893
|
-
-rm -f src/prep_cif.$(OBJEXT)
|
894
|
-
-rm -f src/prep_cif.lo
|
895
|
-
-rm -f src/raw_api.$(OBJEXT)
|
896
|
-
-rm -f src/raw_api.lo
|
897
|
-
-rm -f src/s390/ffi.$(OBJEXT)
|
898
|
-
-rm -f src/s390/ffi.lo
|
899
|
-
-rm -f src/s390/sysv.$(OBJEXT)
|
900
|
-
-rm -f src/s390/sysv.lo
|
901
|
-
-rm -f src/sh/ffi.$(OBJEXT)
|
902
|
-
-rm -f src/sh/ffi.lo
|
903
|
-
-rm -f src/sh/sysv.$(OBJEXT)
|
904
|
-
-rm -f src/sh/sysv.lo
|
905
|
-
-rm -f src/sh64/ffi.$(OBJEXT)
|
906
|
-
-rm -f src/sh64/ffi.lo
|
907
|
-
-rm -f src/sh64/sysv.$(OBJEXT)
|
908
|
-
-rm -f src/sh64/sysv.lo
|
909
|
-
-rm -f src/sparc/ffi.$(OBJEXT)
|
910
|
-
-rm -f src/sparc/ffi.lo
|
911
|
-
-rm -f src/sparc/v8.$(OBJEXT)
|
912
|
-
-rm -f src/sparc/v8.lo
|
913
|
-
-rm -f src/sparc/v9.$(OBJEXT)
|
914
|
-
-rm -f src/sparc/v9.lo
|
915
|
-
-rm -f src/types.$(OBJEXT)
|
916
|
-
-rm -f src/types.lo
|
917
|
-
-rm -f src/x86/darwin.$(OBJEXT)
|
918
|
-
-rm -f src/x86/darwin.lo
|
919
|
-
-rm -f src/x86/darwin64.$(OBJEXT)
|
920
|
-
-rm -f src/x86/darwin64.lo
|
921
|
-
-rm -f src/x86/ffi.$(OBJEXT)
|
922
|
-
-rm -f src/x86/ffi.lo
|
923
|
-
-rm -f src/x86/ffi64.$(OBJEXT)
|
924
|
-
-rm -f src/x86/ffi64.lo
|
925
|
-
-rm -f src/x86/freebsd.$(OBJEXT)
|
926
|
-
-rm -f src/x86/freebsd.lo
|
927
|
-
-rm -f src/x86/sysv.$(OBJEXT)
|
928
|
-
-rm -f src/x86/sysv.lo
|
929
|
-
-rm -f src/x86/unix64.$(OBJEXT)
|
930
|
-
-rm -f src/x86/unix64.lo
|
931
|
-
-rm -f src/x86/win32.$(OBJEXT)
|
932
|
-
-rm -f src/x86/win32.lo
|
933
|
-
-rm -f src/x86/win64.$(OBJEXT)
|
934
|
-
-rm -f src/x86/win64.lo
|
1121
|
+
-rm -f src/*.$(OBJEXT)
|
1122
|
+
-rm -f src/*.lo
|
1123
|
+
-rm -f src/aarch64/*.$(OBJEXT)
|
1124
|
+
-rm -f src/aarch64/*.lo
|
1125
|
+
-rm -f src/alpha/*.$(OBJEXT)
|
1126
|
+
-rm -f src/alpha/*.lo
|
1127
|
+
-rm -f src/arc/*.$(OBJEXT)
|
1128
|
+
-rm -f src/arc/*.lo
|
1129
|
+
-rm -f src/arm/*.$(OBJEXT)
|
1130
|
+
-rm -f src/arm/*.lo
|
1131
|
+
-rm -f src/avr32/*.$(OBJEXT)
|
1132
|
+
-rm -f src/avr32/*.lo
|
1133
|
+
-rm -f src/bfin/*.$(OBJEXT)
|
1134
|
+
-rm -f src/bfin/*.lo
|
1135
|
+
-rm -f src/cris/*.$(OBJEXT)
|
1136
|
+
-rm -f src/cris/*.lo
|
1137
|
+
-rm -f src/csky/*.$(OBJEXT)
|
1138
|
+
-rm -f src/csky/*.lo
|
1139
|
+
-rm -f src/frv/*.$(OBJEXT)
|
1140
|
+
-rm -f src/frv/*.lo
|
1141
|
+
-rm -f src/ia64/*.$(OBJEXT)
|
1142
|
+
-rm -f src/ia64/*.lo
|
1143
|
+
-rm -f src/kvx/*.$(OBJEXT)
|
1144
|
+
-rm -f src/kvx/*.lo
|
1145
|
+
-rm -f src/loongarch64/*.$(OBJEXT)
|
1146
|
+
-rm -f src/loongarch64/*.lo
|
1147
|
+
-rm -f src/m32r/*.$(OBJEXT)
|
1148
|
+
-rm -f src/m32r/*.lo
|
1149
|
+
-rm -f src/m68k/*.$(OBJEXT)
|
1150
|
+
-rm -f src/m68k/*.lo
|
1151
|
+
-rm -f src/m88k/*.$(OBJEXT)
|
1152
|
+
-rm -f src/m88k/*.lo
|
1153
|
+
-rm -f src/metag/*.$(OBJEXT)
|
1154
|
+
-rm -f src/metag/*.lo
|
1155
|
+
-rm -f src/microblaze/*.$(OBJEXT)
|
1156
|
+
-rm -f src/microblaze/*.lo
|
1157
|
+
-rm -f src/mips/*.$(OBJEXT)
|
1158
|
+
-rm -f src/mips/*.lo
|
1159
|
+
-rm -f src/moxie/*.$(OBJEXT)
|
1160
|
+
-rm -f src/moxie/*.lo
|
1161
|
+
-rm -f src/nios2/*.$(OBJEXT)
|
1162
|
+
-rm -f src/nios2/*.lo
|
1163
|
+
-rm -f src/or1k/*.$(OBJEXT)
|
1164
|
+
-rm -f src/or1k/*.lo
|
1165
|
+
-rm -f src/pa/*.$(OBJEXT)
|
1166
|
+
-rm -f src/pa/*.lo
|
1167
|
+
-rm -f src/powerpc/*.$(OBJEXT)
|
1168
|
+
-rm -f src/powerpc/*.lo
|
1169
|
+
-rm -f src/riscv/*.$(OBJEXT)
|
1170
|
+
-rm -f src/riscv/*.lo
|
1171
|
+
-rm -f src/s390/*.$(OBJEXT)
|
1172
|
+
-rm -f src/s390/*.lo
|
1173
|
+
-rm -f src/sh/*.$(OBJEXT)
|
1174
|
+
-rm -f src/sh/*.lo
|
1175
|
+
-rm -f src/sh64/*.$(OBJEXT)
|
1176
|
+
-rm -f src/sh64/*.lo
|
1177
|
+
-rm -f src/sparc/*.$(OBJEXT)
|
1178
|
+
-rm -f src/sparc/*.lo
|
1179
|
+
-rm -f src/tile/*.$(OBJEXT)
|
1180
|
+
-rm -f src/tile/*.lo
|
1181
|
+
-rm -f src/vax/*.$(OBJEXT)
|
1182
|
+
-rm -f src/vax/*.lo
|
1183
|
+
-rm -f src/wasm32/*.$(OBJEXT)
|
1184
|
+
-rm -f src/wasm32/*.lo
|
1185
|
+
-rm -f src/x86/*.$(OBJEXT)
|
1186
|
+
-rm -f src/x86/*.lo
|
1187
|
+
-rm -f src/xtensa/*.$(OBJEXT)
|
1188
|
+
-rm -f src/xtensa/*.lo
|
935
1189
|
|
936
1190
|
distclean-compile:
|
937
1191
|
-rm -f *.tab.c
|
938
1192
|
|
939
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/closures.Plo@am__quote@
|
940
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/debug.Plo@am__quote@
|
941
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/java_raw_api.Plo@am__quote@
|
942
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/prep_cif.Plo@am__quote@
|
943
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/raw_api.Plo@am__quote@
|
944
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/
|
945
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src
|
946
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
947
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
948
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
949
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
950
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
951
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
952
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
953
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
954
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
955
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
956
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
957
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
958
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
959
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
960
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
961
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
962
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
963
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
964
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
965
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
966
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
967
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
968
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
969
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
970
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
971
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
972
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
973
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
974
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
975
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
976
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
977
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
978
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
979
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
980
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
981
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
982
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
983
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
984
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
985
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
986
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
987
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
988
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
989
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
990
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
991
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
992
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
993
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
994
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
995
|
-
@AMDEP_TRUE@@am__include@ @am__quote@src/
|
1193
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/closures.Plo@am__quote@ # am--include-marker
|
1194
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/debug.Plo@am__quote@ # am--include-marker
|
1195
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/java_raw_api.Plo@am__quote@ # am--include-marker
|
1196
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/prep_cif.Plo@am__quote@ # am--include-marker
|
1197
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/raw_api.Plo@am__quote@ # am--include-marker
|
1198
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tramp.Plo@am__quote@ # am--include-marker
|
1199
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/types.Plo@am__quote@ # am--include-marker
|
1200
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1201
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1202
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/aarch64/$(DEPDIR)/win64_armasm.Plo@am__quote@ # am--include-marker
|
1203
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1204
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/alpha/$(DEPDIR)/osf.Plo@am__quote@ # am--include-marker
|
1205
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arc/$(DEPDIR)/arcompact.Plo@am__quote@ # am--include-marker
|
1206
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1207
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1208
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1209
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo@am__quote@ # am--include-marker
|
1210
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/avr32/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1211
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/avr32/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1212
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/bfin/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1213
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/bfin/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1214
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1215
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/cris/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1216
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/csky/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1217
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/csky/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1218
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/eabi.Plo@am__quote@ # am--include-marker
|
1219
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/frv/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1220
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1221
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/ia64/$(DEPDIR)/unix.Plo@am__quote@ # am--include-marker
|
1222
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/kvx/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1223
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/kvx/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1224
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/loongarch64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1225
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/loongarch64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1226
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1227
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m32r/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1228
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1229
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m68k/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1230
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m88k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1231
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/m88k/$(DEPDIR)/obsd.Plo@am__quote@ # am--include-marker
|
1232
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/metag/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1233
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/metag/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1234
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/microblaze/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1235
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/microblaze/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1236
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1237
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/n32.Plo@am__quote@ # am--include-marker
|
1238
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/mips/$(DEPDIR)/o32.Plo@am__quote@ # am--include-marker
|
1239
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/moxie/$(DEPDIR)/eabi.Plo@am__quote@ # am--include-marker
|
1240
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/moxie/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1241
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/nios2/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1242
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/nios2/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1243
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/or1k/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1244
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/or1k/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1245
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1246
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/hpux32.Plo@am__quote@ # am--include-marker
|
1247
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/hpux64.Plo@am__quote@ # am--include-marker
|
1248
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/pa/$(DEPDIR)/linux.Plo@am__quote@ # am--include-marker
|
1249
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix.Plo@am__quote@ # am--include-marker
|
1250
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/aix_closure.Plo@am__quote@ # am--include-marker
|
1251
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin.Plo@am__quote@ # am--include-marker
|
1252
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/darwin_closure.Plo@am__quote@ # am--include-marker
|
1253
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1254
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_darwin.Plo@am__quote@ # am--include-marker
|
1255
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_linux64.Plo@am__quote@ # am--include-marker
|
1256
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ffi_sysv.Plo@am__quote@ # am--include-marker
|
1257
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64.Plo@am__quote@ # am--include-marker
|
1258
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/linux64_closure.Plo@am__quote@ # am--include-marker
|
1259
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/ppc_closure.Plo@am__quote@ # am--include-marker
|
1260
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/powerpc/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1261
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/riscv/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1262
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/riscv/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1263
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1264
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/s390/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1265
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1266
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1267
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1268
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sh64/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1269
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1270
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/ffi64.Plo@am__quote@ # am--include-marker
|
1271
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v8.Plo@am__quote@ # am--include-marker
|
1272
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/sparc/$(DEPDIR)/v9.Plo@am__quote@ # am--include-marker
|
1273
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/tile/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1274
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/tile/$(DEPDIR)/tile.Plo@am__quote@ # am--include-marker
|
1275
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/vax/$(DEPDIR)/elfbsd.Plo@am__quote@ # am--include-marker
|
1276
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/vax/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1277
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/wasm32/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1278
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1279
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffi64.Plo@am__quote@ # am--include-marker
|
1280
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/ffiw64.Plo@am__quote@ # am--include-marker
|
1281
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1282
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/sysv_intel.Plo@am__quote@ # am--include-marker
|
1283
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/unix64.Plo@am__quote@ # am--include-marker
|
1284
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/win64.Plo@am__quote@ # am--include-marker
|
1285
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/x86/$(DEPDIR)/win64_intel.Plo@am__quote@ # am--include-marker
|
1286
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/xtensa/$(DEPDIR)/ffi.Plo@am__quote@ # am--include-marker
|
1287
|
+
@AMDEP_TRUE@@am__include@ @am__quote@src/xtensa/$(DEPDIR)/sysv.Plo@am__quote@ # am--include-marker
|
1288
|
+
|
1289
|
+
$(am__depfiles_remade):
|
1290
|
+
@$(MKDIR_P) $(@D)
|
1291
|
+
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
1292
|
+
|
1293
|
+
am--depfiles: $(am__depfiles_remade)
|
996
1294
|
|
997
1295
|
.S.o:
|
998
|
-
@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
1296
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
999
1297
|
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1000
1298
|
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1001
|
-
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1299
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1002
1300
|
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1003
|
-
@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ $<
|
1301
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $<
|
1004
1302
|
|
1005
1303
|
.S.obj:
|
1006
|
-
@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1304
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1007
1305
|
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
1008
1306
|
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1009
|
-
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1307
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1010
1308
|
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1011
|
-
@am__fastdepCCAS_FALSE@ $(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1309
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1012
1310
|
|
1013
1311
|
.S.lo:
|
1014
|
-
@am__fastdepCCAS_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1312
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1015
1313
|
@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1016
1314
|
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
1017
|
-
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1315
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1018
1316
|
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1019
|
-
@am__fastdepCCAS_FALSE@ $(LTCPPASCOMPILE) -c -o $@ $<
|
1317
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $<
|
1020
1318
|
|
1021
1319
|
.c.o:
|
1022
|
-
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
1320
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
1023
1321
|
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1024
1322
|
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1025
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1323
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1026
1324
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1027
|
-
@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
|
1325
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
1028
1326
|
|
1029
1327
|
.c.obj:
|
1030
|
-
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1328
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
1031
1329
|
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
1032
1330
|
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
1033
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1331
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
1034
1332
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1035
|
-
@am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1333
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
1036
1334
|
|
1037
1335
|
.c.lo:
|
1038
|
-
@am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1336
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
1039
1337
|
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
1040
1338
|
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
1041
|
-
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1339
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
1042
1340
|
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
1043
|
-
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
|
1341
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
1044
1342
|
|
1045
1343
|
mostlyclean-libtool:
|
1046
1344
|
-rm -f *.lo
|
@@ -1048,194 +1346,49 @@ mostlyclean-libtool:
|
|
1048
1346
|
clean-libtool:
|
1049
1347
|
-rm -rf .libs _libs
|
1050
1348
|
-rm -rf src/.libs src/_libs
|
1349
|
+
-rm -rf src/aarch64/.libs src/aarch64/_libs
|
1051
1350
|
-rm -rf src/alpha/.libs src/alpha/_libs
|
1351
|
+
-rm -rf src/arc/.libs src/arc/_libs
|
1052
1352
|
-rm -rf src/arm/.libs src/arm/_libs
|
1053
1353
|
-rm -rf src/avr32/.libs src/avr32/_libs
|
1354
|
+
-rm -rf src/bfin/.libs src/bfin/_libs
|
1054
1355
|
-rm -rf src/cris/.libs src/cris/_libs
|
1356
|
+
-rm -rf src/csky/.libs src/csky/_libs
|
1055
1357
|
-rm -rf src/frv/.libs src/frv/_libs
|
1056
1358
|
-rm -rf src/ia64/.libs src/ia64/_libs
|
1359
|
+
-rm -rf src/kvx/.libs src/kvx/_libs
|
1360
|
+
-rm -rf src/loongarch64/.libs src/loongarch64/_libs
|
1057
1361
|
-rm -rf src/m32r/.libs src/m32r/_libs
|
1058
1362
|
-rm -rf src/m68k/.libs src/m68k/_libs
|
1363
|
+
-rm -rf src/m88k/.libs src/m88k/_libs
|
1364
|
+
-rm -rf src/metag/.libs src/metag/_libs
|
1365
|
+
-rm -rf src/microblaze/.libs src/microblaze/_libs
|
1059
1366
|
-rm -rf src/mips/.libs src/mips/_libs
|
1367
|
+
-rm -rf src/moxie/.libs src/moxie/_libs
|
1368
|
+
-rm -rf src/nios2/.libs src/nios2/_libs
|
1369
|
+
-rm -rf src/or1k/.libs src/or1k/_libs
|
1060
1370
|
-rm -rf src/pa/.libs src/pa/_libs
|
1061
1371
|
-rm -rf src/powerpc/.libs src/powerpc/_libs
|
1372
|
+
-rm -rf src/riscv/.libs src/riscv/_libs
|
1062
1373
|
-rm -rf src/s390/.libs src/s390/_libs
|
1063
1374
|
-rm -rf src/sh/.libs src/sh/_libs
|
1064
1375
|
-rm -rf src/sh64/.libs src/sh64/_libs
|
1065
1376
|
-rm -rf src/sparc/.libs src/sparc/_libs
|
1377
|
+
-rm -rf src/tile/.libs src/tile/_libs
|
1378
|
+
-rm -rf src/vax/.libs src/vax/_libs
|
1379
|
+
-rm -rf src/wasm32/.libs src/wasm32/_libs
|
1066
1380
|
-rm -rf src/x86/.libs src/x86/_libs
|
1381
|
+
-rm -rf src/xtensa/.libs src/xtensa/_libs
|
1067
1382
|
|
1068
1383
|
distclean-libtool:
|
1069
1384
|
-rm -f libtool config.lt
|
1070
|
-
doc/$(am__dirstamp):
|
1071
|
-
@$(MKDIR_P) doc
|
1072
|
-
@: > doc/$(am__dirstamp)
|
1073
|
-
|
1074
|
-
$(srcdir)/doc/libffi.info: doc/libffi.texi $(srcdir)/doc/version.texi
|
1075
|
-
restore=: && backupdir="$(am__leading_dot)am$$$$" && \
|
1076
|
-
am__cwd=`pwd` && $(am__cd) $(srcdir) && \
|
1077
|
-
rm -rf $$backupdir && mkdir $$backupdir && \
|
1078
|
-
if ($(MAKEINFO) --version) >/dev/null 2>&1; then \
|
1079
|
-
for f in $@ $@-[0-9] $@-[0-9][0-9] $(@:.info=).i[0-9] $(@:.info=).i[0-9][0-9]; do \
|
1080
|
-
if test -f $$f; then mv $$f $$backupdir; restore=mv; else :; fi; \
|
1081
|
-
done; \
|
1082
|
-
else :; fi && \
|
1083
|
-
cd "$$am__cwd"; \
|
1084
|
-
if $(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
|
1085
|
-
-o $@ $(srcdir)/doc/libffi.texi; \
|
1086
|
-
then \
|
1087
|
-
rc=0; \
|
1088
|
-
$(am__cd) $(srcdir); \
|
1089
|
-
else \
|
1090
|
-
rc=$$?; \
|
1091
|
-
$(am__cd) $(srcdir) && \
|
1092
|
-
$$restore $$backupdir/* `echo "./$@" | sed 's|[^/]*$$||'`; \
|
1093
|
-
fi; \
|
1094
|
-
rm -rf $$backupdir; exit $$rc
|
1095
|
-
|
1096
|
-
doc/libffi.dvi: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
|
1097
|
-
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
1098
|
-
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
|
1099
|
-
$(TEXI2DVI) -o $@ `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi
|
1100
|
-
|
1101
|
-
doc/libffi.pdf: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
|
1102
|
-
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
1103
|
-
MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc' \
|
1104
|
-
$(TEXI2PDF) -o $@ `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi
|
1105
|
-
|
1106
|
-
doc/libffi.html: doc/libffi.texi $(srcdir)/doc/version.texi doc/$(am__dirstamp)
|
1107
|
-
rm -rf $(@:.html=.htp)
|
1108
|
-
if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I doc -I $(srcdir)/doc \
|
1109
|
-
-o $(@:.html=.htp) `test -f 'doc/libffi.texi' || echo '$(srcdir)/'`doc/libffi.texi; \
|
1110
|
-
then \
|
1111
|
-
rm -rf $@; \
|
1112
|
-
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
1113
|
-
mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
|
1114
|
-
else \
|
1115
|
-
if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
|
1116
|
-
rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
|
1117
|
-
exit 1; \
|
1118
|
-
fi
|
1119
|
-
$(srcdir)/doc/version.texi: @MAINTAINER_MODE_TRUE@ $(srcdir)/doc/stamp-vti
|
1120
|
-
$(srcdir)/doc/stamp-vti: doc/libffi.texi $(top_srcdir)/configure
|
1121
|
-
test -f doc/$(am__dirstamp) || $(MAKE) $(AM_MAKEFLAGS) doc/$(am__dirstamp)
|
1122
|
-
@(dir=.; test -f ./doc/libffi.texi || dir=$(srcdir); \
|
1123
|
-
set `$(SHELL) $(srcdir)/mdate-sh $$dir/doc/libffi.texi`; \
|
1124
|
-
echo "@set UPDATED $$1 $$2 $$3"; \
|
1125
|
-
echo "@set UPDATED-MONTH $$2 $$3"; \
|
1126
|
-
echo "@set EDITION $(VERSION)"; \
|
1127
|
-
echo "@set VERSION $(VERSION)") > vti.tmp
|
1128
|
-
@cmp -s vti.tmp $(srcdir)/doc/version.texi \
|
1129
|
-
|| (echo "Updating $(srcdir)/doc/version.texi"; \
|
1130
|
-
cp vti.tmp $(srcdir)/doc/version.texi)
|
1131
|
-
-@rm -f vti.tmp
|
1132
|
-
@cp $(srcdir)/doc/version.texi $@
|
1133
|
-
|
1134
|
-
mostlyclean-vti:
|
1135
|
-
-rm -f vti.tmp
|
1136
|
-
|
1137
|
-
maintainer-clean-vti:
|
1138
|
-
@MAINTAINER_MODE_TRUE@ -rm -f $(srcdir)/doc/stamp-vti $(srcdir)/doc/version.texi
|
1139
|
-
.dvi.ps:
|
1140
|
-
TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
|
1141
|
-
$(DVIPS) -o $@ $<
|
1142
|
-
|
1143
|
-
uninstall-dvi-am:
|
1144
|
-
@$(NORMAL_UNINSTALL)
|
1145
|
-
@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
|
1146
|
-
for p in $$list; do \
|
1147
|
-
$(am__strip_dir) \
|
1148
|
-
echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
|
1149
|
-
rm -f "$(DESTDIR)$(dvidir)/$$f"; \
|
1150
|
-
done
|
1151
|
-
|
1152
|
-
uninstall-html-am:
|
1153
|
-
@$(NORMAL_UNINSTALL)
|
1154
|
-
@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
|
1155
|
-
for p in $$list; do \
|
1156
|
-
$(am__strip_dir) \
|
1157
|
-
echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
|
1158
|
-
rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
|
1159
|
-
done
|
1160
|
-
|
1161
|
-
uninstall-info-am:
|
1162
|
-
@$(PRE_UNINSTALL)
|
1163
|
-
@if test -d '$(DESTDIR)$(infodir)' && \
|
1164
|
-
(install-info --version && \
|
1165
|
-
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
1166
|
-
list='$(INFO_DEPS)'; \
|
1167
|
-
for file in $$list; do \
|
1168
|
-
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
1169
|
-
echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
|
1170
|
-
if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
|
1171
|
-
then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
|
1172
|
-
done; \
|
1173
|
-
else :; fi
|
1174
|
-
@$(NORMAL_UNINSTALL)
|
1175
|
-
@list='$(INFO_DEPS)'; \
|
1176
|
-
for file in $$list; do \
|
1177
|
-
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
1178
|
-
relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
|
1179
|
-
(if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
|
1180
|
-
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]"; \
|
1181
|
-
rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
|
1182
|
-
else :; fi); \
|
1183
|
-
done
|
1184
|
-
|
1185
|
-
uninstall-pdf-am:
|
1186
|
-
@$(NORMAL_UNINSTALL)
|
1187
|
-
@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
|
1188
|
-
for p in $$list; do \
|
1189
|
-
$(am__strip_dir) \
|
1190
|
-
echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
|
1191
|
-
rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
|
1192
|
-
done
|
1193
|
-
|
1194
|
-
uninstall-ps-am:
|
1195
|
-
@$(NORMAL_UNINSTALL)
|
1196
|
-
@list='$(PSS)'; test -n "$(psdir)" || list=; \
|
1197
|
-
for p in $$list; do \
|
1198
|
-
$(am__strip_dir) \
|
1199
|
-
echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
|
1200
|
-
rm -f "$(DESTDIR)$(psdir)/$$f"; \
|
1201
|
-
done
|
1202
|
-
|
1203
|
-
dist-info: $(INFO_DEPS)
|
1204
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
1205
|
-
list='$(INFO_DEPS)'; \
|
1206
|
-
for base in $$list; do \
|
1207
|
-
case $$base in \
|
1208
|
-
$(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
|
1209
|
-
esac; \
|
1210
|
-
if test -f $$base; then d=.; else d=$(srcdir); fi; \
|
1211
|
-
base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
|
1212
|
-
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 \
|
1213
|
-
if test -f $$file; then \
|
1214
|
-
relfile=`expr "$$file" : "$$d/\(.*\)"`; \
|
1215
|
-
test -f "$(distdir)/$$relfile" || \
|
1216
|
-
cp -p $$file "$(distdir)/$$relfile"; \
|
1217
|
-
else :; fi; \
|
1218
|
-
done; \
|
1219
|
-
done
|
1220
|
-
|
1221
|
-
mostlyclean-aminfo:
|
1222
|
-
-rm -rf libffi.aux libffi.cp libffi.cps libffi.fn libffi.ky libffi.log \
|
1223
|
-
libffi.pg libffi.tmp libffi.toc libffi.tp libffi.vr
|
1224
|
-
|
1225
|
-
clean-aminfo:
|
1226
|
-
-test -z "doc/libffi.dvi doc/libffi.pdf doc/libffi.ps doc/libffi.html" \
|
1227
|
-
|| rm -rf doc/libffi.dvi doc/libffi.pdf doc/libffi.ps doc/libffi.html
|
1228
|
-
|
1229
|
-
maintainer-clean-aminfo:
|
1230
|
-
@list='$(INFO_DEPS)'; for i in $$list; do \
|
1231
|
-
i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
|
1232
|
-
echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
|
1233
|
-
rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
|
1234
|
-
done
|
1235
1385
|
install-pkgconfigDATA: $(pkgconfig_DATA)
|
1236
1386
|
@$(NORMAL_INSTALL)
|
1237
|
-
test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
|
1238
1387
|
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
1388
|
+
if test -n "$$list"; then \
|
1389
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
|
1390
|
+
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
|
1391
|
+
fi; \
|
1239
1392
|
for p in $$list; do \
|
1240
1393
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1241
1394
|
echo "$$d$$p"; \
|
@@ -1249,27 +1402,28 @@ uninstall-pkgconfigDATA:
|
|
1249
1402
|
@$(NORMAL_UNINSTALL)
|
1250
1403
|
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
1251
1404
|
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
1252
|
-
|
1253
|
-
echo " ( cd '$(DESTDIR)$(pkgconfigdir)' && rm -f" $$files ")"; \
|
1254
|
-
cd "$(DESTDIR)$(pkgconfigdir)" && rm -f $$files
|
1405
|
+
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
1255
1406
|
|
1256
1407
|
# This directory's subdirectories are mostly independent; you can cd
|
1257
|
-
# into them and run
|
1258
|
-
# To change the values of
|
1259
|
-
# (1) if the variable is set in
|
1260
|
-
# (which will cause the Makefiles to be regenerated when you run
|
1261
|
-
# (2) otherwise, pass the desired values on the
|
1262
|
-
$(
|
1263
|
-
@fail
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
done; \
|
1408
|
+
# into them and run 'make' without going through this Makefile.
|
1409
|
+
# To change the values of 'make' variables: instead of editing Makefiles,
|
1410
|
+
# (1) if the variable is set in 'config.status', edit 'config.status'
|
1411
|
+
# (which will cause the Makefiles to be regenerated when you run 'make');
|
1412
|
+
# (2) otherwise, pass the desired values on the 'make' command line.
|
1413
|
+
$(am__recursive_targets):
|
1414
|
+
@fail=; \
|
1415
|
+
if $(am__make_keepgoing); then \
|
1416
|
+
failcom='fail=yes'; \
|
1417
|
+
else \
|
1418
|
+
failcom='exit 1'; \
|
1419
|
+
fi; \
|
1270
1420
|
dot_seen=no; \
|
1271
1421
|
target=`echo $@ | sed s/-recursive//`; \
|
1272
|
-
|
1422
|
+
case "$@" in \
|
1423
|
+
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
1424
|
+
*) list='$(SUBDIRS)' ;; \
|
1425
|
+
esac; \
|
1426
|
+
for subdir in $$list; do \
|
1273
1427
|
echo "Making $$target in $$subdir"; \
|
1274
1428
|
if test "$$subdir" = "."; then \
|
1275
1429
|
dot_seen=yes; \
|
@@ -1284,57 +1438,12 @@ $(RECURSIVE_TARGETS):
|
|
1284
1438
|
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
|
1285
1439
|
fi; test -z "$$fail"
|
1286
1440
|
|
1287
|
-
$(
|
1288
|
-
|
1289
|
-
|
1290
|
-
|
1291
|
-
*=* | --[!k]*);; \
|
1292
|
-
*k*) failcom='fail=yes';; \
|
1293
|
-
esac; \
|
1294
|
-
done; \
|
1295
|
-
dot_seen=no; \
|
1296
|
-
case "$@" in \
|
1297
|
-
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
|
1298
|
-
*) list='$(SUBDIRS)' ;; \
|
1299
|
-
esac; \
|
1300
|
-
rev=''; for subdir in $$list; do \
|
1301
|
-
if test "$$subdir" = "."; then :; else \
|
1302
|
-
rev="$$subdir $$rev"; \
|
1303
|
-
fi; \
|
1304
|
-
done; \
|
1305
|
-
rev="$$rev ."; \
|
1306
|
-
target=`echo $@ | sed s/-recursive//`; \
|
1307
|
-
for subdir in $$rev; do \
|
1308
|
-
echo "Making $$target in $$subdir"; \
|
1309
|
-
if test "$$subdir" = "."; then \
|
1310
|
-
local_target="$$target-am"; \
|
1311
|
-
else \
|
1312
|
-
local_target="$$target"; \
|
1313
|
-
fi; \
|
1314
|
-
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|
1315
|
-
|| eval $$failcom; \
|
1316
|
-
done && test -z "$$fail"
|
1317
|
-
tags-recursive:
|
1318
|
-
list='$(SUBDIRS)'; for subdir in $$list; do \
|
1319
|
-
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
|
1320
|
-
done
|
1321
|
-
ctags-recursive:
|
1322
|
-
list='$(SUBDIRS)'; for subdir in $$list; do \
|
1323
|
-
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
|
1324
|
-
done
|
1441
|
+
ID: $(am__tagged_files)
|
1442
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
1443
|
+
tags: tags-recursive
|
1444
|
+
TAGS: tags
|
1325
1445
|
|
1326
|
-
|
1327
|
-
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
|
1328
|
-
unique=`for i in $$list; do \
|
1329
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1330
|
-
done | \
|
1331
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1332
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1333
|
-
mkid -fID $$unique
|
1334
|
-
tags: TAGS
|
1335
|
-
|
1336
|
-
TAGS: tags-recursive $(HEADERS) $(SOURCES) fficonfig.h.in $(TAGS_DEPENDENCIES) \
|
1337
|
-
$(TAGS_FILES) $(LISP)
|
1446
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
1338
1447
|
set x; \
|
1339
1448
|
here=`pwd`; \
|
1340
1449
|
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
|
@@ -1350,12 +1459,7 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) fficonfig.h.in $(TAGS_DEPENDENCIES) \
|
|
1350
1459
|
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
|
1351
1460
|
fi; \
|
1352
1461
|
done; \
|
1353
|
-
|
1354
|
-
unique=`for i in $$list; do \
|
1355
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1356
|
-
done | \
|
1357
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1358
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1462
|
+
$(am__define_uniq_tagged_files); \
|
1359
1463
|
shift; \
|
1360
1464
|
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
1361
1465
|
test -n "$$unique" || unique=$$empty_fix; \
|
@@ -1367,15 +1471,11 @@ TAGS: tags-recursive $(HEADERS) $(SOURCES) fficonfig.h.in $(TAGS_DEPENDENCIES) \
|
|
1367
1471
|
$$unique; \
|
1368
1472
|
fi; \
|
1369
1473
|
fi
|
1370
|
-
ctags:
|
1371
|
-
|
1372
|
-
|
1373
|
-
|
1374
|
-
|
1375
|
-
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
1376
|
-
done | \
|
1377
|
-
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
|
1378
|
-
END { if (nonempty) { for (i in files) print i; }; }'`; \
|
1474
|
+
ctags: ctags-recursive
|
1475
|
+
|
1476
|
+
CTAGS: ctags
|
1477
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
1478
|
+
$(am__define_uniq_tagged_files); \
|
1379
1479
|
test -z "$(CTAGS_ARGS)$$unique" \
|
1380
1480
|
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
1381
1481
|
$$unique
|
@@ -1384,11 +1484,35 @@ GTAGS:
|
|
1384
1484
|
here=`$(am__cd) $(top_builddir) && pwd` \
|
1385
1485
|
&& $(am__cd) $(top_srcdir) \
|
1386
1486
|
&& gtags -i $(GTAGS_ARGS) "$$here"
|
1487
|
+
cscope: cscope.files
|
1488
|
+
test ! -s cscope.files \
|
1489
|
+
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
1490
|
+
clean-cscope:
|
1491
|
+
-rm -f cscope.files
|
1492
|
+
cscope.files: clean-cscope cscopelist
|
1493
|
+
cscopelist: cscopelist-recursive
|
1494
|
+
|
1495
|
+
cscopelist-am: $(am__tagged_files)
|
1496
|
+
list='$(am__tagged_files)'; \
|
1497
|
+
case "$(srcdir)" in \
|
1498
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
1499
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
1500
|
+
esac; \
|
1501
|
+
for i in $$list; do \
|
1502
|
+
if test -f "$$i"; then \
|
1503
|
+
echo "$(subdir)/$$i"; \
|
1504
|
+
else \
|
1505
|
+
echo "$$sdir/$$i"; \
|
1506
|
+
fi; \
|
1507
|
+
done >> $(top_builddir)/cscope.files
|
1387
1508
|
|
1388
1509
|
distclean-tags:
|
1389
1510
|
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
1511
|
+
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
1512
|
+
distdir: $(BUILT_SOURCES)
|
1513
|
+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
1390
1514
|
|
1391
|
-
distdir: $(DISTFILES)
|
1515
|
+
distdir-am: $(DISTFILES)
|
1392
1516
|
$(am__remove_distdir)
|
1393
1517
|
test -d "$(distdir)" || mkdir "$(distdir)"
|
1394
1518
|
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
@@ -1422,13 +1546,10 @@ distdir: $(DISTFILES)
|
|
1422
1546
|
done
|
1423
1547
|
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
1424
1548
|
if test "$$subdir" = .; then :; else \
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
done
|
1430
|
-
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
|
1431
|
-
if test "$$subdir" = .; then :; else \
|
1549
|
+
$(am__make_dryrun) \
|
1550
|
+
|| test -d "$(distdir)/$$subdir" \
|
1551
|
+
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|
1552
|
+
|| exit 1; \
|
1432
1553
|
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
|
1433
1554
|
$(am__relativize); \
|
1434
1555
|
new_distdir=$$reldir; \
|
@@ -1450,7 +1571,7 @@ distdir: $(DISTFILES)
|
|
1450
1571
|
done
|
1451
1572
|
$(MAKE) $(AM_MAKEFLAGS) \
|
1452
1573
|
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
1453
|
-
dist-
|
1574
|
+
dist-hook
|
1454
1575
|
-test -n "$(am__skip_mode_fix)" \
|
1455
1576
|
|| find "$(distdir)" -type d ! -perm -755 \
|
1456
1577
|
-exec chmod u+rwx,go+rx {} \; -o \
|
@@ -1459,37 +1580,47 @@ distdir: $(DISTFILES)
|
|
1459
1580
|
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
1460
1581
|
|| chmod -R a+r "$(distdir)"
|
1461
1582
|
dist-gzip: distdir
|
1462
|
-
tardir=$(distdir) && $(am__tar) | GZIP
|
1463
|
-
$(
|
1583
|
+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
|
1584
|
+
$(am__post_remove_distdir)
|
1464
1585
|
|
1465
1586
|
dist-bzip2: distdir
|
1466
|
-
tardir=$(distdir) && $(am__tar) | bzip2 -
|
1467
|
-
$(
|
1587
|
+
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
1588
|
+
$(am__post_remove_distdir)
|
1468
1589
|
|
1469
|
-
dist-
|
1470
|
-
tardir=$(distdir) && $(am__tar) |
|
1471
|
-
$(
|
1590
|
+
dist-lzip: distdir
|
1591
|
+
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
1592
|
+
$(am__post_remove_distdir)
|
1472
1593
|
|
1473
1594
|
dist-xz: distdir
|
1474
|
-
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
|
1475
|
-
$(
|
1595
|
+
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
1596
|
+
$(am__post_remove_distdir)
|
1597
|
+
|
1598
|
+
dist-zstd: distdir
|
1599
|
+
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
|
1600
|
+
$(am__post_remove_distdir)
|
1476
1601
|
|
1477
1602
|
dist-tarZ: distdir
|
1603
|
+
@echo WARNING: "Support for distribution archives compressed with" \
|
1604
|
+
"legacy program 'compress' is deprecated." >&2
|
1605
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
1478
1606
|
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
1479
|
-
$(
|
1607
|
+
$(am__post_remove_distdir)
|
1480
1608
|
|
1481
1609
|
dist-shar: distdir
|
1482
|
-
|
1483
|
-
|
1610
|
+
@echo WARNING: "Support for shar distribution archives is" \
|
1611
|
+
"deprecated." >&2
|
1612
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
1613
|
+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
|
1614
|
+
$(am__post_remove_distdir)
|
1484
1615
|
|
1485
1616
|
dist-zip: distdir
|
1486
1617
|
-rm -f $(distdir).zip
|
1487
1618
|
zip -rq $(distdir).zip $(distdir)
|
1488
|
-
$(
|
1619
|
+
$(am__post_remove_distdir)
|
1489
1620
|
|
1490
|
-
dist dist-all:
|
1491
|
-
|
1492
|
-
$(
|
1621
|
+
dist dist-all:
|
1622
|
+
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
1623
|
+
$(am__post_remove_distdir)
|
1493
1624
|
|
1494
1625
|
# This target untars the dist file and tries a VPATH configuration. Then
|
1495
1626
|
# it guarantees that the distribution is self-contained by making another
|
@@ -1497,33 +1628,37 @@ dist dist-all: distdir
|
|
1497
1628
|
distcheck: dist
|
1498
1629
|
case '$(DIST_ARCHIVES)' in \
|
1499
1630
|
*.tar.gz*) \
|
1500
|
-
GZIP
|
1631
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
|
1501
1632
|
*.tar.bz2*) \
|
1502
1633
|
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
1503
|
-
*.tar.
|
1504
|
-
|
1634
|
+
*.tar.lz*) \
|
1635
|
+
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
1505
1636
|
*.tar.xz*) \
|
1506
1637
|
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
1507
1638
|
*.tar.Z*) \
|
1508
1639
|
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
1509
1640
|
*.shar.gz*) \
|
1510
|
-
GZIP
|
1641
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
1511
1642
|
*.zip*) \
|
1512
1643
|
unzip $(distdir).zip ;;\
|
1644
|
+
*.tar.zst*) \
|
1645
|
+
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
|
1513
1646
|
esac
|
1514
|
-
chmod -R a-w $(distdir)
|
1515
|
-
|
1516
|
-
mkdir $(distdir)/_inst
|
1647
|
+
chmod -R a-w $(distdir)
|
1648
|
+
chmod u+w $(distdir)
|
1649
|
+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
1517
1650
|
chmod a-w $(distdir)
|
1518
1651
|
test -d $(distdir)/_build || exit 0; \
|
1519
1652
|
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
1520
1653
|
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
1521
1654
|
&& am__cwd=`pwd` \
|
1522
|
-
&& $(am__cd) $(distdir)/_build \
|
1523
|
-
&&
|
1655
|
+
&& $(am__cd) $(distdir)/_build/sub \
|
1656
|
+
&& ../../configure \
|
1657
|
+
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
1524
1658
|
$(DISTCHECK_CONFIGURE_FLAGS) \
|
1659
|
+
--srcdir=../.. --prefix="$$dc_install_base" \
|
1525
1660
|
&& $(MAKE) $(AM_MAKEFLAGS) \
|
1526
|
-
&& $(MAKE) $(AM_MAKEFLAGS)
|
1661
|
+
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
|
1527
1662
|
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
1528
1663
|
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
1529
1664
|
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
@@ -1544,13 +1679,21 @@ distcheck: dist
|
|
1544
1679
|
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
1545
1680
|
&& cd "$$am__cwd" \
|
1546
1681
|
|| exit 1
|
1547
|
-
$(
|
1682
|
+
$(am__post_remove_distdir)
|
1548
1683
|
@(echo "$(distdir) archives ready for distribution: "; \
|
1549
1684
|
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
1550
1685
|
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
1551
1686
|
distuninstallcheck:
|
1552
|
-
|
1553
|
-
|
1687
|
+
@test -n '$(distuninstallcheck_dir)' || { \
|
1688
|
+
echo 'ERROR: trying to run $@ with an empty' \
|
1689
|
+
'$$(distuninstallcheck_dir)' >&2; \
|
1690
|
+
exit 1; \
|
1691
|
+
}; \
|
1692
|
+
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
1693
|
+
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
1694
|
+
exit 1; \
|
1695
|
+
}; \
|
1696
|
+
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
1554
1697
|
|| { echo "ERROR: files left after uninstall:" ; \
|
1555
1698
|
if test -n "$(DESTDIR)"; then \
|
1556
1699
|
echo " (check DESTDIR support)"; \
|
@@ -1568,10 +1711,10 @@ distcleancheck: distclean
|
|
1568
1711
|
exit 1; } >&2
|
1569
1712
|
check-am: all-am
|
1570
1713
|
check: check-recursive
|
1571
|
-
all-am: Makefile $(
|
1714
|
+
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS) fficonfig.h
|
1572
1715
|
installdirs: installdirs-recursive
|
1573
1716
|
installdirs-am:
|
1574
|
-
for dir in "$(DESTDIR)$(
|
1717
|
+
for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(pkgconfigdir)"; do \
|
1575
1718
|
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
1576
1719
|
done
|
1577
1720
|
install: install-recursive
|
@@ -1584,10 +1727,15 @@ install-am: all-am
|
|
1584
1727
|
|
1585
1728
|
installcheck: installcheck-recursive
|
1586
1729
|
install-strip:
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1730
|
+
if test -z '$(STRIP)'; then \
|
1731
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1732
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1733
|
+
install; \
|
1734
|
+
else \
|
1735
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
1736
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
1737
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
1738
|
+
fi
|
1591
1739
|
mostlyclean-generic:
|
1592
1740
|
|
1593
1741
|
clean-generic:
|
@@ -1595,31 +1743,56 @@ clean-generic:
|
|
1595
1743
|
distclean-generic:
|
1596
1744
|
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
1597
1745
|
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
1598
|
-
-rm -f doc/$(am__dirstamp)
|
1599
1746
|
-rm -f src/$(DEPDIR)/$(am__dirstamp)
|
1600
1747
|
-rm -f src/$(am__dirstamp)
|
1748
|
+
-rm -f src/aarch64/$(DEPDIR)/$(am__dirstamp)
|
1749
|
+
-rm -f src/aarch64/$(am__dirstamp)
|
1601
1750
|
-rm -f src/alpha/$(DEPDIR)/$(am__dirstamp)
|
1602
1751
|
-rm -f src/alpha/$(am__dirstamp)
|
1752
|
+
-rm -f src/arc/$(DEPDIR)/$(am__dirstamp)
|
1753
|
+
-rm -f src/arc/$(am__dirstamp)
|
1603
1754
|
-rm -f src/arm/$(DEPDIR)/$(am__dirstamp)
|
1604
1755
|
-rm -f src/arm/$(am__dirstamp)
|
1605
1756
|
-rm -f src/avr32/$(DEPDIR)/$(am__dirstamp)
|
1606
1757
|
-rm -f src/avr32/$(am__dirstamp)
|
1758
|
+
-rm -f src/bfin/$(DEPDIR)/$(am__dirstamp)
|
1759
|
+
-rm -f src/bfin/$(am__dirstamp)
|
1607
1760
|
-rm -f src/cris/$(DEPDIR)/$(am__dirstamp)
|
1608
1761
|
-rm -f src/cris/$(am__dirstamp)
|
1762
|
+
-rm -f src/csky/$(DEPDIR)/$(am__dirstamp)
|
1763
|
+
-rm -f src/csky/$(am__dirstamp)
|
1609
1764
|
-rm -f src/frv/$(DEPDIR)/$(am__dirstamp)
|
1610
1765
|
-rm -f src/frv/$(am__dirstamp)
|
1611
1766
|
-rm -f src/ia64/$(DEPDIR)/$(am__dirstamp)
|
1612
1767
|
-rm -f src/ia64/$(am__dirstamp)
|
1768
|
+
-rm -f src/kvx/$(DEPDIR)/$(am__dirstamp)
|
1769
|
+
-rm -f src/kvx/$(am__dirstamp)
|
1770
|
+
-rm -f src/loongarch64/$(DEPDIR)/$(am__dirstamp)
|
1771
|
+
-rm -f src/loongarch64/$(am__dirstamp)
|
1613
1772
|
-rm -f src/m32r/$(DEPDIR)/$(am__dirstamp)
|
1614
1773
|
-rm -f src/m32r/$(am__dirstamp)
|
1615
1774
|
-rm -f src/m68k/$(DEPDIR)/$(am__dirstamp)
|
1616
1775
|
-rm -f src/m68k/$(am__dirstamp)
|
1776
|
+
-rm -f src/m88k/$(DEPDIR)/$(am__dirstamp)
|
1777
|
+
-rm -f src/m88k/$(am__dirstamp)
|
1778
|
+
-rm -f src/metag/$(DEPDIR)/$(am__dirstamp)
|
1779
|
+
-rm -f src/metag/$(am__dirstamp)
|
1780
|
+
-rm -f src/microblaze/$(DEPDIR)/$(am__dirstamp)
|
1781
|
+
-rm -f src/microblaze/$(am__dirstamp)
|
1617
1782
|
-rm -f src/mips/$(DEPDIR)/$(am__dirstamp)
|
1618
1783
|
-rm -f src/mips/$(am__dirstamp)
|
1784
|
+
-rm -f src/moxie/$(DEPDIR)/$(am__dirstamp)
|
1785
|
+
-rm -f src/moxie/$(am__dirstamp)
|
1786
|
+
-rm -f src/nios2/$(DEPDIR)/$(am__dirstamp)
|
1787
|
+
-rm -f src/nios2/$(am__dirstamp)
|
1788
|
+
-rm -f src/or1k/$(DEPDIR)/$(am__dirstamp)
|
1789
|
+
-rm -f src/or1k/$(am__dirstamp)
|
1619
1790
|
-rm -f src/pa/$(DEPDIR)/$(am__dirstamp)
|
1620
1791
|
-rm -f src/pa/$(am__dirstamp)
|
1621
1792
|
-rm -f src/powerpc/$(DEPDIR)/$(am__dirstamp)
|
1622
1793
|
-rm -f src/powerpc/$(am__dirstamp)
|
1794
|
+
-rm -f src/riscv/$(DEPDIR)/$(am__dirstamp)
|
1795
|
+
-rm -f src/riscv/$(am__dirstamp)
|
1623
1796
|
-rm -f src/s390/$(DEPDIR)/$(am__dirstamp)
|
1624
1797
|
-rm -f src/s390/$(am__dirstamp)
|
1625
1798
|
-rm -f src/sh/$(DEPDIR)/$(am__dirstamp)
|
@@ -1628,192 +1801,326 @@ distclean-generic:
|
|
1628
1801
|
-rm -f src/sh64/$(am__dirstamp)
|
1629
1802
|
-rm -f src/sparc/$(DEPDIR)/$(am__dirstamp)
|
1630
1803
|
-rm -f src/sparc/$(am__dirstamp)
|
1804
|
+
-rm -f src/tile/$(DEPDIR)/$(am__dirstamp)
|
1805
|
+
-rm -f src/tile/$(am__dirstamp)
|
1806
|
+
-rm -f src/vax/$(DEPDIR)/$(am__dirstamp)
|
1807
|
+
-rm -f src/vax/$(am__dirstamp)
|
1808
|
+
-rm -f src/wasm32/$(DEPDIR)/$(am__dirstamp)
|
1809
|
+
-rm -f src/wasm32/$(am__dirstamp)
|
1631
1810
|
-rm -f src/x86/$(DEPDIR)/$(am__dirstamp)
|
1632
1811
|
-rm -f src/x86/$(am__dirstamp)
|
1812
|
+
-rm -f src/xtensa/$(DEPDIR)/$(am__dirstamp)
|
1813
|
+
-rm -f src/xtensa/$(am__dirstamp)
|
1814
|
+
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
|
1633
1815
|
|
1634
1816
|
maintainer-clean-generic:
|
1635
1817
|
@echo "This command is intended for maintainers to use"
|
1636
1818
|
@echo "it deletes files that may require special tools to rebuild."
|
1637
1819
|
clean: clean-recursive
|
1638
1820
|
|
1639
|
-
clean-am: clean-
|
1640
|
-
clean-
|
1821
|
+
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
1822
|
+
clean-toolexeclibLTLIBRARIES mostlyclean-am
|
1641
1823
|
|
1642
1824
|
distclean: distclean-recursive
|
1643
1825
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1644
|
-
|
1826
|
+
-rm -f src/$(DEPDIR)/closures.Plo
|
1827
|
+
-rm -f src/$(DEPDIR)/debug.Plo
|
1828
|
+
-rm -f src/$(DEPDIR)/java_raw_api.Plo
|
1829
|
+
-rm -f src/$(DEPDIR)/prep_cif.Plo
|
1830
|
+
-rm -f src/$(DEPDIR)/raw_api.Plo
|
1831
|
+
-rm -f src/$(DEPDIR)/tramp.Plo
|
1832
|
+
-rm -f src/$(DEPDIR)/types.Plo
|
1833
|
+
-rm -f src/aarch64/$(DEPDIR)/ffi.Plo
|
1834
|
+
-rm -f src/aarch64/$(DEPDIR)/sysv.Plo
|
1835
|
+
-rm -f src/aarch64/$(DEPDIR)/win64_armasm.Plo
|
1836
|
+
-rm -f src/alpha/$(DEPDIR)/ffi.Plo
|
1837
|
+
-rm -f src/alpha/$(DEPDIR)/osf.Plo
|
1838
|
+
-rm -f src/arc/$(DEPDIR)/arcompact.Plo
|
1839
|
+
-rm -f src/arc/$(DEPDIR)/ffi.Plo
|
1840
|
+
-rm -f src/arm/$(DEPDIR)/ffi.Plo
|
1841
|
+
-rm -f src/arm/$(DEPDIR)/sysv.Plo
|
1842
|
+
-rm -f src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo
|
1843
|
+
-rm -f src/avr32/$(DEPDIR)/ffi.Plo
|
1844
|
+
-rm -f src/avr32/$(DEPDIR)/sysv.Plo
|
1845
|
+
-rm -f src/bfin/$(DEPDIR)/ffi.Plo
|
1846
|
+
-rm -f src/bfin/$(DEPDIR)/sysv.Plo
|
1847
|
+
-rm -f src/cris/$(DEPDIR)/ffi.Plo
|
1848
|
+
-rm -f src/cris/$(DEPDIR)/sysv.Plo
|
1849
|
+
-rm -f src/csky/$(DEPDIR)/ffi.Plo
|
1850
|
+
-rm -f src/csky/$(DEPDIR)/sysv.Plo
|
1851
|
+
-rm -f src/frv/$(DEPDIR)/eabi.Plo
|
1852
|
+
-rm -f src/frv/$(DEPDIR)/ffi.Plo
|
1853
|
+
-rm -f src/ia64/$(DEPDIR)/ffi.Plo
|
1854
|
+
-rm -f src/ia64/$(DEPDIR)/unix.Plo
|
1855
|
+
-rm -f src/kvx/$(DEPDIR)/ffi.Plo
|
1856
|
+
-rm -f src/kvx/$(DEPDIR)/sysv.Plo
|
1857
|
+
-rm -f src/loongarch64/$(DEPDIR)/ffi.Plo
|
1858
|
+
-rm -f src/loongarch64/$(DEPDIR)/sysv.Plo
|
1859
|
+
-rm -f src/m32r/$(DEPDIR)/ffi.Plo
|
1860
|
+
-rm -f src/m32r/$(DEPDIR)/sysv.Plo
|
1861
|
+
-rm -f src/m68k/$(DEPDIR)/ffi.Plo
|
1862
|
+
-rm -f src/m68k/$(DEPDIR)/sysv.Plo
|
1863
|
+
-rm -f src/m88k/$(DEPDIR)/ffi.Plo
|
1864
|
+
-rm -f src/m88k/$(DEPDIR)/obsd.Plo
|
1865
|
+
-rm -f src/metag/$(DEPDIR)/ffi.Plo
|
1866
|
+
-rm -f src/metag/$(DEPDIR)/sysv.Plo
|
1867
|
+
-rm -f src/microblaze/$(DEPDIR)/ffi.Plo
|
1868
|
+
-rm -f src/microblaze/$(DEPDIR)/sysv.Plo
|
1869
|
+
-rm -f src/mips/$(DEPDIR)/ffi.Plo
|
1870
|
+
-rm -f src/mips/$(DEPDIR)/n32.Plo
|
1871
|
+
-rm -f src/mips/$(DEPDIR)/o32.Plo
|
1872
|
+
-rm -f src/moxie/$(DEPDIR)/eabi.Plo
|
1873
|
+
-rm -f src/moxie/$(DEPDIR)/ffi.Plo
|
1874
|
+
-rm -f src/nios2/$(DEPDIR)/ffi.Plo
|
1875
|
+
-rm -f src/nios2/$(DEPDIR)/sysv.Plo
|
1876
|
+
-rm -f src/or1k/$(DEPDIR)/ffi.Plo
|
1877
|
+
-rm -f src/or1k/$(DEPDIR)/sysv.Plo
|
1878
|
+
-rm -f src/pa/$(DEPDIR)/ffi.Plo
|
1879
|
+
-rm -f src/pa/$(DEPDIR)/hpux32.Plo
|
1880
|
+
-rm -f src/pa/$(DEPDIR)/hpux64.Plo
|
1881
|
+
-rm -f src/pa/$(DEPDIR)/linux.Plo
|
1882
|
+
-rm -f src/powerpc/$(DEPDIR)/aix.Plo
|
1883
|
+
-rm -f src/powerpc/$(DEPDIR)/aix_closure.Plo
|
1884
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin.Plo
|
1885
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin_closure.Plo
|
1886
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi.Plo
|
1887
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_darwin.Plo
|
1888
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_linux64.Plo
|
1889
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_sysv.Plo
|
1890
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64.Plo
|
1891
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64_closure.Plo
|
1892
|
+
-rm -f src/powerpc/$(DEPDIR)/ppc_closure.Plo
|
1893
|
+
-rm -f src/powerpc/$(DEPDIR)/sysv.Plo
|
1894
|
+
-rm -f src/riscv/$(DEPDIR)/ffi.Plo
|
1895
|
+
-rm -f src/riscv/$(DEPDIR)/sysv.Plo
|
1896
|
+
-rm -f src/s390/$(DEPDIR)/ffi.Plo
|
1897
|
+
-rm -f src/s390/$(DEPDIR)/sysv.Plo
|
1898
|
+
-rm -f src/sh/$(DEPDIR)/ffi.Plo
|
1899
|
+
-rm -f src/sh/$(DEPDIR)/sysv.Plo
|
1900
|
+
-rm -f src/sh64/$(DEPDIR)/ffi.Plo
|
1901
|
+
-rm -f src/sh64/$(DEPDIR)/sysv.Plo
|
1902
|
+
-rm -f src/sparc/$(DEPDIR)/ffi.Plo
|
1903
|
+
-rm -f src/sparc/$(DEPDIR)/ffi64.Plo
|
1904
|
+
-rm -f src/sparc/$(DEPDIR)/v8.Plo
|
1905
|
+
-rm -f src/sparc/$(DEPDIR)/v9.Plo
|
1906
|
+
-rm -f src/tile/$(DEPDIR)/ffi.Plo
|
1907
|
+
-rm -f src/tile/$(DEPDIR)/tile.Plo
|
1908
|
+
-rm -f src/vax/$(DEPDIR)/elfbsd.Plo
|
1909
|
+
-rm -f src/vax/$(DEPDIR)/ffi.Plo
|
1910
|
+
-rm -f src/wasm32/$(DEPDIR)/ffi.Plo
|
1911
|
+
-rm -f src/x86/$(DEPDIR)/ffi.Plo
|
1912
|
+
-rm -f src/x86/$(DEPDIR)/ffi64.Plo
|
1913
|
+
-rm -f src/x86/$(DEPDIR)/ffiw64.Plo
|
1914
|
+
-rm -f src/x86/$(DEPDIR)/sysv.Plo
|
1915
|
+
-rm -f src/x86/$(DEPDIR)/sysv_intel.Plo
|
1916
|
+
-rm -f src/x86/$(DEPDIR)/unix64.Plo
|
1917
|
+
-rm -f src/x86/$(DEPDIR)/win64.Plo
|
1918
|
+
-rm -f src/x86/$(DEPDIR)/win64_intel.Plo
|
1919
|
+
-rm -f src/xtensa/$(DEPDIR)/ffi.Plo
|
1920
|
+
-rm -f src/xtensa/$(DEPDIR)/sysv.Plo
|
1645
1921
|
-rm -f Makefile
|
1646
1922
|
distclean-am: clean-am distclean-compile distclean-generic \
|
1647
1923
|
distclean-hdr distclean-libtool distclean-tags
|
1648
1924
|
|
1649
1925
|
dvi: dvi-recursive
|
1650
1926
|
|
1651
|
-
dvi-am:
|
1927
|
+
dvi-am:
|
1652
1928
|
|
1653
1929
|
html: html-recursive
|
1654
1930
|
|
1655
|
-
html-am:
|
1931
|
+
html-am:
|
1656
1932
|
|
1657
1933
|
info: info-recursive
|
1658
1934
|
|
1659
|
-
info-am:
|
1935
|
+
info-am:
|
1660
1936
|
|
1661
|
-
install-data-am: install-
|
1937
|
+
install-data-am: install-pkgconfigDATA
|
1662
1938
|
|
1663
1939
|
install-dvi: install-dvi-recursive
|
1664
1940
|
|
1665
|
-
install-dvi-am:
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
done | $(am__base_list) | \
|
1673
|
-
while read files; do \
|
1674
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
|
1675
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
|
1676
|
-
done
|
1677
|
-
install-exec-am: install-libLTLIBRARIES
|
1941
|
+
install-dvi-am:
|
1942
|
+
|
1943
|
+
install-exec-am: install-toolexeclibLTLIBRARIES
|
1944
|
+
|
1945
|
+
install-html: install-html-recursive
|
1946
|
+
|
1947
|
+
install-html-am:
|
1678
1948
|
|
1679
|
-
install-html-am: $(HTMLS)
|
1680
|
-
@$(NORMAL_INSTALL)
|
1681
|
-
test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
|
1682
|
-
@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
|
1683
|
-
for p in $$list; do \
|
1684
|
-
if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1685
|
-
$(am__strip_dir) \
|
1686
|
-
if test -d "$$d$$p"; then \
|
1687
|
-
echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
|
1688
|
-
$(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
|
1689
|
-
echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
|
1690
|
-
$(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
|
1691
|
-
else \
|
1692
|
-
list2="$$list2 $$d$$p"; \
|
1693
|
-
fi; \
|
1694
|
-
done; \
|
1695
|
-
test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
|
1696
|
-
while read files; do \
|
1697
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
|
1698
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
|
1699
|
-
done; }
|
1700
1949
|
install-info: install-info-recursive
|
1701
1950
|
|
1702
|
-
install-info-am:
|
1703
|
-
|
1704
|
-
test -z "$(infodir)" || $(MKDIR_P) "$(DESTDIR)$(infodir)"
|
1705
|
-
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
|
1706
|
-
list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
|
1707
|
-
for file in $$list; do \
|
1708
|
-
case $$file in \
|
1709
|
-
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
|
1710
|
-
esac; \
|
1711
|
-
if test -f $$file; then d=.; else d=$(srcdir); fi; \
|
1712
|
-
file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
|
1713
|
-
for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
|
1714
|
-
$$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
|
1715
|
-
if test -f $$ifile; then \
|
1716
|
-
echo "$$ifile"; \
|
1717
|
-
else : ; fi; \
|
1718
|
-
done; \
|
1719
|
-
done | $(am__base_list) | \
|
1720
|
-
while read files; do \
|
1721
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
|
1722
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
|
1723
|
-
@$(POST_INSTALL)
|
1724
|
-
@if (install-info --version && \
|
1725
|
-
install-info --version 2>&1 | sed 1q | grep -i -v debian) >/dev/null 2>&1; then \
|
1726
|
-
list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
|
1727
|
-
for file in $$list; do \
|
1728
|
-
relfile=`echo "$$file" | sed 's|^.*/||'`; \
|
1729
|
-
echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
|
1730
|
-
install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
|
1731
|
-
done; \
|
1732
|
-
else : ; fi
|
1951
|
+
install-info-am:
|
1952
|
+
|
1733
1953
|
install-man:
|
1734
1954
|
|
1735
|
-
install-pdf
|
1736
|
-
|
1737
|
-
|
1738
|
-
|
1739
|
-
for p in $$list; do \
|
1740
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1741
|
-
echo "$$d$$p"; \
|
1742
|
-
done | $(am__base_list) | \
|
1743
|
-
while read files; do \
|
1744
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
|
1745
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
|
1955
|
+
install-pdf: install-pdf-recursive
|
1956
|
+
|
1957
|
+
install-pdf-am:
|
1958
|
+
|
1746
1959
|
install-ps: install-ps-recursive
|
1747
1960
|
|
1748
|
-
install-ps-am:
|
1749
|
-
|
1750
|
-
test -z "$(psdir)" || $(MKDIR_P) "$(DESTDIR)$(psdir)"
|
1751
|
-
@list='$(PSS)'; test -n "$(psdir)" || list=; \
|
1752
|
-
for p in $$list; do \
|
1753
|
-
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
1754
|
-
echo "$$d$$p"; \
|
1755
|
-
done | $(am__base_list) | \
|
1756
|
-
while read files; do \
|
1757
|
-
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
|
1758
|
-
$(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
|
1961
|
+
install-ps-am:
|
1962
|
+
|
1759
1963
|
installcheck-am:
|
1760
1964
|
|
1761
1965
|
maintainer-clean: maintainer-clean-recursive
|
1762
1966
|
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
1763
1967
|
-rm -rf $(top_srcdir)/autom4te.cache
|
1764
|
-
|
1968
|
+
-rm -f src/$(DEPDIR)/closures.Plo
|
1969
|
+
-rm -f src/$(DEPDIR)/debug.Plo
|
1970
|
+
-rm -f src/$(DEPDIR)/java_raw_api.Plo
|
1971
|
+
-rm -f src/$(DEPDIR)/prep_cif.Plo
|
1972
|
+
-rm -f src/$(DEPDIR)/raw_api.Plo
|
1973
|
+
-rm -f src/$(DEPDIR)/tramp.Plo
|
1974
|
+
-rm -f src/$(DEPDIR)/types.Plo
|
1975
|
+
-rm -f src/aarch64/$(DEPDIR)/ffi.Plo
|
1976
|
+
-rm -f src/aarch64/$(DEPDIR)/sysv.Plo
|
1977
|
+
-rm -f src/aarch64/$(DEPDIR)/win64_armasm.Plo
|
1978
|
+
-rm -f src/alpha/$(DEPDIR)/ffi.Plo
|
1979
|
+
-rm -f src/alpha/$(DEPDIR)/osf.Plo
|
1980
|
+
-rm -f src/arc/$(DEPDIR)/arcompact.Plo
|
1981
|
+
-rm -f src/arc/$(DEPDIR)/ffi.Plo
|
1982
|
+
-rm -f src/arm/$(DEPDIR)/ffi.Plo
|
1983
|
+
-rm -f src/arm/$(DEPDIR)/sysv.Plo
|
1984
|
+
-rm -f src/arm/$(DEPDIR)/sysv_msvc_arm32.Plo
|
1985
|
+
-rm -f src/avr32/$(DEPDIR)/ffi.Plo
|
1986
|
+
-rm -f src/avr32/$(DEPDIR)/sysv.Plo
|
1987
|
+
-rm -f src/bfin/$(DEPDIR)/ffi.Plo
|
1988
|
+
-rm -f src/bfin/$(DEPDIR)/sysv.Plo
|
1989
|
+
-rm -f src/cris/$(DEPDIR)/ffi.Plo
|
1990
|
+
-rm -f src/cris/$(DEPDIR)/sysv.Plo
|
1991
|
+
-rm -f src/csky/$(DEPDIR)/ffi.Plo
|
1992
|
+
-rm -f src/csky/$(DEPDIR)/sysv.Plo
|
1993
|
+
-rm -f src/frv/$(DEPDIR)/eabi.Plo
|
1994
|
+
-rm -f src/frv/$(DEPDIR)/ffi.Plo
|
1995
|
+
-rm -f src/ia64/$(DEPDIR)/ffi.Plo
|
1996
|
+
-rm -f src/ia64/$(DEPDIR)/unix.Plo
|
1997
|
+
-rm -f src/kvx/$(DEPDIR)/ffi.Plo
|
1998
|
+
-rm -f src/kvx/$(DEPDIR)/sysv.Plo
|
1999
|
+
-rm -f src/loongarch64/$(DEPDIR)/ffi.Plo
|
2000
|
+
-rm -f src/loongarch64/$(DEPDIR)/sysv.Plo
|
2001
|
+
-rm -f src/m32r/$(DEPDIR)/ffi.Plo
|
2002
|
+
-rm -f src/m32r/$(DEPDIR)/sysv.Plo
|
2003
|
+
-rm -f src/m68k/$(DEPDIR)/ffi.Plo
|
2004
|
+
-rm -f src/m68k/$(DEPDIR)/sysv.Plo
|
2005
|
+
-rm -f src/m88k/$(DEPDIR)/ffi.Plo
|
2006
|
+
-rm -f src/m88k/$(DEPDIR)/obsd.Plo
|
2007
|
+
-rm -f src/metag/$(DEPDIR)/ffi.Plo
|
2008
|
+
-rm -f src/metag/$(DEPDIR)/sysv.Plo
|
2009
|
+
-rm -f src/microblaze/$(DEPDIR)/ffi.Plo
|
2010
|
+
-rm -f src/microblaze/$(DEPDIR)/sysv.Plo
|
2011
|
+
-rm -f src/mips/$(DEPDIR)/ffi.Plo
|
2012
|
+
-rm -f src/mips/$(DEPDIR)/n32.Plo
|
2013
|
+
-rm -f src/mips/$(DEPDIR)/o32.Plo
|
2014
|
+
-rm -f src/moxie/$(DEPDIR)/eabi.Plo
|
2015
|
+
-rm -f src/moxie/$(DEPDIR)/ffi.Plo
|
2016
|
+
-rm -f src/nios2/$(DEPDIR)/ffi.Plo
|
2017
|
+
-rm -f src/nios2/$(DEPDIR)/sysv.Plo
|
2018
|
+
-rm -f src/or1k/$(DEPDIR)/ffi.Plo
|
2019
|
+
-rm -f src/or1k/$(DEPDIR)/sysv.Plo
|
2020
|
+
-rm -f src/pa/$(DEPDIR)/ffi.Plo
|
2021
|
+
-rm -f src/pa/$(DEPDIR)/hpux32.Plo
|
2022
|
+
-rm -f src/pa/$(DEPDIR)/hpux64.Plo
|
2023
|
+
-rm -f src/pa/$(DEPDIR)/linux.Plo
|
2024
|
+
-rm -f src/powerpc/$(DEPDIR)/aix.Plo
|
2025
|
+
-rm -f src/powerpc/$(DEPDIR)/aix_closure.Plo
|
2026
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin.Plo
|
2027
|
+
-rm -f src/powerpc/$(DEPDIR)/darwin_closure.Plo
|
2028
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi.Plo
|
2029
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_darwin.Plo
|
2030
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_linux64.Plo
|
2031
|
+
-rm -f src/powerpc/$(DEPDIR)/ffi_sysv.Plo
|
2032
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64.Plo
|
2033
|
+
-rm -f src/powerpc/$(DEPDIR)/linux64_closure.Plo
|
2034
|
+
-rm -f src/powerpc/$(DEPDIR)/ppc_closure.Plo
|
2035
|
+
-rm -f src/powerpc/$(DEPDIR)/sysv.Plo
|
2036
|
+
-rm -f src/riscv/$(DEPDIR)/ffi.Plo
|
2037
|
+
-rm -f src/riscv/$(DEPDIR)/sysv.Plo
|
2038
|
+
-rm -f src/s390/$(DEPDIR)/ffi.Plo
|
2039
|
+
-rm -f src/s390/$(DEPDIR)/sysv.Plo
|
2040
|
+
-rm -f src/sh/$(DEPDIR)/ffi.Plo
|
2041
|
+
-rm -f src/sh/$(DEPDIR)/sysv.Plo
|
2042
|
+
-rm -f src/sh64/$(DEPDIR)/ffi.Plo
|
2043
|
+
-rm -f src/sh64/$(DEPDIR)/sysv.Plo
|
2044
|
+
-rm -f src/sparc/$(DEPDIR)/ffi.Plo
|
2045
|
+
-rm -f src/sparc/$(DEPDIR)/ffi64.Plo
|
2046
|
+
-rm -f src/sparc/$(DEPDIR)/v8.Plo
|
2047
|
+
-rm -f src/sparc/$(DEPDIR)/v9.Plo
|
2048
|
+
-rm -f src/tile/$(DEPDIR)/ffi.Plo
|
2049
|
+
-rm -f src/tile/$(DEPDIR)/tile.Plo
|
2050
|
+
-rm -f src/vax/$(DEPDIR)/elfbsd.Plo
|
2051
|
+
-rm -f src/vax/$(DEPDIR)/ffi.Plo
|
2052
|
+
-rm -f src/wasm32/$(DEPDIR)/ffi.Plo
|
2053
|
+
-rm -f src/x86/$(DEPDIR)/ffi.Plo
|
2054
|
+
-rm -f src/x86/$(DEPDIR)/ffi64.Plo
|
2055
|
+
-rm -f src/x86/$(DEPDIR)/ffiw64.Plo
|
2056
|
+
-rm -f src/x86/$(DEPDIR)/sysv.Plo
|
2057
|
+
-rm -f src/x86/$(DEPDIR)/sysv_intel.Plo
|
2058
|
+
-rm -f src/x86/$(DEPDIR)/unix64.Plo
|
2059
|
+
-rm -f src/x86/$(DEPDIR)/win64.Plo
|
2060
|
+
-rm -f src/x86/$(DEPDIR)/win64_intel.Plo
|
2061
|
+
-rm -f src/xtensa/$(DEPDIR)/ffi.Plo
|
2062
|
+
-rm -f src/xtensa/$(DEPDIR)/sysv.Plo
|
1765
2063
|
-rm -f Makefile
|
1766
|
-
maintainer-clean-am: distclean-am maintainer-clean-
|
1767
|
-
maintainer-clean-generic maintainer-clean-vti
|
2064
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
1768
2065
|
|
1769
2066
|
mostlyclean: mostlyclean-recursive
|
1770
2067
|
|
1771
|
-
mostlyclean-am: mostlyclean-
|
1772
|
-
mostlyclean-
|
2068
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
2069
|
+
mostlyclean-libtool
|
1773
2070
|
|
1774
2071
|
pdf: pdf-recursive
|
1775
2072
|
|
1776
|
-
pdf-am:
|
2073
|
+
pdf-am:
|
1777
2074
|
|
1778
2075
|
ps: ps-recursive
|
1779
2076
|
|
1780
|
-
ps-am:
|
1781
|
-
|
1782
|
-
uninstall-am: uninstall-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
.
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
install-data install-data-am install-dvi install-dvi-am \
|
1799
|
-
install-exec install-exec-am install-html install-html-am \
|
1800
|
-
install-info install-info-am install-libLTLIBRARIES \
|
2077
|
+
ps-am:
|
2078
|
+
|
2079
|
+
uninstall-am: uninstall-pkgconfigDATA uninstall-toolexeclibLTLIBRARIES
|
2080
|
+
|
2081
|
+
.MAKE: $(am__recursive_targets) all install-am install-strip
|
2082
|
+
|
2083
|
+
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
|
2084
|
+
am--depfiles am--refresh check check-am clean clean-cscope \
|
2085
|
+
clean-generic clean-libtool clean-noinstLTLIBRARIES \
|
2086
|
+
clean-toolexeclibLTLIBRARIES cscope cscopelist-am ctags \
|
2087
|
+
ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
|
2088
|
+
dist-lzip dist-shar dist-tarZ dist-xz dist-zip dist-zstd \
|
2089
|
+
distcheck distclean distclean-compile distclean-generic \
|
2090
|
+
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
2091
|
+
distdir distuninstallcheck dvi dvi-am html html-am info \
|
2092
|
+
info-am install install-am install-data install-data-am \
|
2093
|
+
install-dvi install-dvi-am install-exec install-exec-am \
|
2094
|
+
install-html install-html-am install-info install-info-am \
|
1801
2095
|
install-man install-pdf install-pdf-am install-pkgconfigDATA \
|
1802
|
-
install-ps install-ps-am install-strip
|
1803
|
-
|
1804
|
-
|
1805
|
-
maintainer-clean-
|
1806
|
-
mostlyclean-
|
1807
|
-
|
1808
|
-
uninstall
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
.
|
1815
|
-
|
1816
|
-
|
2096
|
+
install-ps install-ps-am install-strip \
|
2097
|
+
install-toolexeclibLTLIBRARIES installcheck installcheck-am \
|
2098
|
+
installdirs installdirs-am maintainer-clean \
|
2099
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
2100
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
2101
|
+
tags tags-am uninstall uninstall-am uninstall-pkgconfigDATA \
|
2102
|
+
uninstall-toolexeclibLTLIBRARIES
|
2103
|
+
|
2104
|
+
.PRECIOUS: Makefile
|
2105
|
+
|
2106
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@libffi.map-sun : libffi.map $(top_srcdir)/make_sunver.pl \
|
2107
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ $(libffi_la_OBJECTS) $(libffi_la_LIBADD)
|
2108
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ perl $(top_srcdir)/make_sunver.pl libffi.map \
|
2109
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ `echo $(libffi_la_OBJECTS) $(libffi_la_LIBADD) | \
|
2110
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ sed 's,\([^/ ]*\)\.l\([ao]\),.libs/\1.\2,g'` \
|
2111
|
+
@LIBFFI_BUILD_VERSIONED_SHLIB_SUN_TRUE@@LIBFFI_BUILD_VERSIONED_SHLIB_TRUE@ > $@ || (rm -f $@ ; exit 1)
|
2112
|
+
|
2113
|
+
libffi.map: $(top_srcdir)/libffi.map.in
|
2114
|
+
$(COMPILE) -D$(TARGET) -DGENERATE_LIBFFI_MAP \
|
2115
|
+
-E -x assembler-with-cpp -o $@ $(top_srcdir)/libffi.map.in
|
2116
|
+
|
2117
|
+
dist-hook:
|
2118
|
+
d=`(cd $(distdir); pwd)`; (cd doc; make pdf; cp *.pdf $$d/doc)
|
2119
|
+
if [ -d $(top_srcdir)/.git ] ; then (cd $(top_srcdir); git log --no-decorate) ; else echo 'See git log for history.' ; fi > $(distdir)/ChangeLog
|
2120
|
+
s=`awk '/was released on/{ print NR; exit}' $(top_srcdir)/README.md`; tail -n +$$(($$s-1)) $(top_srcdir)/README.md > $(distdir)/README.md
|
2121
|
+
|
2122
|
+
# target overrides
|
2123
|
+
-include $(tmake_file)
|
1817
2124
|
|
1818
2125
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
1819
2126
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|