@patleeman/pi-boy 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +189 -0
- package/index.ts +1 -0
- package/mgba-bridge/build.sh +31 -0
- package/mgba-bridge/src/main.c +740 -0
- package/mgba-bridge/vendor/mgba/.clang-format +34 -0
- package/mgba-bridge/vendor/mgba/.gitlab-ci.yml +267 -0
- package/mgba-bridge/vendor/mgba/CHANGES +2094 -0
- package/mgba-bridge/vendor/mgba/CMakeLists.txt +1373 -0
- package/mgba-bridge/vendor/mgba/CMakePresets.json +21 -0
- package/mgba-bridge/vendor/mgba/CONTRIBUTING.md +196 -0
- package/mgba-bridge/vendor/mgba/LICENSE +373 -0
- package/mgba-bridge/vendor/mgba/Makefile +1 -0
- package/mgba-bridge/vendor/mgba/Makefile.libretro +490 -0
- package/mgba-bridge/vendor/mgba/PORTING.md +21 -0
- package/mgba-bridge/vendor/mgba/README.md +270 -0
- package/mgba-bridge/vendor/mgba/README_DE.md +255 -0
- package/mgba-bridge/vendor/mgba/README_ES.md +255 -0
- package/mgba-bridge/vendor/mgba/README_JP.md +268 -0
- package/mgba-bridge/vendor/mgba/README_ZH_CN.md +268 -0
- package/mgba-bridge/vendor/mgba/Tupfile +3 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/bitmap-cache.h +64 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/cache-set.h +38 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/cheats.h +130 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/config.h +118 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/core.h +232 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/cpu.h +40 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/directories.h +42 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/input.h +91 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/interface.h +199 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/library.h +62 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/lockstep.h +77 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/log.h +88 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/map-cache.h +82 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/mem-search.h +62 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/rewind.h +47 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/scripting.h +65 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/serialize.h +61 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/sync.h +44 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/thread.h +135 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/tile-cache.h +63 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/timing.h +55 -0
- package/mgba-bridge/vendor/mgba/include/mgba/core/version.h +27 -0
- package/mgba-bridge/vendor/mgba/include/mgba/debugger/debugger.h +267 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/commandline.h +71 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/proxy-backend.h +83 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/thread-proxy.h +41 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/updater.h +51 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/video-backend.h +81 -0
- package/mgba-bridge/vendor/mgba/include/mgba/feature/video-logger.h +145 -0
- package/mgba-bridge/vendor/mgba/include/mgba/gb/core.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba/gb/interface.h +112 -0
- package/mgba-bridge/vendor/mgba/include/mgba/gba/core.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba/gba/interface.h +168 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/arm.h +217 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/debugger/cli-debugger.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/debugger/debugger.h +52 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/debugger/memory-debugger.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/decoder-inlines.h +37 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/decoder.h +231 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/emitter-arm.h +336 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/emitter-inlines.h +32 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/emitter-thumb.h +113 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/isa-arm.h +22 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/isa-inlines.h +186 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/isa-thumb.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/arm/macros.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/access-logger.h +57 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/cli-debugger.h +108 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/cli-el-backend.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/gdb-stub.h +62 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/parser.h +81 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/stack-trace.h +32 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/debugger/symbols.h +29 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/defines.h +31 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/audio.h +257 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/cheats.h +26 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/debugger/cli.h +28 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/debugger/debugger.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/debugger/symbols.h +19 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/gb.h +202 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/input.h +31 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/io.h +127 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/mbc.h +72 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/memory.h +385 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/overrides.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/renderers/cache-set.h +23 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/renderers/proxy.h +29 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/renderers/software.h +72 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/serialize.h +536 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/sio/lockstep.h +49 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/sio/printer.h +74 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/sio.h +52 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/timer.h +45 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gb/video.h +201 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/audio.h +291 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/bios.h +73 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/cart/ereader.h +127 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/cart/gpio.h +110 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/cart/matrix.h +35 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/cart/unlicensed.h +77 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/cheats.h +175 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/debugger/cli.h +30 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/dma.h +73 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/gba.h +194 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/input.h +34 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/io.h +190 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/memory.h +184 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/overrides.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/renderers/cache-set.h +22 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/renderers/common.h +27 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/renderers/gl.h +218 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/renderers/proxy.h +29 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/renderers/video-software.h +160 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/savedata.h +130 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/serialize.h +496 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/sharkport.h +27 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/sio/dolphin.h +41 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/sio/gbp.h +38 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/sio/lockstep.h +95 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/sio.h +98 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/timer.h +36 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/gba/video.h +251 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/script/lua.h +12 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/script/socket.h +31 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/script/types.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/debugger/cli-debugger.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/debugger/debugger.h +43 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/debugger/memory-debugger.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/decoder.h +113 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/emitter-sm83.h +528 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/isa-sm83.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba/internal/sm83/sm83.h +174 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/base.h +28 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/canvas.h +24 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/console.h +51 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/context.h +126 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/input.h +272 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/macros.h +680 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/storage.h +28 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script/types.h +400 -0
- package/mgba-bridge/vendor/mgba/include/mgba/script.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/audio-buffer.h +34 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/audio-resampler.h +42 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/circle-buffer.h +39 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/common.h +352 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/configuration.h +50 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/convolve.h +33 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/crc32.h +26 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/dllexports.h +19 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/elf-read.h +45 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/formatting.h +36 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/geometry.h +31 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/gui/file-select.h +21 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/gui/font-metrics.h +15 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/gui/font.h +149 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/gui/menu.h +126 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/gui.h +136 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/hash.h +17 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/image/export.h +20 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/image/png-io.h +54 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/image.h +442 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/interpolator.h +51 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/macros.h +92 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/math.h +145 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/md5.h +34 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/memory.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/patch/fast.h +38 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/patch/ips.h +19 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/patch/ups.h +19 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/patch.h +26 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/3ds/3ds-vfs.h +17 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/3ds/threading.h +88 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/posix/threading.h +125 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/psp2/sce-vfs.h +18 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/psp2/threading.h +161 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/switch/threading.h +88 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/windows/getopt.h +609 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/platform/windows/threading.h +106 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/ring-fifo.h +30 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/sfo.h +30 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/sha1.h +33 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/socket.h +542 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/string.h +55 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/table.h +93 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/text-codec.h +36 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/threading.h +123 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/vector.h +128 -0
- package/mgba-bridge/vendor/mgba/include/mgba-util/vfs.h +125 -0
- package/mgba-bridge/vendor/mgba/intl/activate.py +70 -0
- package/mgba-bridge/vendor/mgba/intl/core_option_regex.py +95 -0
- package/mgba-bridge/vendor/mgba/intl/core_option_translation.py +633 -0
- package/mgba-bridge/vendor/mgba/intl/crowdin.yaml +13 -0
- package/mgba-bridge/vendor/mgba/intl/crowdin_prep.py +30 -0
- package/mgba-bridge/vendor/mgba/intl/crowdin_source_upload.py +93 -0
- package/mgba-bridge/vendor/mgba/intl/crowdin_translate.py +39 -0
- package/mgba-bridge/vendor/mgba/intl/crowdin_translation_download.py +93 -0
- package/mgba-bridge/vendor/mgba/intl/download_workflow.py +16 -0
- package/mgba-bridge/vendor/mgba/intl/initial_sync.py +125 -0
- package/mgba-bridge/vendor/mgba/intl/remove_initial_cycle.py +30 -0
- package/mgba-bridge/vendor/mgba/intl/upload_workflow.py +15 -0
- package/mgba-bridge/vendor/mgba/intl/v1_to_v2_converter.py +483 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_arm64-v8a +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_armeabi +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_armeabi-v7a +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_mips +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_mips64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.android_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.common +156 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.linux-portable_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.linux-portable_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.linux_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.linux_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.mingw_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.mingw_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.osx_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.osx_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.rules +45 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.vita_arm +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.wii_ppc +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.windows_x86 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/Makefile.windows_x86_64 +96 -0
- package/mgba-bridge/vendor/mgba/libretro-build/include/libz/zconf.h +511 -0
- package/mgba-bridge/vendor/mgba/libretro-build/jni/Android.mk +23 -0
- package/mgba-bridge/vendor/mgba/libretro-build/jni/Application.mk +2 -0
- package/mgba-bridge/vendor/mgba/libretro-build/link.T +5 -0
- package/mgba-bridge/vendor/mgba/link.T +4 -0
- package/mgba-bridge/vendor/mgba/opt/libgba/mgba.c +94 -0
- package/mgba-bridge/vendor/mgba/opt/libgba/mgba.h +46 -0
- package/mgba-bridge/vendor/mgba/src/arm/CMakeLists.txt +19 -0
- package/mgba-bridge/vendor/mgba/src/arm/arm.c +264 -0
- package/mgba-bridge/vendor/mgba/src/arm/debugger/cli-debugger.c +187 -0
- package/mgba-bridge/vendor/mgba/src/arm/debugger/debugger.c +588 -0
- package/mgba-bridge/vendor/mgba/src/arm/debugger/memory-debugger.c +158 -0
- package/mgba-bridge/vendor/mgba/src/arm/decoder-arm.c +466 -0
- package/mgba-bridge/vendor/mgba/src/arm/decoder-thumb.c +344 -0
- package/mgba-bridge/vendor/mgba/src/arm/decoder.c +601 -0
- package/mgba-bridge/vendor/mgba/src/arm/isa-arm.c +784 -0
- package/mgba-bridge/vendor/mgba/src/arm/isa-thumb.c +417 -0
- package/mgba-bridge/vendor/mgba/src/core/CMakeLists.txt +47 -0
- package/mgba-bridge/vendor/mgba/src/core/bitmap-cache.c +187 -0
- package/mgba-bridge/vendor/mgba/src/core/cache-set.c +83 -0
- package/mgba-bridge/vendor/mgba/src/core/cheats.c +807 -0
- package/mgba-bridge/vendor/mgba/src/core/config.c +548 -0
- package/mgba-bridge/vendor/mgba/src/core/core-serialize.c +585 -0
- package/mgba-bridge/vendor/mgba/src/core/core.c +539 -0
- package/mgba-bridge/vendor/mgba/src/core/directories.c +196 -0
- package/mgba-bridge/vendor/mgba/src/core/flags.h.in +204 -0
- package/mgba-bridge/vendor/mgba/src/core/input.c +677 -0
- package/mgba-bridge/vendor/mgba/src/core/interface.c +154 -0
- package/mgba-bridge/vendor/mgba/src/core/library.c +584 -0
- package/mgba-bridge/vendor/mgba/src/core/lockstep.c +43 -0
- package/mgba-bridge/vendor/mgba/src/core/log.c +294 -0
- package/mgba-bridge/vendor/mgba/src/core/map-cache.c +219 -0
- package/mgba-bridge/vendor/mgba/src/core/mem-search.c +342 -0
- package/mgba-bridge/vendor/mgba/src/core/rewind.c +186 -0
- package/mgba-bridge/vendor/mgba/src/core/scripting.c +1481 -0
- package/mgba-bridge/vendor/mgba/src/core/sync.c +121 -0
- package/mgba-bridge/vendor/mgba/src/core/thread.c +726 -0
- package/mgba-bridge/vendor/mgba/src/core/tile-cache.c +283 -0
- package/mgba-bridge/vendor/mgba/src/core/timing.c +137 -0
- package/mgba-bridge/vendor/mgba/src/core/version.c.in +14 -0
- package/mgba-bridge/vendor/mgba/src/debugger/CMakeLists.txt +30 -0
- package/mgba-bridge/vendor/mgba/src/debugger/access-logger.c +592 -0
- package/mgba-bridge/vendor/mgba/src/debugger/cli-debugger-scripting.c +137 -0
- package/mgba-bridge/vendor/mgba/src/debugger/cli-debugger.c +1482 -0
- package/mgba-bridge/vendor/mgba/src/debugger/cli-el-backend.c +248 -0
- package/mgba-bridge/vendor/mgba/src/debugger/debugger.c +327 -0
- package/mgba-bridge/vendor/mgba/src/debugger/gdb-stub.c +918 -0
- package/mgba-bridge/vendor/mgba/src/debugger/parser.c +902 -0
- package/mgba-bridge/vendor/mgba/src/debugger/stack-trace.c +133 -0
- package/mgba-bridge/vendor/mgba/src/debugger/symbols.c +109 -0
- package/mgba-bridge/vendor/mgba/src/feature/CMakeLists.txt +24 -0
- package/mgba-bridge/vendor/mgba/src/feature/commandline.c +404 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-common.h +95 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-decoder.c +204 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-decoder.h +45 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-encoder.c +960 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-encoder.h +91 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-scale.c +36 -0
- package/mgba-bridge/vendor/mgba/src/feature/ffmpeg/ffmpeg-scale.h +21 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/cheats.c +195 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/cheats.h +18 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/gui-config.c +438 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/gui-config.h +19 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/gui-runner.c +853 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/gui-runner.h +114 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/remap.c +88 -0
- package/mgba-bridge/vendor/mgba/src/feature/gui/remap.h +27 -0
- package/mgba-bridge/vendor/mgba/src/feature/proxy-backend.c +286 -0
- package/mgba-bridge/vendor/mgba/src/feature/thread-proxy.c +213 -0
- package/mgba-bridge/vendor/mgba/src/feature/updater.c +227 -0
- package/mgba-bridge/vendor/mgba/src/feature/video-backend.c +45 -0
- package/mgba-bridge/vendor/mgba/src/feature/video-logger.c +1092 -0
- package/mgba-bridge/vendor/mgba/src/gb/CMakeLists.txt +53 -0
- package/mgba-bridge/vendor/mgba/src/gb/audio.c +1149 -0
- package/mgba-bridge/vendor/mgba/src/gb/cheats.c +190 -0
- package/mgba-bridge/vendor/mgba/src/gb/core.c +1539 -0
- package/mgba-bridge/vendor/mgba/src/gb/debugger/cli.c +115 -0
- package/mgba-bridge/vendor/mgba/src/gb/debugger/debugger.c +46 -0
- package/mgba-bridge/vendor/mgba/src/gb/debugger/symbols.c +61 -0
- package/mgba-bridge/vendor/mgba/src/gb/extra/proxy.c +328 -0
- package/mgba-bridge/vendor/mgba/src/gb/gb.c +1261 -0
- package/mgba-bridge/vendor/mgba/src/gb/input.c +29 -0
- package/mgba-bridge/vendor/mgba/src/gb/io.c +735 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/huc-3.c +218 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/licensed.c +84 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/mbc-private.h +66 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/mbc.c +583 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/pocket-cam.c +142 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/tama5.c +433 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc/unlicensed.c +601 -0
- package/mgba-bridge/vendor/mgba/src/gb/mbc.c +650 -0
- package/mgba-bridge/vendor/mgba/src/gb/memory.c +1079 -0
- package/mgba-bridge/vendor/mgba/src/gb/overrides.c +939 -0
- package/mgba-bridge/vendor/mgba/src/gb/renderers/cache-set.c +129 -0
- package/mgba-bridge/vendor/mgba/src/gb/renderers/software.c +1169 -0
- package/mgba-bridge/vendor/mgba/src/gb/serialize.c +310 -0
- package/mgba-bridge/vendor/mgba/src/gb/sio/lockstep.c +284 -0
- package/mgba-bridge/vendor/mgba/src/gb/sio/printer.c +237 -0
- package/mgba-bridge/vendor/mgba/src/gb/sio.c +106 -0
- package/mgba-bridge/vendor/mgba/src/gb/timer.c +150 -0
- package/mgba-bridge/vendor/mgba/src/gb/video.c +1216 -0
- package/mgba-bridge/vendor/mgba/src/gba/CMakeLists.txt +62 -0
- package/mgba-bridge/vendor/mgba/src/gba/audio.c +555 -0
- package/mgba-bridge/vendor/mgba/src/gba/bios.c +981 -0
- package/mgba-bridge/vendor/mgba/src/gba/cart/ereader.c +1639 -0
- package/mgba-bridge/vendor/mgba/src/gba/cart/gpio.c +584 -0
- package/mgba-bridge/vendor/mgba/src/gba/cart/matrix.c +134 -0
- package/mgba-bridge/vendor/mgba/src/gba/cart/unlicensed.c +255 -0
- package/mgba-bridge/vendor/mgba/src/gba/cart/vfame.c +320 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats/codebreaker.c +323 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats/gameshark.c +318 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats/gameshark.h +32 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats/parv3.c +442 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats/parv3.h +21 -0
- package/mgba-bridge/vendor/mgba/src/gba/cheats.c +386 -0
- package/mgba-bridge/vendor/mgba/src/gba/core.c +1822 -0
- package/mgba-bridge/vendor/mgba/src/gba/debugger/cli.c +116 -0
- package/mgba-bridge/vendor/mgba/src/gba/dma.c +363 -0
- package/mgba-bridge/vendor/mgba/src/gba/extra/battlechip.c +171 -0
- package/mgba-bridge/vendor/mgba/src/gba/extra/proxy.c +408 -0
- package/mgba-bridge/vendor/mgba/src/gba/gba.c +1095 -0
- package/mgba-bridge/vendor/mgba/src/gba/hle-bios-src.s +400 -0
- package/mgba-bridge/vendor/mgba/src/gba/hle-bios.c +103 -0
- package/mgba-bridge/vendor/mgba/src/gba/hle-bios.h +17 -0
- package/mgba-bridge/vendor/mgba/src/gba/hle-bios.make +18 -0
- package/mgba-bridge/vendor/mgba/src/gba/input.c +31 -0
- package/mgba-bridge/vendor/mgba/src/gba/io.c +1085 -0
- package/mgba-bridge/vendor/mgba/src/gba/memory.c +1974 -0
- package/mgba-bridge/vendor/mgba/src/gba/overrides.c +435 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/cache-set.c +219 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/common.c +59 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/gl.c +2137 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/software-bg.c +228 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/software-mode0.c +576 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/software-obj.c +431 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/software-private.h +283 -0
- package/mgba-bridge/vendor/mgba/src/gba/renderers/video-software.c +1117 -0
- package/mgba-bridge/vendor/mgba/src/gba/savedata.c +792 -0
- package/mgba-bridge/vendor/mgba/src/gba/serialize.c +242 -0
- package/mgba-bridge/vendor/mgba/src/gba/sharkport.c +389 -0
- package/mgba-bridge/vendor/mgba/src/gba/sio/dolphin.c +217 -0
- package/mgba-bridge/vendor/mgba/src/gba/sio/gbp.c +150 -0
- package/mgba-bridge/vendor/mgba/src/gba/sio/lockstep.c +1063 -0
- package/mgba-bridge/vendor/mgba/src/gba/sio.c +493 -0
- package/mgba-bridge/vendor/mgba/src/gba/timer.c +153 -0
- package/mgba-bridge/vendor/mgba/src/gba/video.c +470 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/DMGOverrides.cmake.in +6 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/DebugStrip.cmake +12 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/ExportDirectory.cmake +7 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/FindFeature.cmake +88 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/FindFunction.cmake +14 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/FindSDL2.cmake +164 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/Findepoxy.cmake +10 -0
- package/mgba-bridge/vendor/mgba/src/platform/cmake/devkitPro.cmake +44 -0
- package/mgba-bridge/vendor/mgba/src/platform/example/client-server/client.c +160 -0
- package/mgba-bridge/vendor/mgba/src/platform/example/client-server/server.c +168 -0
- package/mgba-bridge/vendor/mgba/src/platform/headless-main.c +379 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/libretro.c +2611 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/libretro.h +7846 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/libretro_core_options.h +721 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/libretro_core_options_intl.h +17798 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/memory.c +22 -0
- package/mgba-bridge/vendor/mgba/src/platform/libretro/retro_inline.h +39 -0
- package/mgba-bridge/vendor/mgba/src/platform/opengl/gl.c +304 -0
- package/mgba-bridge/vendor/mgba/src/platform/opengl/gl.h +40 -0
- package/mgba-bridge/vendor/mgba/src/platform/opengl/gles2.c +1230 -0
- package/mgba-bridge/vendor/mgba/src/platform/opengl/gles2.h +117 -0
- package/mgba-bridge/vendor/mgba/src/platform/posix/memory.c +37 -0
- package/mgba-bridge/vendor/mgba/src/script/CMakeLists.txt +38 -0
- package/mgba-bridge/vendor/mgba/src/script/canvas.c +292 -0
- package/mgba-bridge/vendor/mgba/src/script/console.c +141 -0
- package/mgba-bridge/vendor/mgba/src/script/context.c +492 -0
- package/mgba-bridge/vendor/mgba/src/script/engines/lua.c +1617 -0
- package/mgba-bridge/vendor/mgba/src/script/image.c +338 -0
- package/mgba-bridge/vendor/mgba/src/script/input.c +612 -0
- package/mgba-bridge/vendor/mgba/src/script/socket.c +284 -0
- package/mgba-bridge/vendor/mgba/src/script/stdlib.c +306 -0
- package/mgba-bridge/vendor/mgba/src/script/storage.c +557 -0
- package/mgba-bridge/vendor/mgba/src/script/test.h +29 -0
- package/mgba-bridge/vendor/mgba/src/script/types.c +1886 -0
- package/mgba-bridge/vendor/mgba/src/sm83/CMakeLists.txt +16 -0
- package/mgba-bridge/vendor/mgba/src/sm83/debugger/cli-debugger.c +110 -0
- package/mgba-bridge/vendor/mgba/src/sm83/debugger/debugger.c +266 -0
- package/mgba-bridge/vendor/mgba/src/sm83/debugger/memory-debugger.c +84 -0
- package/mgba-bridge/vendor/mgba/src/sm83/decoder.c +608 -0
- package/mgba-bridge/vendor/mgba/src/sm83/isa-sm83.c +817 -0
- package/mgba-bridge/vendor/mgba/src/sm83/sm83.c +199 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/.clang-format +92 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/CMakeLists.txt +18 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/LICENSE +19 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/README.md +152 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/discord_register.h +26 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/discord_rpc.h +87 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/LICENSE +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/README.md +41 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/condition_variable +549 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/mutex +474 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/shared_mutex +497 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/mingw-std-threads/thread +410 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/allocators.h +271 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/document.h +2573 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/encodedstream.h +299 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/encodings.h +716 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/error/en.h +74 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/error/error.h +155 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/filereadstream.h +99 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/filewritestream.h +104 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/fwd.h +151 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/biginteger.h +290 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/diyfp.h +258 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/dtoa.h +245 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/ieee754.h +78 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/itoa.h +304 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/meta.h +181 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/pow10.h +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/regex.h +701 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/stack.h +230 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/strfunc.h +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/strtod.h +269 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/internal/swap.h +46 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/istreamwrapper.h +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/license.txt +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/memorybuffer.h +70 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/memorystream.h +71 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/msinttypes/inttypes.h +316 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/msinttypes/stdint.h +300 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/ostreamwrapper.h +81 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/pointer.h +1358 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/prettywriter.h +255 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/rapidjson.h +615 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/reader.h +1879 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/schema.h +2006 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/stream.h +179 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/stringbuffer.h +117 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/include/rapidjson/writer.h +610 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/CMakeLists.txt +90 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/backoff.h +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/connection.h +19 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/connection_unix.cpp +125 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/connection_win.cpp +128 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/discord_register_linux.cpp +102 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/discord_register_osx.m +80 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/discord_register_win.cpp +185 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/discord_rpc.cpp +504 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/dllmain.cpp +8 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/msg_queue.h +36 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/rpc_connection.cpp +137 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/rpc_connection.h +59 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/serialization.cpp +245 -0
- package/mgba-bridge/vendor/mgba/src/third-party/discord-rpc/src/serialization.h +215 -0
- package/mgba-bridge/vendor/mgba/src/third-party/inih/LICENSE.txt +27 -0
- package/mgba-bridge/vendor/mgba/src/third-party/inih/README.md +157 -0
- package/mgba-bridge/vendor/mgba/src/third-party/inih/ini.c +288 -0
- package/mgba-bridge/vendor/mgba/src/third-party/inih/ini.h +148 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/ANNOUNCE +47 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/AUTHORS +45 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/CHANGES +6109 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/CMakeLists.txt +931 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/INSTALL +465 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/LICENSE +134 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/Makefile.am +393 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/Makefile.in +2428 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/README +183 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/TODO +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/TRADEMARK +8 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/aclocal.m4 +1196 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/arm/arm_init.c +136 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/arm/filter_neon.S +253 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/arm/filter_neon_intrinsics.c +402 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/arm/palette_neon_intrinsics.c +149 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/autogen.sh +225 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/compile +348 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/config.guess +1476 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/config.h.in +126 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/config.sub +1801 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/configure +16116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/configure.ac +532 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/README.txt +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/arm-neon/README +83 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/arm-neon/android-ndk.c +39 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/arm-neon/linux-auxv.c +120 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/arm-neon/linux.c +161 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/README +49 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/pngcp.dfa +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/read.dfa +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/s_read.dfa +35 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/s_write.dfa +33 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/simple.dfa +36 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/conftest/write.dfa +45 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/examples/README.txt +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/examples/iccfrompng.c +185 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/examples/pngpixel.c +371 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/examples/pngtopng.c +98 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/examples/simpleover.c +648 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/COPYING +340 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/LICENSE +50 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/Makefile.mingw32 +131 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/Makefile.sgi +105 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/Makefile.unx +134 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/Makefile.w32 +114 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/README +186 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/makevms.com +132 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/readpng.c +323 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/readpng.h +88 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/readpng2.c +521 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/readpng2.h +116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/readppm.c +188 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/rpng-win.c +735 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/rpng-x.c +911 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/rpng2-win.c +1261 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/rpng2-x.c +2143 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/toucan.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/wpng.c +865 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/writepng.c +401 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/gregbook/writepng.h +133 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/fakepng.c +65 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/gentests.sh +102 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/makepng.c +1941 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/pngimage.c +1712 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/pngstest-errors.h +165 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/pngstest.c +3828 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/pngunknown.c +1294 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/pngvalid.c +12230 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/readpng.c +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/tarith.c +999 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/libtests/timepng.c +608 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/mips-msa/README +83 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/mips-msa/linux.c +64 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/Dockerfile +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/README.txt +37 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/build.sh +51 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc +190 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/libpng_read_fuzzer.options +2 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/oss-fuzz/png.dict +39 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/README +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/decoder/README +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/decoder/makefile +151 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/decoder/pngusr.dfa +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/decoder/pngusr.h +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/encoder/README +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/encoder/makefile +150 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/encoder/pngusr.dfa +39 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/encoder/pngusr.h +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/preader/README +15 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/preader/makefile +166 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/preader/pngusr.dfa +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminim/preader/pngusr.h +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/CHANGES.txt +13 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/CMakeLists.txt +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/LICENSE.txt +22 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/Makefile +62 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/README.txt +120 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/makevms.com +92 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/png2pnm.bat +41 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/png2pnm.c +427 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/png2pnm.sh +42 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/pngminus.bat +4 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/pngminus.sh +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/pnm2png.bat +41 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/pnm2png.c +620 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngminus/pnm2png.sh +42 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/README +107 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/bad_interlace_conversions.txt +9 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn0g01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn0g02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn0g04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn0g08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn0g16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn3p01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn3p02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn3p04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn4a08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn4a16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn6a08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/basn6a16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbbn0g01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbbn0g02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbbn0g04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbbn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbbn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbgn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbgn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbrn2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbwn0g16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbwn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftbyn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftp0n0g08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftp0n2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftp0n3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ftp1n3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn0g08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn0g16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn4a08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn4a16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn6a08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/ibasn6a16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbbn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbbn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbgn2c16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbgn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbrn2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbwn0g16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbwn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftbyn3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftp0n0g08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftp0n2c08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftp0n3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/iftp1n3p08.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/README +2 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn0g01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn0g02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn0g04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn3p01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn3p02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/ibasn3p04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/iftbbn0g01.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/iftbbn0g02.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/pngsuite/interlaced/iftbbn0g04.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/powerpc-vsx/README +81 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/powerpc-vsx/linux.c +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/powerpc-vsx/linux_aux.c +34 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/bad_iCCP.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/badadler.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/badcrc.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/empty_ancillary_chunks.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_IDAT.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_bKGD_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_cHRM_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_eXIf_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_gAMA_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_hIST_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_iCCP_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_iTXt_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_juNK_unsafe_to_copy.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_juNk_safe_to_copy.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_pCAL_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_pHYs_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_sCAL_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_sPLT_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_sRGB_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_sTER_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_tEXt_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_tIME_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/crashers/huge_zTXt_chunk.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-1.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-2.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-4.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-16-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-16-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-16-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-8-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-8-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-8-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/gray-alpha-8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/makepngs.sh +94 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-1.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-2.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-4.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/palette-8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-1.8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-linear-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-sRGB-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8-tRNS.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-16-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-16-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-16-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-16.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-8-1.8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-8-linear.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-8-sRGB.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/testpngs/rgb-alpha-8.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/README.txt +27 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/checksum-icc.c +102 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/chkfmt +144 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/cvtcolor.c +188 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/genpng.c +881 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/intgamma.sh +110 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/makesRGB.c +430 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/png-fix-itxt.c +164 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/pngcp.c +2453 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/pngfix.c +4049 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/reindent +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/tools/sRGB.h +48 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/PngFile.c +454 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/PngFile.h +30 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/README.txt +61 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.c +978 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.dsp +147 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.dsw +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.ico +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/VisualPng.rc +152 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/cexcept.h +248 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/contrib/visupng/resource.h +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/depcomp +791 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/example.c +1040 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/install-sh +518 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/intel/filter_sse2_intrinsics.c +391 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/intel/intel_init.c +52 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/libpng-config.in +127 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/libpng-manual.txt +5409 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/libpng.3 +6052 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/libpng.pc.in +12 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/libpngpf.3 +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/ltmain.sh +11147 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/mips/filter_msa_intrinsics.c +808 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/mips/mips_init.c +130 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/missing +215 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/png.5 +84 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/png.c +4607 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/png.h +3247 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngbar.jpg +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngbar.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngconf.h +623 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngdebug.h +153 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngerror.c +963 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngget.c +1249 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pnginfo.h +267 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngmem.c +284 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngnow.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngpread.c +1096 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngpriv.h +2152 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngread.c +4225 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngrio.c +120 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngrtran.c +5044 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngrutil.c +4681 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngset.c +1802 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngstruct.h +489 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngtest.c +2158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngtest.png +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngtrans.c +864 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngusr.dfa +14 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngwio.c +168 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngwrite.c +2395 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngwtran.c +575 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/pngwutil.c +2781 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/powerpc/filter_vsx_intrinsics.c +768 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/powerpc/powerpc_init.c +126 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/libpng.tgt +383 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/libpng.wpj +112 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/pngconfig.mak +160 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/pngstest.tgt +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/pngtest.tgt +179 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/owatcom/pngvalid.tgt +210 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/PRJ0041.mak +21 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/README.txt +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/README_zlib.txt +44 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/libpng.sln +60 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/libpng.vcproj +419 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/pngtest.vcproj +267 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/visualc71/zlib.vcproj +391 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/libpng/libpng.vcxproj +234 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/pnglibconf/pnglibconf.vcxproj +61 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/pngstest/pngstest.vcxproj +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/pngtest/pngtest.vcxproj +220 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/pngunknown/pngunknown.vcxproj +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/pngvalid/pngvalid.vcxproj +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/vstudio.sln +109 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/zlib/zlib.vcxproj +175 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/projects/vstudio/zlib.props +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/README.txt +79 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/SCOPTIONS.ppc +7 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/checksym.awk +173 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/descrip.mms +52 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/dfn.awk +203 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/genchk.cmake.in +37 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/genout.cmake.in +93 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/gensrc.cmake.in +138 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/intprefix.c +22 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/libpng-config-body.in +96 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/libpng-config-head.in +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/libpng.pc.in +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/libtool.m4 +8369 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/ltoptions.m4 +437 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/ltsugar.m4 +124 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/ltversion.m4 +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/lt~obsolete.m4 +99 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/macro.lst +3 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.32sunu +244 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.64sunu +244 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.acorn +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.aix +116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.amiga +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.atari +71 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.bc32 +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.beos +222 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.cegcc +116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.clang +87 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.clang-asan +87 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.darwin +225 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.dec +210 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.dj2 +72 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.freebsd +69 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.gcc +87 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.gcc-asan +87 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.hp64 +231 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.hpgcc +234 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.hpux +229 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.ibmc +90 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.intel +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.linux +246 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.linux-opt +265 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.mips +103 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.msys +202 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.netbsd +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.openbsd +86 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.sco +226 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.sggcc +236 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.sgi +237 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.so9 +247 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.solaris +243 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.std +134 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.sunos +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makefile.vcwin32 +113 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/makevms.com +142 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/options.awk +898 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/pnglibconf.dfa +920 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/pnglibconf.h.prebuilt +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/pnglibconf.mak +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/pngwin.rc +112 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/prefix.c +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/smakefile.ppc +34 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/sym.c +15 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/symbols.c +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/symbols.def +255 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/test.cmake.in +31 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/scripts/vers.c +19 -0
- package/mgba-bridge/vendor/mgba/src/third-party/libpng/test-driver +148 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7z.h +202 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zAlloc.c +80 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zAlloc.h +19 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zArcIn.c +1771 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zBuf.c +36 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zBuf.h +35 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zBuf2.c +52 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zCrc.c +128 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zCrc.h +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zCrcOpt.c +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zDec.c +591 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zFile.c +286 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zFile.h +83 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zStream.c +176 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zTypes.h +375 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zVersion.h +27 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/7zVersion.rc +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Aes.c +306 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Aes.h +38 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/AesOpt.c +184 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Alloc.c +455 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Alloc.h +51 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bcj2.c +257 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bcj2.h +146 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bcj2Enc.c +311 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bra.c +230 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bra.h +64 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Bra86.c +82 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/BraIA64.c +53 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Compiler.h +33 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/CpuArch.c +218 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/CpuArch.h +336 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Delta.c +64 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Delta.h +19 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/DllSecur.c +108 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/DllSecur.h +20 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzFind.c +1127 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzFind.h +121 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzFindMt.c +853 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzFindMt.h +101 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzHash.h +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2Dec.c +488 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2Dec.h +120 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2DecMt.c +1082 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2DecMt.h +79 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2Enc.c +803 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma2Enc.h +55 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma86.h +111 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma86Dec.c +54 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Lzma86Enc.c +106 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaDec.c +1185 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaDec.h +234 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaEnc.c +2976 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaEnc.h +76 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaLib.c +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/LzmaLib.h +131 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/MtCoder.c +601 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/MtCoder.h +141 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/MtDec.c +1138 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/MtDec.h +201 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Ppmd.h +85 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Ppmd7.c +712 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Ppmd7.h +142 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Ppmd7Dec.c +191 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Ppmd7Enc.c +187 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Precomp.h +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/RotateDefs.h +30 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Sha256.c +248 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Sha256.h +26 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Sort.c +141 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Sort.h +18 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Threads.c +95 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Threads.h +68 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/7z.dsp +241 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/7z.dsw +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/7zMain.c +686 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/Precomp.c +4 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/Precomp.h +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/makefile +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/7z/makefile.gcc +75 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/Lzma/LzmaUtil.c +258 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/Lzma/LzmaUtil.dsp +168 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/Lzma/LzmaUtil.dsw +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/Lzma/makefile +28 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/Lzma/makefile.gcc +44 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/LzmaLib.def +4 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/LzmaLib.dsp +178 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/LzmaLib.dsw +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/LzmaLibExports.c +14 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/makefile +34 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/LzmaLib/resource.rc +3 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/Precomp.c +4 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/Precomp.h +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/SfxSetup.c +640 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/SfxSetup.dsp +231 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/SfxSetup.dsw +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/makefile +37 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/makefile_con +38 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/resource.rc +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Util/SfxSetup/setup.ico +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Xz.c +90 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/Xz.h +460 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzCrc64.c +86 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzCrc64.h +26 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzCrc64Opt.c +69 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzDec.c +2766 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzEnc.c +1329 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzEnc.h +60 -0
- package/mgba-bridge/vendor/mgba/src/third-party/lzma/XzIn.c +319 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/CMakeLists.txt +249 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/ChangeLog +1578 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/FAQ +368 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/INDEX +68 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/Makefile +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/Makefile.in +408 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/README +118 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/adler32.c +186 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/amiga/Makefile.pup +69 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/amiga/Makefile.sas +68 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/compress.c +86 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/configure +927 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/README.contrib +57 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/buffer_demo.adb +106 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/mtest.adb +156 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/read.adb +156 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/readme.txt +65 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/test.adb +463 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib-streams.adb +225 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib-streams.ads +114 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib-thin.adb +141 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib-thin.ads +450 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib.adb +701 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib.ads +328 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/ada/zlib.gpr +20 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/Makefile +8 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/README +4 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/blast.c +466 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/blast.h +83 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/test.pk +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/blast/test.txt +1 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/delphi/ZLib.pas +557 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/delphi/ZLibConst.pas +11 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/delphi/readme.txt +76 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/delphi/zlibd32.mak +99 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/AssemblyInfo.cs +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/ChecksumImpl.cs +202 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/CircularBuffer.cs +83 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/CodecBase.cs +198 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/Deflater.cs +106 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/DotZLib.cs +288 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/DotZLib.csproj +141 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/GZipStream.cs +301 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/Inflater.cs +105 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib/UnitTests.cs +274 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib.build +33 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib.chm +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/DotZLib.sln +21 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/LICENSE_1_0.txt +23 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/dotzlib/readme.txt +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/gcc_gvmat64/gvmat64.S +574 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/README +1 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/infback9.c +615 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/infback9.h +37 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/inffix9.h +107 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/inflate9.h +47 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/inftree9.c +324 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/infback9/inftree9.h +61 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream/test.cpp +24 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream/zfstream.cpp +329 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream/zfstream.h +128 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream2/zstream.h +307 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream2/zstream_test.cpp +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream3/README +35 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream3/TODO +17 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream3/test.cc +50 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream3/zfstream.cc +479 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/iostream3/zfstream.h +466 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/Makefile +29 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/Makefile.am +45 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/MiniZip64_Changes.txt +6 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/MiniZip64_info.txt +74 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/configure.ac +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/crypt.h +132 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/ioapi.c +257 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/ioapi.h +210 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/iowin32.c +462 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/iowin32.h +28 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/make_vms.com +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/miniunz.c +659 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/miniunzip.1 +63 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/minizip.1 +46 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/minizip.c +521 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/minizip.pc.in +12 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/mztools.c +291 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/mztools.h +37 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/unzip.c +2128 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/unzip.h +437 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/zip.c +2007 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/minizip/zip.h +367 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/pascal/example.pas +599 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/pascal/readme.txt +76 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/pascal/zlibd32.mak +99 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/pascal/zlibpas.pas +276 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/Makefile +42 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/README +63 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/puff.c +840 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/puff.h +35 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/pufftest.c +165 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/puff/zeros.raw +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/testzlib/testzlib.c +275 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/testzlib/testzlib.txt +10 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/untgz/Makefile +14 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/untgz/Makefile.msc +17 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/untgz/untgz.c +674 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/readme.txt +78 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/miniunz.vcxproj +310 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/miniunz.vcxproj.filters +22 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/minizip.vcxproj +307 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/minizip.vcxproj.filters +22 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/testzlib.vcxproj +420 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/testzlib.vcxproj.filters +58 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/testzlibdll.vcxproj +310 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/testzlibdll.vcxproj.filters +22 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlib.rc +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibstat.vcxproj +473 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibstat.vcxproj.filters +77 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibvc.def +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibvc.sln +135 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibvc.vcxproj +657 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc10/zlibvc.vcxproj.filters +118 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/miniunz.vcxproj +314 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/minizip.vcxproj +311 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/testzlib.vcxproj +426 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/testzlibdll.vcxproj +314 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/zlib.rc +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/zlibstat.vcxproj +464 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/zlibvc.def +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/zlibvc.sln +117 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc11/zlibvc.vcxproj +688 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/miniunz.vcxproj +316 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/minizip.vcxproj +313 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/testzlib.vcxproj +430 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/testzlibdll.vcxproj +316 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/zlib.rc +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/zlibstat.vcxproj +467 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/zlibvc.def +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/zlibvc.sln +119 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc12/zlibvc.vcxproj +692 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/miniunz.vcxproj +316 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/minizip.vcxproj +313 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/testzlib.vcxproj +430 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/testzlibdll.vcxproj +316 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/zlib.rc +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/zlibstat.vcxproj +467 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/zlibvc.def +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/zlibvc.sln +119 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc14/zlibvc.vcxproj +692 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/miniunz.vcproj +565 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/minizip.vcproj +562 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/testzlib.vcproj +852 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/testzlibdll.vcproj +565 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/zlib.rc +32 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/zlibstat.vcproj +835 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/zlibvc.def +158 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/zlibvc.sln +144 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/contrib/vstudio/vc9/zlibvc.vcproj +1156 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/crc32.c +1116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/crc32.h +9446 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/deflate.c +2211 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/deflate.h +346 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/algorithm.txt +209 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/crc-doc.1.0.pdf +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/rfc1950.txt +619 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/rfc1951.txt +955 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/rfc1952.txt +675 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/doc/txtvsbin.txt +107 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/README.examples +54 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/enough.c +597 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/fitblk.c +233 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gun.c +702 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gzappend.c +504 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gzjoin.c +449 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gzlog.c +1061 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gzlog.h +91 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/gznorm.c +470 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/zlib_how.html +545 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/zpipe.c +205 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/zran.c +479 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/examples/zran.h +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/gzclose.c +25 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/gzguts.h +219 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/gzlib.c +639 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/gzread.c +652 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/gzwrite.c +677 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/infback.c +641 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inffast.c +323 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inffast.h +11 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inffixed.h +94 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inflate.c +1592 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inflate.h +126 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inftrees.c +304 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/inftrees.h +62 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/make_vms.com +867 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/msdos/Makefile.bor +115 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/msdos/Makefile.dj2 +104 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/msdos/Makefile.emx +69 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/msdos/Makefile.msc +112 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/msdos/Makefile.tc +100 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/nintendods/Makefile +126 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/nintendods/README +5 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/Makefile.emx +69 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/Makefile.riscos +151 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/README +3 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/descrip.mms +48 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/os2/Makefile.os2 +136 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/os2/zlib.def +51 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/old/visual-basic.txt +160 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/os400/README400 +48 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/os400/bndsrc +119 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/os400/make.sh +366 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/os400/zlib.inc +527 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/qnx/package.qpg +141 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/treebuild.xml +116 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/trees.c +1182 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/trees.h +128 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/uncompr.c +93 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/watcom/watcom_f.mak +43 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/watcom/watcom_l.mak +43 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/DLL_FAQ.txt +397 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/Makefile.bor +109 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/Makefile.gcc +177 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/Makefile.msc +159 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/README-WIN32.txt +103 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/VisualC.txt +3 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/zlib.def +97 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/win32/zlib1.rc +40 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zconf.h +534 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zconf.h.cmakein +536 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zconf.h.in +534 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.3 +149 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.3.pdf +0 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.h +1935 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.map +100 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.pc.cmakein +13 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib.pc.in +13 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zlib2ansi +152 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zutil.c +325 -0
- package/mgba-bridge/vendor/mgba/src/third-party/zlib/zutil.h +274 -0
- package/mgba-bridge/vendor/mgba/src/tools/docgen.c +541 -0
- package/mgba-bridge/vendor/mgba/src/tools/font-sdf.c +136 -0
- package/mgba-bridge/vendor/mgba/src/tools/updater-main.c +377 -0
- package/mgba-bridge/vendor/mgba/src/util/CMakeLists.txt +68 -0
- package/mgba-bridge/vendor/mgba/src/util/audio-buffer.c +62 -0
- package/mgba-bridge/vendor/mgba/src/util/audio-resampler.c +109 -0
- package/mgba-bridge/vendor/mgba/src/util/circle-buffer.c +274 -0
- package/mgba-bridge/vendor/mgba/src/util/configuration.c +233 -0
- package/mgba-bridge/vendor/mgba/src/util/convolve.c +182 -0
- package/mgba-bridge/vendor/mgba/src/util/crc32.c +138 -0
- package/mgba-bridge/vendor/mgba/src/util/elf-read.c +128 -0
- package/mgba-bridge/vendor/mgba/src/util/formatting.c +87 -0
- package/mgba-bridge/vendor/mgba/src/util/gbk-table.c +129 -0
- package/mgba-bridge/vendor/mgba/src/util/geometry.c +94 -0
- package/mgba-bridge/vendor/mgba/src/util/gui/file-select.c +236 -0
- package/mgba-bridge/vendor/mgba/src/util/gui/font-metrics.c +199 -0
- package/mgba-bridge/vendor/mgba/src/util/gui/font.c +169 -0
- package/mgba-bridge/vendor/mgba/src/util/gui/menu.c +412 -0
- package/mgba-bridge/vendor/mgba/src/util/gui.c +81 -0
- package/mgba-bridge/vendor/mgba/src/util/hash.c +108 -0
- package/mgba-bridge/vendor/mgba/src/util/image/export.c +81 -0
- package/mgba-bridge/vendor/mgba/src/util/image/font.c +274 -0
- package/mgba-bridge/vendor/mgba/src/util/image/png-io.c +730 -0
- package/mgba-bridge/vendor/mgba/src/util/image.c +1109 -0
- package/mgba-bridge/vendor/mgba/src/util/interpolator.c +116 -0
- package/mgba-bridge/vendor/mgba/src/util/md5.c +228 -0
- package/mgba-bridge/vendor/mgba/src/util/memory.c +15 -0
- package/mgba-bridge/vendor/mgba/src/util/patch-fast.c +130 -0
- package/mgba-bridge/vendor/mgba/src/util/patch-ips.c +93 -0
- package/mgba-bridge/vendor/mgba/src/util/patch-ups.c +254 -0
- package/mgba-bridge/vendor/mgba/src/util/patch.c +25 -0
- package/mgba-bridge/vendor/mgba/src/util/ring-fifo.c +104 -0
- package/mgba-bridge/vendor/mgba/src/util/sfo.c +229 -0
- package/mgba-bridge/vendor/mgba/src/util/sha1.c +258 -0
- package/mgba-bridge/vendor/mgba/src/util/string.c +652 -0
- package/mgba-bridge/vendor/mgba/src/util/table.c +682 -0
- package/mgba-bridge/vendor/mgba/src/util/text-codec.c +197 -0
- package/mgba-bridge/vendor/mgba/src/util/vector.c +18 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-devlist.c +104 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-dirent.c +173 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-fd.c +282 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-fifo.c +102 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-file.c +159 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-lzma.c +404 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-mem.c +331 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs/vfs-zip.c +804 -0
- package/mgba-bridge/vendor/mgba/src/util/vfs.c +320 -0
- package/mgba-bridge/vendor/mgba/tools/deploy-mac.py +178 -0
- package/mgba-bridge/vendor/mgba/tools/deploy-win.sh +27 -0
- package/mgba-bridge/vendor/mgba/tools/dlls.gdb +3 -0
- package/mgba-bridge/vendor/mgba/tools/make-dotcode.py +154 -0
- package/mgba-bridge/vendor/mgba/tools/perf.py +230 -0
- package/mgba-bridge/vendor/mgba/tools/sanitize-deb.sh +74 -0
- package/mgba-bridge/vendor/mgba/tools/snes-tile.py +94 -0
- package/mgba-bridge/vendor/mgba/version.cmake +62 -0
- package/package.json +47 -0
- package/src/audio-output.ts +387 -0
- package/src/config.ts +114 -0
- package/src/constants.ts +37 -0
- package/src/extension.ts +570 -0
- package/src/gameboy-mgba.ts +133 -0
- package/src/gameboy-types.ts +24 -0
- package/src/gameboy.ts +33 -0
- package/src/index.ts +1 -0
- package/src/mgba/bridge-bin.ts +66 -0
- package/src/mgba/bridge.ts +145 -0
- package/src/mgba/protocol.ts +30 -0
- package/src/mgba/stdio.ts +74 -0
- package/src/notify.ts +12 -0
- package/src/pi-boy-component.ts +372 -0
- package/src/render/ansi.ts +239 -0
- package/src/render/kitty.ts +154 -0
- package/src/roms.ts +163 -0
- package/src/runtime.ts +36 -0
- package/src/save-state.ts +94 -0
- package/src/terminal.ts +18 -0
- package/tsconfig.json +11 -0
- package/types/shims.d.ts +121 -0
|
@@ -0,0 +1,2428 @@
|
|
|
1
|
+
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
|
2
|
+
# @configure_input@
|
|
3
|
+
|
|
4
|
+
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
|
5
|
+
|
|
6
|
+
# This Makefile.in is free software; the Free Software Foundation
|
|
7
|
+
# gives unlimited permission to copy and/or distribute it,
|
|
8
|
+
# with or without modifications, as long as this notice is preserved.
|
|
9
|
+
|
|
10
|
+
# This program is distributed in the hope that it will be useful,
|
|
11
|
+
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
|
|
12
|
+
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
13
|
+
# PARTICULAR PURPOSE.
|
|
14
|
+
|
|
15
|
+
@SET_MAKE@
|
|
16
|
+
|
|
17
|
+
# Makefile.am, the source file for Makefile.in (and hence Makefile), is
|
|
18
|
+
#
|
|
19
|
+
# Copyright (c) 2018 Cosmin Truta
|
|
20
|
+
# Copyright (c) 2004-2016 Glenn Randers-Pehrson
|
|
21
|
+
#
|
|
22
|
+
# This code is released under the libpng license.
|
|
23
|
+
# For conditions of distribution and use, see the disclaimer
|
|
24
|
+
# and license in png.h
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
VPATH = @srcdir@
|
|
31
|
+
am__is_gnu_make = { \
|
|
32
|
+
if test -z '$(MAKELEVEL)'; then \
|
|
33
|
+
false; \
|
|
34
|
+
elif test -n '$(MAKE_HOST)'; then \
|
|
35
|
+
true; \
|
|
36
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
|
37
|
+
true; \
|
|
38
|
+
else \
|
|
39
|
+
false; \
|
|
40
|
+
fi; \
|
|
41
|
+
}
|
|
42
|
+
am__make_running_with_option = \
|
|
43
|
+
case $${target_option-} in \
|
|
44
|
+
?) ;; \
|
|
45
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
|
46
|
+
"target option '$${target_option-}' specified" >&2; \
|
|
47
|
+
exit 1;; \
|
|
48
|
+
esac; \
|
|
49
|
+
has_opt=no; \
|
|
50
|
+
sane_makeflags=$$MAKEFLAGS; \
|
|
51
|
+
if $(am__is_gnu_make); then \
|
|
52
|
+
sane_makeflags=$$MFLAGS; \
|
|
53
|
+
else \
|
|
54
|
+
case $$MAKEFLAGS in \
|
|
55
|
+
*\\[\ \ ]*) \
|
|
56
|
+
bs=\\; \
|
|
57
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
|
58
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
|
59
|
+
esac; \
|
|
60
|
+
fi; \
|
|
61
|
+
skip_next=no; \
|
|
62
|
+
strip_trailopt () \
|
|
63
|
+
{ \
|
|
64
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
|
65
|
+
}; \
|
|
66
|
+
for flg in $$sane_makeflags; do \
|
|
67
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
|
68
|
+
case $$flg in \
|
|
69
|
+
*=*|--*) continue;; \
|
|
70
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
|
71
|
+
-*I?*) strip_trailopt 'I';; \
|
|
72
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
|
73
|
+
-*O?*) strip_trailopt 'O';; \
|
|
74
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
|
75
|
+
-*l?*) strip_trailopt 'l';; \
|
|
76
|
+
-[dEDm]) skip_next=yes;; \
|
|
77
|
+
-[JT]) skip_next=yes;; \
|
|
78
|
+
esac; \
|
|
79
|
+
case $$flg in \
|
|
80
|
+
*$$target_option*) has_opt=yes; break;; \
|
|
81
|
+
esac; \
|
|
82
|
+
done; \
|
|
83
|
+
test $$has_opt = yes
|
|
84
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
|
85
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
|
86
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
|
87
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
|
88
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
89
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
90
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
|
91
|
+
install_sh_PROGRAM = $(install_sh) -c
|
|
92
|
+
install_sh_SCRIPT = $(install_sh) -c
|
|
93
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
|
94
|
+
transform = $(program_transform_name)
|
|
95
|
+
NORMAL_INSTALL = :
|
|
96
|
+
PRE_INSTALL = :
|
|
97
|
+
POST_INSTALL = :
|
|
98
|
+
NORMAL_UNINSTALL = :
|
|
99
|
+
PRE_UNINSTALL = :
|
|
100
|
+
POST_UNINSTALL = :
|
|
101
|
+
build_triplet = @build@
|
|
102
|
+
host_triplet = @host@
|
|
103
|
+
check_PROGRAMS = pngtest$(EXEEXT) pngunknown$(EXEEXT) \
|
|
104
|
+
pngstest$(EXEEXT) pngvalid$(EXEEXT) pngimage$(EXEEXT) \
|
|
105
|
+
pngcp$(EXEEXT) $(am__EXEEXT_1)
|
|
106
|
+
@HAVE_CLOCK_GETTIME_TRUE@am__append_1 = timepng
|
|
107
|
+
bin_PROGRAMS = pngfix$(EXEEXT) png-fix-itxt$(EXEEXT)
|
|
108
|
+
@PNG_ARM_NEON_TRUE@am__append_2 = arm/arm_init.c\
|
|
109
|
+
@PNG_ARM_NEON_TRUE@ arm/filter_neon.S arm/filter_neon_intrinsics.c \
|
|
110
|
+
@PNG_ARM_NEON_TRUE@ arm/palette_neon_intrinsics.c
|
|
111
|
+
|
|
112
|
+
@PNG_MIPS_MSA_TRUE@am__append_3 = mips/mips_init.c\
|
|
113
|
+
@PNG_MIPS_MSA_TRUE@ mips/filter_msa_intrinsics.c
|
|
114
|
+
|
|
115
|
+
@PNG_INTEL_SSE_TRUE@am__append_4 = intel/intel_init.c\
|
|
116
|
+
@PNG_INTEL_SSE_TRUE@ intel/filter_sse2_intrinsics.c
|
|
117
|
+
|
|
118
|
+
@PNG_POWERPC_VSX_TRUE@am__append_5 = powerpc/powerpc_init.c\
|
|
119
|
+
@PNG_POWERPC_VSX_TRUE@ powerpc/filter_vsx_intrinsics.c
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
# Versioned symbols and restricted exports
|
|
123
|
+
@HAVE_LD_VERSION_SCRIPT_TRUE@@HAVE_SOLARIS_LD_TRUE@am__append_6 = -Wl,-M -Wl,libpng.vers
|
|
124
|
+
@HAVE_LD_VERSION_SCRIPT_TRUE@@HAVE_SOLARIS_LD_FALSE@am__append_7 = -Wl,--version-script=libpng.vers
|
|
125
|
+
# Only restricted exports when possible
|
|
126
|
+
@HAVE_LD_VERSION_SCRIPT_FALSE@am__append_8 = -export-symbols libpng.sym
|
|
127
|
+
@DO_PNG_PREFIX_TRUE@am__append_9 = -DPNG_PREFIX='@PNG_PREFIX@'
|
|
128
|
+
subdir = .
|
|
129
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
130
|
+
am__aclocal_m4_deps = $(top_srcdir)/scripts/libtool.m4 \
|
|
131
|
+
$(top_srcdir)/scripts/ltoptions.m4 \
|
|
132
|
+
$(top_srcdir)/scripts/ltsugar.m4 \
|
|
133
|
+
$(top_srcdir)/scripts/ltversion.m4 \
|
|
134
|
+
$(top_srcdir)/scripts/lt~obsolete.m4 \
|
|
135
|
+
$(top_srcdir)/configure.ac
|
|
136
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
137
|
+
$(ACLOCAL_M4)
|
|
138
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
|
139
|
+
$(am__configure_deps) $(pkginclude_HEADERS) $(am__DIST_COMMON)
|
|
140
|
+
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
|
|
141
|
+
configure.lineno config.status.lineno
|
|
142
|
+
mkinstalldirs = $(install_sh) -d
|
|
143
|
+
CONFIG_HEADER = config.h
|
|
144
|
+
CONFIG_CLEAN_FILES = libpng.pc libpng-config
|
|
145
|
+
CONFIG_CLEAN_VPATH_FILES =
|
|
146
|
+
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \
|
|
147
|
+
"$(DESTDIR)$(bindir)" "$(DESTDIR)$(man3dir)" \
|
|
148
|
+
"$(DESTDIR)$(man5dir)" "$(DESTDIR)$(pkgconfigdir)" \
|
|
149
|
+
"$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkgincludedir)"
|
|
150
|
+
@HAVE_CLOCK_GETTIME_TRUE@am__EXEEXT_1 = timepng$(EXEEXT)
|
|
151
|
+
PROGRAMS = $(bin_PROGRAMS)
|
|
152
|
+
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
|
|
153
|
+
am__vpath_adj = case $$p in \
|
|
154
|
+
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
|
|
155
|
+
*) f=$$p;; \
|
|
156
|
+
esac;
|
|
157
|
+
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
|
|
158
|
+
am__install_max = 40
|
|
159
|
+
am__nobase_strip_setup = \
|
|
160
|
+
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
|
|
161
|
+
am__nobase_strip = \
|
|
162
|
+
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
|
|
163
|
+
am__nobase_list = $(am__nobase_strip_setup); \
|
|
164
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
|
165
|
+
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
|
|
166
|
+
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
|
|
167
|
+
if (++n[$$2] == $(am__install_max)) \
|
|
168
|
+
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
|
|
169
|
+
END { for (dir in files) print dir, files[dir] }'
|
|
170
|
+
am__base_list = \
|
|
171
|
+
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
|
|
172
|
+
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
|
|
173
|
+
am__uninstall_files_from_dir = { \
|
|
174
|
+
test -z "$$files" \
|
|
175
|
+
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|
|
176
|
+
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
|
|
177
|
+
$(am__cd) "$$dir" && rm -f $$files; }; \
|
|
178
|
+
}
|
|
179
|
+
LTLIBRARIES = $(lib_LTLIBRARIES)
|
|
180
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LIBADD =
|
|
181
|
+
am__libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES_DIST = png.c \
|
|
182
|
+
pngerror.c pngget.c pngmem.c pngpread.c pngread.c pngrio.c \
|
|
183
|
+
pngrtran.c pngrutil.c pngset.c pngtrans.c pngwio.c pngwrite.c \
|
|
184
|
+
pngwtran.c pngwutil.c png.h pngconf.h pngdebug.h pnginfo.h \
|
|
185
|
+
pngpriv.h pngstruct.h pngusr.dfa arm/arm_init.c \
|
|
186
|
+
arm/filter_neon.S arm/filter_neon_intrinsics.c \
|
|
187
|
+
arm/palette_neon_intrinsics.c mips/mips_init.c \
|
|
188
|
+
mips/filter_msa_intrinsics.c intel/intel_init.c \
|
|
189
|
+
intel/filter_sse2_intrinsics.c powerpc/powerpc_init.c \
|
|
190
|
+
powerpc/filter_vsx_intrinsics.c
|
|
191
|
+
am__dirstamp = $(am__leading_dot)dirstamp
|
|
192
|
+
@PNG_ARM_NEON_TRUE@am__objects_1 = arm/arm_init.lo arm/filter_neon.lo \
|
|
193
|
+
@PNG_ARM_NEON_TRUE@ arm/filter_neon_intrinsics.lo \
|
|
194
|
+
@PNG_ARM_NEON_TRUE@ arm/palette_neon_intrinsics.lo
|
|
195
|
+
@PNG_MIPS_MSA_TRUE@am__objects_2 = mips/mips_init.lo \
|
|
196
|
+
@PNG_MIPS_MSA_TRUE@ mips/filter_msa_intrinsics.lo
|
|
197
|
+
@PNG_INTEL_SSE_TRUE@am__objects_3 = intel/intel_init.lo \
|
|
198
|
+
@PNG_INTEL_SSE_TRUE@ intel/filter_sse2_intrinsics.lo
|
|
199
|
+
@PNG_POWERPC_VSX_TRUE@am__objects_4 = powerpc/powerpc_init.lo \
|
|
200
|
+
@PNG_POWERPC_VSX_TRUE@ powerpc/filter_vsx_intrinsics.lo
|
|
201
|
+
am_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS = png.lo pngerror.lo \
|
|
202
|
+
pngget.lo pngmem.lo pngpread.lo pngread.lo pngrio.lo \
|
|
203
|
+
pngrtran.lo pngrutil.lo pngset.lo pngtrans.lo pngwio.lo \
|
|
204
|
+
pngwrite.lo pngwtran.lo pngwutil.lo $(am__objects_1) \
|
|
205
|
+
$(am__objects_2) $(am__objects_3) $(am__objects_4)
|
|
206
|
+
nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS =
|
|
207
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS = \
|
|
208
|
+
$(am_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS) \
|
|
209
|
+
$(nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS)
|
|
210
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
|
211
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
|
212
|
+
am__v_lt_0 = --silent
|
|
213
|
+
am__v_lt_1 =
|
|
214
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LINK = $(LIBTOOL) $(AM_V_lt) \
|
|
215
|
+
--tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
|
|
216
|
+
$(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
217
|
+
$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS) $(LDFLAGS) -o \
|
|
218
|
+
$@
|
|
219
|
+
am_png_fix_itxt_OBJECTS = contrib/tools/png-fix-itxt.$(OBJEXT)
|
|
220
|
+
png_fix_itxt_OBJECTS = $(am_png_fix_itxt_OBJECTS)
|
|
221
|
+
png_fix_itxt_LDADD = $(LDADD)
|
|
222
|
+
am_pngcp_OBJECTS = contrib/tools/pngcp.$(OBJEXT)
|
|
223
|
+
pngcp_OBJECTS = $(am_pngcp_OBJECTS)
|
|
224
|
+
pngcp_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
225
|
+
am_pngfix_OBJECTS = contrib/tools/pngfix.$(OBJEXT)
|
|
226
|
+
pngfix_OBJECTS = $(am_pngfix_OBJECTS)
|
|
227
|
+
pngfix_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
228
|
+
am_pngimage_OBJECTS = contrib/libtests/pngimage.$(OBJEXT)
|
|
229
|
+
pngimage_OBJECTS = $(am_pngimage_OBJECTS)
|
|
230
|
+
pngimage_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
231
|
+
am_pngstest_OBJECTS = contrib/libtests/pngstest.$(OBJEXT)
|
|
232
|
+
pngstest_OBJECTS = $(am_pngstest_OBJECTS)
|
|
233
|
+
pngstest_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
234
|
+
am_pngtest_OBJECTS = pngtest.$(OBJEXT)
|
|
235
|
+
pngtest_OBJECTS = $(am_pngtest_OBJECTS)
|
|
236
|
+
pngtest_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
237
|
+
am_pngunknown_OBJECTS = contrib/libtests/pngunknown.$(OBJEXT)
|
|
238
|
+
pngunknown_OBJECTS = $(am_pngunknown_OBJECTS)
|
|
239
|
+
pngunknown_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
240
|
+
am_pngvalid_OBJECTS = contrib/libtests/pngvalid.$(OBJEXT)
|
|
241
|
+
pngvalid_OBJECTS = $(am_pngvalid_OBJECTS)
|
|
242
|
+
pngvalid_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
243
|
+
am_timepng_OBJECTS = contrib/libtests/timepng.$(OBJEXT)
|
|
244
|
+
timepng_OBJECTS = $(am_timepng_OBJECTS)
|
|
245
|
+
timepng_DEPENDENCIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
246
|
+
SCRIPTS = $(bin_SCRIPTS)
|
|
247
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
|
248
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
249
|
+
am__v_P_0 = false
|
|
250
|
+
am__v_P_1 = :
|
|
251
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
|
252
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
|
253
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
|
254
|
+
am__v_GEN_1 =
|
|
255
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
|
256
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|
257
|
+
am__v_at_0 = @
|
|
258
|
+
am__v_at_1 =
|
|
259
|
+
DEFAULT_INCLUDES = -I.@am__isrc@
|
|
260
|
+
depcomp = $(SHELL) $(top_srcdir)/depcomp
|
|
261
|
+
am__maybe_remake_depfiles = depfiles
|
|
262
|
+
am__depfiles_remade = ./$(DEPDIR)/png.Plo ./$(DEPDIR)/pngerror.Plo \
|
|
263
|
+
./$(DEPDIR)/pngget.Plo ./$(DEPDIR)/pngmem.Plo \
|
|
264
|
+
./$(DEPDIR)/pngpread.Plo ./$(DEPDIR)/pngread.Plo \
|
|
265
|
+
./$(DEPDIR)/pngrio.Plo ./$(DEPDIR)/pngrtran.Plo \
|
|
266
|
+
./$(DEPDIR)/pngrutil.Plo ./$(DEPDIR)/pngset.Plo \
|
|
267
|
+
./$(DEPDIR)/pngtest.Po ./$(DEPDIR)/pngtrans.Plo \
|
|
268
|
+
./$(DEPDIR)/pngwio.Plo ./$(DEPDIR)/pngwrite.Plo \
|
|
269
|
+
./$(DEPDIR)/pngwtran.Plo ./$(DEPDIR)/pngwutil.Plo \
|
|
270
|
+
arm/$(DEPDIR)/arm_init.Plo arm/$(DEPDIR)/filter_neon.Plo \
|
|
271
|
+
arm/$(DEPDIR)/filter_neon_intrinsics.Plo \
|
|
272
|
+
arm/$(DEPDIR)/palette_neon_intrinsics.Plo \
|
|
273
|
+
contrib/libtests/$(DEPDIR)/pngimage.Po \
|
|
274
|
+
contrib/libtests/$(DEPDIR)/pngstest.Po \
|
|
275
|
+
contrib/libtests/$(DEPDIR)/pngunknown.Po \
|
|
276
|
+
contrib/libtests/$(DEPDIR)/pngvalid.Po \
|
|
277
|
+
contrib/libtests/$(DEPDIR)/timepng.Po \
|
|
278
|
+
contrib/tools/$(DEPDIR)/png-fix-itxt.Po \
|
|
279
|
+
contrib/tools/$(DEPDIR)/pngcp.Po \
|
|
280
|
+
contrib/tools/$(DEPDIR)/pngfix.Po \
|
|
281
|
+
intel/$(DEPDIR)/filter_sse2_intrinsics.Plo \
|
|
282
|
+
intel/$(DEPDIR)/intel_init.Plo \
|
|
283
|
+
mips/$(DEPDIR)/filter_msa_intrinsics.Plo \
|
|
284
|
+
mips/$(DEPDIR)/mips_init.Plo \
|
|
285
|
+
powerpc/$(DEPDIR)/filter_vsx_intrinsics.Plo \
|
|
286
|
+
powerpc/$(DEPDIR)/powerpc_init.Plo
|
|
287
|
+
am__mv = mv -f
|
|
288
|
+
CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
|
|
289
|
+
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS)
|
|
290
|
+
LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
291
|
+
$(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) \
|
|
292
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
293
|
+
$(AM_CCASFLAGS) $(CCASFLAGS)
|
|
294
|
+
AM_V_CPPAS = $(am__v_CPPAS_@AM_V@)
|
|
295
|
+
am__v_CPPAS_ = $(am__v_CPPAS_@AM_DEFAULT_V@)
|
|
296
|
+
am__v_CPPAS_0 = @echo " CPPAS " $@;
|
|
297
|
+
am__v_CPPAS_1 =
|
|
298
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
299
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
300
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
301
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
|
302
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
303
|
+
$(AM_CFLAGS) $(CFLAGS)
|
|
304
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
|
305
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
|
306
|
+
am__v_CC_0 = @echo " CC " $@;
|
|
307
|
+
am__v_CC_1 =
|
|
308
|
+
CCLD = $(CC)
|
|
309
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
310
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
311
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
312
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
|
313
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
|
314
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
|
315
|
+
am__v_CCLD_1 =
|
|
316
|
+
SOURCES = $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES) \
|
|
317
|
+
$(nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES) \
|
|
318
|
+
$(png_fix_itxt_SOURCES) $(pngcp_SOURCES) $(pngfix_SOURCES) \
|
|
319
|
+
$(pngimage_SOURCES) $(pngstest_SOURCES) $(pngtest_SOURCES) \
|
|
320
|
+
$(pngunknown_SOURCES) $(pngvalid_SOURCES) $(timepng_SOURCES)
|
|
321
|
+
DIST_SOURCES = \
|
|
322
|
+
$(am__libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES_DIST) \
|
|
323
|
+
$(png_fix_itxt_SOURCES) $(pngcp_SOURCES) $(pngfix_SOURCES) \
|
|
324
|
+
$(pngimage_SOURCES) $(pngstest_SOURCES) $(pngtest_SOURCES) \
|
|
325
|
+
$(pngunknown_SOURCES) $(pngvalid_SOURCES) $(timepng_SOURCES)
|
|
326
|
+
am__can_run_installinfo = \
|
|
327
|
+
case $$AM_UPDATE_INFO_DIR in \
|
|
328
|
+
n|no|NO) false;; \
|
|
329
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
|
330
|
+
esac
|
|
331
|
+
man3dir = $(mandir)/man3
|
|
332
|
+
man5dir = $(mandir)/man5
|
|
333
|
+
NROFF = nroff
|
|
334
|
+
MANS = $(dist_man_MANS)
|
|
335
|
+
DATA = $(pkgconfig_DATA)
|
|
336
|
+
HEADERS = $(nodist_pkginclude_HEADERS) $(pkginclude_HEADERS)
|
|
337
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
|
338
|
+
$(LISP)config.h.in
|
|
339
|
+
# Read a list of newline-separated strings from the standard input,
|
|
340
|
+
# and print each of them once, without duplicates. Input order is
|
|
341
|
+
# *not* preserved.
|
|
342
|
+
am__uniquify_input = $(AWK) '\
|
|
343
|
+
BEGIN { nonempty = 0; } \
|
|
344
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
|
345
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
|
346
|
+
'
|
|
347
|
+
# Make sure the list of sources is unique. This is necessary because,
|
|
348
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
|
349
|
+
# for different programs/libraries.
|
|
350
|
+
am__define_uniq_tagged_files = \
|
|
351
|
+
list='$(am__tagged_files)'; \
|
|
352
|
+
unique=`for i in $$list; do \
|
|
353
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
354
|
+
done | $(am__uniquify_input)`
|
|
355
|
+
ETAGS = etags
|
|
356
|
+
CTAGS = ctags
|
|
357
|
+
CSCOPE = cscope
|
|
358
|
+
AM_RECURSIVE_TARGETS = cscope check recheck
|
|
359
|
+
am__tty_colors_dummy = \
|
|
360
|
+
mgn= red= grn= lgn= blu= brg= std=; \
|
|
361
|
+
am__color_tests=no
|
|
362
|
+
am__tty_colors = { \
|
|
363
|
+
$(am__tty_colors_dummy); \
|
|
364
|
+
if test "X$(AM_COLOR_TESTS)" = Xno; then \
|
|
365
|
+
am__color_tests=no; \
|
|
366
|
+
elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
|
|
367
|
+
am__color_tests=yes; \
|
|
368
|
+
elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
|
|
369
|
+
am__color_tests=yes; \
|
|
370
|
+
fi; \
|
|
371
|
+
if test $$am__color_tests = yes; then \
|
|
372
|
+
red='[0;31m'; \
|
|
373
|
+
grn='[0;32m'; \
|
|
374
|
+
lgn='[1;32m'; \
|
|
375
|
+
blu='[1;34m'; \
|
|
376
|
+
mgn='[0;35m'; \
|
|
377
|
+
brg='[1m'; \
|
|
378
|
+
std='[m'; \
|
|
379
|
+
fi; \
|
|
380
|
+
}
|
|
381
|
+
am__recheck_rx = ^[ ]*:recheck:[ ]*
|
|
382
|
+
am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
|
|
383
|
+
am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
|
|
384
|
+
# A command that, given a newline-separated list of test names on the
|
|
385
|
+
# standard input, print the name of the tests that are to be re-run
|
|
386
|
+
# upon "make recheck".
|
|
387
|
+
am__list_recheck_tests = $(AWK) '{ \
|
|
388
|
+
recheck = 1; \
|
|
389
|
+
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
|
|
390
|
+
{ \
|
|
391
|
+
if (rc < 0) \
|
|
392
|
+
{ \
|
|
393
|
+
if ((getline line2 < ($$0 ".log")) < 0) \
|
|
394
|
+
recheck = 0; \
|
|
395
|
+
break; \
|
|
396
|
+
} \
|
|
397
|
+
else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
|
|
398
|
+
{ \
|
|
399
|
+
recheck = 0; \
|
|
400
|
+
break; \
|
|
401
|
+
} \
|
|
402
|
+
else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
|
|
403
|
+
{ \
|
|
404
|
+
break; \
|
|
405
|
+
} \
|
|
406
|
+
}; \
|
|
407
|
+
if (recheck) \
|
|
408
|
+
print $$0; \
|
|
409
|
+
close ($$0 ".trs"); \
|
|
410
|
+
close ($$0 ".log"); \
|
|
411
|
+
}'
|
|
412
|
+
# A command that, given a newline-separated list of test names on the
|
|
413
|
+
# standard input, create the global log from their .trs and .log files.
|
|
414
|
+
am__create_global_log = $(AWK) ' \
|
|
415
|
+
function fatal(msg) \
|
|
416
|
+
{ \
|
|
417
|
+
print "fatal: making $@: " msg | "cat >&2"; \
|
|
418
|
+
exit 1; \
|
|
419
|
+
} \
|
|
420
|
+
function rst_section(header) \
|
|
421
|
+
{ \
|
|
422
|
+
print header; \
|
|
423
|
+
len = length(header); \
|
|
424
|
+
for (i = 1; i <= len; i = i + 1) \
|
|
425
|
+
printf "="; \
|
|
426
|
+
printf "\n\n"; \
|
|
427
|
+
} \
|
|
428
|
+
{ \
|
|
429
|
+
copy_in_global_log = 1; \
|
|
430
|
+
global_test_result = "RUN"; \
|
|
431
|
+
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
|
|
432
|
+
{ \
|
|
433
|
+
if (rc < 0) \
|
|
434
|
+
fatal("failed to read from " $$0 ".trs"); \
|
|
435
|
+
if (line ~ /$(am__global_test_result_rx)/) \
|
|
436
|
+
{ \
|
|
437
|
+
sub("$(am__global_test_result_rx)", "", line); \
|
|
438
|
+
sub("[ ]*$$", "", line); \
|
|
439
|
+
global_test_result = line; \
|
|
440
|
+
} \
|
|
441
|
+
else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
|
|
442
|
+
copy_in_global_log = 0; \
|
|
443
|
+
}; \
|
|
444
|
+
if (copy_in_global_log) \
|
|
445
|
+
{ \
|
|
446
|
+
rst_section(global_test_result ": " $$0); \
|
|
447
|
+
while ((rc = (getline line < ($$0 ".log"))) != 0) \
|
|
448
|
+
{ \
|
|
449
|
+
if (rc < 0) \
|
|
450
|
+
fatal("failed to read from " $$0 ".log"); \
|
|
451
|
+
print line; \
|
|
452
|
+
}; \
|
|
453
|
+
printf "\n"; \
|
|
454
|
+
}; \
|
|
455
|
+
close ($$0 ".trs"); \
|
|
456
|
+
close ($$0 ".log"); \
|
|
457
|
+
}'
|
|
458
|
+
# Restructured Text title.
|
|
459
|
+
am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
|
|
460
|
+
# Solaris 10 'make', and several other traditional 'make' implementations,
|
|
461
|
+
# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
|
|
462
|
+
# by disabling -e (using the XSI extension "set +e") if it's set.
|
|
463
|
+
am__sh_e_setup = case $$- in *e*) set +e;; esac
|
|
464
|
+
# Default flags passed to test drivers.
|
|
465
|
+
am__common_driver_flags = \
|
|
466
|
+
--color-tests "$$am__color_tests" \
|
|
467
|
+
--enable-hard-errors "$$am__enable_hard_errors" \
|
|
468
|
+
--expect-failure "$$am__expect_failure"
|
|
469
|
+
# To be inserted before the command running the test. Creates the
|
|
470
|
+
# directory for the log if needed. Stores in $dir the directory
|
|
471
|
+
# containing $f, in $tst the test, in $log the log. Executes the
|
|
472
|
+
# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
|
|
473
|
+
# passes TESTS_ENVIRONMENT. Set up options for the wrapper that
|
|
474
|
+
# will run the test scripts (or their associated LOG_COMPILER, if
|
|
475
|
+
# thy have one).
|
|
476
|
+
am__check_pre = \
|
|
477
|
+
$(am__sh_e_setup); \
|
|
478
|
+
$(am__vpath_adj_setup) $(am__vpath_adj) \
|
|
479
|
+
$(am__tty_colors); \
|
|
480
|
+
srcdir=$(srcdir); export srcdir; \
|
|
481
|
+
case "$@" in \
|
|
482
|
+
*/*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
|
|
483
|
+
*) am__odir=.;; \
|
|
484
|
+
esac; \
|
|
485
|
+
test "x$$am__odir" = x"." || test -d "$$am__odir" \
|
|
486
|
+
|| $(MKDIR_P) "$$am__odir" || exit $$?; \
|
|
487
|
+
if test -f "./$$f"; then dir=./; \
|
|
488
|
+
elif test -f "$$f"; then dir=; \
|
|
489
|
+
else dir="$(srcdir)/"; fi; \
|
|
490
|
+
tst=$$dir$$f; log='$@'; \
|
|
491
|
+
if test -n '$(DISABLE_HARD_ERRORS)'; then \
|
|
492
|
+
am__enable_hard_errors=no; \
|
|
493
|
+
else \
|
|
494
|
+
am__enable_hard_errors=yes; \
|
|
495
|
+
fi; \
|
|
496
|
+
case " $(XFAIL_TESTS) " in \
|
|
497
|
+
*[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
|
|
498
|
+
am__expect_failure=yes;; \
|
|
499
|
+
*) \
|
|
500
|
+
am__expect_failure=no;; \
|
|
501
|
+
esac; \
|
|
502
|
+
$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
|
|
503
|
+
# A shell command to get the names of the tests scripts with any registered
|
|
504
|
+
# extension removed (i.e., equivalently, the names of the test logs, with
|
|
505
|
+
# the '.log' extension removed). The result is saved in the shell variable
|
|
506
|
+
# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
|
|
507
|
+
# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
|
|
508
|
+
# since that might cause problem with VPATH rewrites for suffix-less tests.
|
|
509
|
+
# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
|
|
510
|
+
am__set_TESTS_bases = \
|
|
511
|
+
bases='$(TEST_LOGS)'; \
|
|
512
|
+
bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
|
|
513
|
+
bases=`echo $$bases`
|
|
514
|
+
RECHECK_LOGS = $(TEST_LOGS)
|
|
515
|
+
TEST_SUITE_LOG = test-suite.log
|
|
516
|
+
TEST_EXTENSIONS = @EXEEXT@ .test
|
|
517
|
+
LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
|
|
518
|
+
LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
|
|
519
|
+
am__set_b = \
|
|
520
|
+
case '$@' in \
|
|
521
|
+
*/*) \
|
|
522
|
+
case '$*' in \
|
|
523
|
+
*/*) b='$*';; \
|
|
524
|
+
*) b=`echo '$@' | sed 's/\.log$$//'`; \
|
|
525
|
+
esac;; \
|
|
526
|
+
*) \
|
|
527
|
+
b='$*';; \
|
|
528
|
+
esac
|
|
529
|
+
am__test_logs1 = $(TESTS:=.log)
|
|
530
|
+
am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
|
|
531
|
+
TEST_LOGS = $(am__test_logs2:.test.log=.log)
|
|
532
|
+
TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
|
|
533
|
+
TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
|
|
534
|
+
$(TEST_LOG_FLAGS)
|
|
535
|
+
am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \
|
|
536
|
+
$(srcdir)/config.h.in $(srcdir)/libpng-config.in \
|
|
537
|
+
$(srcdir)/libpng.pc.in AUTHORS INSTALL README TODO compile \
|
|
538
|
+
config.guess config.sub depcomp install-sh ltmain.sh missing \
|
|
539
|
+
test-driver
|
|
540
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
541
|
+
distdir = $(PACKAGE)-$(VERSION)
|
|
542
|
+
top_distdir = $(distdir)
|
|
543
|
+
am__remove_distdir = \
|
|
544
|
+
if test -d "$(distdir)"; then \
|
|
545
|
+
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
|
|
546
|
+
&& rm -rf "$(distdir)" \
|
|
547
|
+
|| { sleep 5 && rm -rf "$(distdir)"; }; \
|
|
548
|
+
else :; fi
|
|
549
|
+
am__post_remove_distdir = $(am__remove_distdir)
|
|
550
|
+
DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.xz
|
|
551
|
+
GZIP_ENV = --best
|
|
552
|
+
DIST_TARGETS = dist-xz dist-gzip
|
|
553
|
+
distuninstallcheck_listfiles = find . -type f -print
|
|
554
|
+
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
|
|
555
|
+
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
|
|
556
|
+
distcleancheck_listfiles = find . -type f -print
|
|
557
|
+
|
|
558
|
+
#distribute headers in /usr/include/libpng/*
|
|
559
|
+
pkgincludedir = $(includedir)/$(PNGLIB_BASENAME)
|
|
560
|
+
ACLOCAL = @ACLOCAL@
|
|
561
|
+
AMTAR = @AMTAR@
|
|
562
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
563
|
+
AR = @AR@
|
|
564
|
+
AS = @AS@
|
|
565
|
+
AUTOCONF = @AUTOCONF@
|
|
566
|
+
AUTOHEADER = @AUTOHEADER@
|
|
567
|
+
AUTOMAKE = @AUTOMAKE@
|
|
568
|
+
AWK = @AWK@
|
|
569
|
+
CC = @CC@
|
|
570
|
+
CCAS = @CCAS@
|
|
571
|
+
CCASDEPMODE = @CCASDEPMODE@
|
|
572
|
+
CCASFLAGS = @CCASFLAGS@
|
|
573
|
+
CCDEPMODE = @CCDEPMODE@
|
|
574
|
+
CFLAGS = @CFLAGS@
|
|
575
|
+
CPP = @CPP@
|
|
576
|
+
CPPFLAGS = @CPPFLAGS@
|
|
577
|
+
CYGPATH_W = @CYGPATH_W@
|
|
578
|
+
DEFS = @DEFS@
|
|
579
|
+
DEPDIR = @DEPDIR@
|
|
580
|
+
|
|
581
|
+
# DFNCPP is normally just CPP - the C preprocessor - but on Solaris and maybe
|
|
582
|
+
# other operating systems (NeXT?) the C preprocessor selected by configure
|
|
583
|
+
# checks input tokens for validity - effectively it performs part of the ANSI-C
|
|
584
|
+
# parsing - and therefore fails with the .df files. configure.ac has special
|
|
585
|
+
# checks for this and sets DFNCPP appropriately.
|
|
586
|
+
DFNCPP = @DFNCPP@
|
|
587
|
+
DLLTOOL = @DLLTOOL@
|
|
588
|
+
DSYMUTIL = @DSYMUTIL@
|
|
589
|
+
DUMPBIN = @DUMPBIN@
|
|
590
|
+
ECHO_C = @ECHO_C@
|
|
591
|
+
ECHO_N = @ECHO_N@
|
|
592
|
+
ECHO_T = @ECHO_T@
|
|
593
|
+
EGREP = @EGREP@
|
|
594
|
+
EXEEXT = @EXEEXT@
|
|
595
|
+
FGREP = @FGREP@
|
|
596
|
+
GREP = @GREP@
|
|
597
|
+
INSTALL = @INSTALL@
|
|
598
|
+
INSTALL_DATA = @INSTALL_DATA@
|
|
599
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
600
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
601
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
|
602
|
+
LD = @LD@
|
|
603
|
+
LDFLAGS = @LDFLAGS@
|
|
604
|
+
LIBOBJS = @LIBOBJS@
|
|
605
|
+
LIBS = @LIBS@
|
|
606
|
+
LIBTOOL = @LIBTOOL@
|
|
607
|
+
LIPO = @LIPO@
|
|
608
|
+
LN_S = @LN_S@
|
|
609
|
+
LTLIBOBJS = @LTLIBOBJS@
|
|
610
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
|
611
|
+
MAINT = @MAINT@
|
|
612
|
+
MAKEINFO = @MAKEINFO@
|
|
613
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
|
614
|
+
MKDIR_P = @MKDIR_P@
|
|
615
|
+
NM = @NM@
|
|
616
|
+
NMEDIT = @NMEDIT@
|
|
617
|
+
OBJDUMP = @OBJDUMP@
|
|
618
|
+
OBJEXT = @OBJEXT@
|
|
619
|
+
OTOOL = @OTOOL@
|
|
620
|
+
OTOOL64 = @OTOOL64@
|
|
621
|
+
PACKAGE = @PACKAGE@
|
|
622
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
623
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
|
624
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
|
625
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
|
626
|
+
PACKAGE_URL = @PACKAGE_URL@
|
|
627
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
628
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
|
629
|
+
PNGLIB_MAJOR = @PNGLIB_MAJOR@
|
|
630
|
+
PNGLIB_MINOR = @PNGLIB_MINOR@
|
|
631
|
+
PNGLIB_RELEASE = @PNGLIB_RELEASE@
|
|
632
|
+
PNGLIB_VERSION = @PNGLIB_VERSION@
|
|
633
|
+
|
|
634
|
+
# PNG_COPTS give extra options for the C compiler to be used on all compilation
|
|
635
|
+
# steps (unless targe_CFLAGS is specified; that will take precedence over
|
|
636
|
+
# AM_CFLAGS)
|
|
637
|
+
PNG_COPTS = @PNG_COPTS@
|
|
638
|
+
PNG_PREFIX = @PNG_PREFIX@
|
|
639
|
+
POW_LIB = @POW_LIB@
|
|
640
|
+
RANLIB = @RANLIB@
|
|
641
|
+
SED = @SED@
|
|
642
|
+
SET_MAKE = @SET_MAKE@
|
|
643
|
+
SHELL = @SHELL@
|
|
644
|
+
STRIP = @STRIP@
|
|
645
|
+
SYMBOL_PREFIX = @SYMBOL_PREFIX@
|
|
646
|
+
VERSION = @VERSION@
|
|
647
|
+
abs_builddir = @abs_builddir@
|
|
648
|
+
abs_srcdir = @abs_srcdir@
|
|
649
|
+
abs_top_builddir = @abs_top_builddir@
|
|
650
|
+
abs_top_srcdir = @abs_top_srcdir@
|
|
651
|
+
ac_ct_AR = @ac_ct_AR@
|
|
652
|
+
ac_ct_CC = @ac_ct_CC@
|
|
653
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
|
654
|
+
am__include = @am__include@
|
|
655
|
+
am__leading_dot = @am__leading_dot@
|
|
656
|
+
am__quote = @am__quote@
|
|
657
|
+
am__tar = @am__tar@
|
|
658
|
+
am__untar = @am__untar@
|
|
659
|
+
|
|
660
|
+
# generate the -config scripts if required
|
|
661
|
+
binconfigs = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
|
|
662
|
+
bindir = @bindir@
|
|
663
|
+
build = @build@
|
|
664
|
+
build_alias = @build_alias@
|
|
665
|
+
build_cpu = @build_cpu@
|
|
666
|
+
build_os = @build_os@
|
|
667
|
+
build_vendor = @build_vendor@
|
|
668
|
+
builddir = @builddir@
|
|
669
|
+
datadir = @datadir@
|
|
670
|
+
datarootdir = @datarootdir@
|
|
671
|
+
docdir = @docdir@
|
|
672
|
+
dvidir = @dvidir@
|
|
673
|
+
exec_prefix = @exec_prefix@
|
|
674
|
+
host = @host@
|
|
675
|
+
host_alias = @host_alias@
|
|
676
|
+
host_cpu = @host_cpu@
|
|
677
|
+
host_os = @host_os@
|
|
678
|
+
host_vendor = @host_vendor@
|
|
679
|
+
htmldir = @htmldir@
|
|
680
|
+
includedir = @includedir@
|
|
681
|
+
infodir = @infodir@
|
|
682
|
+
install_sh = @install_sh@
|
|
683
|
+
libdir = @libdir@
|
|
684
|
+
libexecdir = @libexecdir@
|
|
685
|
+
localedir = @localedir@
|
|
686
|
+
localstatedir = @localstatedir@
|
|
687
|
+
mandir = @mandir@
|
|
688
|
+
mkdir_p = @mkdir_p@
|
|
689
|
+
oldincludedir = @oldincludedir@
|
|
690
|
+
pdfdir = @pdfdir@
|
|
691
|
+
|
|
692
|
+
# pkg-config stuff, note that libpng.pc is always required in order
|
|
693
|
+
# to get the correct library
|
|
694
|
+
pkgconfigdir = @pkgconfigdir@
|
|
695
|
+
prefix = @prefix@
|
|
696
|
+
program_transform_name = @program_transform_name@
|
|
697
|
+
psdir = @psdir@
|
|
698
|
+
sbindir = @sbindir@
|
|
699
|
+
sharedstatedir = @sharedstatedir@
|
|
700
|
+
srcdir = @srcdir@
|
|
701
|
+
sysconfdir = @sysconfdir@
|
|
702
|
+
target_alias = @target_alias@
|
|
703
|
+
top_build_prefix = @top_build_prefix@
|
|
704
|
+
top_builddir = @top_builddir@
|
|
705
|
+
top_srcdir = @top_srcdir@
|
|
706
|
+
PNGLIB_BASENAME = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@
|
|
707
|
+
ACLOCAL_AMFLAGS = -I scripts
|
|
708
|
+
|
|
709
|
+
# This ensures that pnglibconf.h gets built at the start of 'make all' or
|
|
710
|
+
# 'make check', but it does not add dependencies to the individual programs,
|
|
711
|
+
# this is done below.
|
|
712
|
+
#
|
|
713
|
+
# IMPORTANT: always add the object modules of new programs to the list below
|
|
714
|
+
# because otherwise the sequence 'configure; make new-program' will *sometimes*
|
|
715
|
+
# result in the installed (system) pnglibconf.h being used and the result is
|
|
716
|
+
# always wrong and always very confusing.
|
|
717
|
+
BUILT_SOURCES = pnglibconf.h
|
|
718
|
+
pngtest_SOURCES = pngtest.c
|
|
719
|
+
pngtest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
720
|
+
pngvalid_SOURCES = contrib/libtests/pngvalid.c
|
|
721
|
+
pngvalid_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
722
|
+
pngstest_SOURCES = contrib/libtests/pngstest.c
|
|
723
|
+
pngstest_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
724
|
+
pngunknown_SOURCES = contrib/libtests/pngunknown.c
|
|
725
|
+
pngunknown_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
726
|
+
pngimage_SOURCES = contrib/libtests/pngimage.c
|
|
727
|
+
pngimage_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
728
|
+
timepng_SOURCES = contrib/libtests/timepng.c
|
|
729
|
+
timepng_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
730
|
+
pngfix_SOURCES = contrib/tools/pngfix.c
|
|
731
|
+
pngfix_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
732
|
+
png_fix_itxt_SOURCES = contrib/tools/png-fix-itxt.c
|
|
733
|
+
pngcp_SOURCES = contrib/tools/pngcp.c
|
|
734
|
+
pngcp_LDADD = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
735
|
+
|
|
736
|
+
# Generally these are single line shell scripts to run a test with a particular
|
|
737
|
+
# set of parameters:
|
|
738
|
+
TESTS = \
|
|
739
|
+
tests/pngtest\
|
|
740
|
+
tests/pngtest-badpngs\
|
|
741
|
+
tests/pngvalid-gamma-16-to-8 tests/pngvalid-gamma-alpha-mode\
|
|
742
|
+
tests/pngvalid-gamma-background tests/pngvalid-gamma-expand16-alpha-mode\
|
|
743
|
+
tests/pngvalid-gamma-expand16-background\
|
|
744
|
+
tests/pngvalid-gamma-expand16-transform tests/pngvalid-gamma-sbit\
|
|
745
|
+
tests/pngvalid-gamma-threshold tests/pngvalid-gamma-transform\
|
|
746
|
+
tests/pngvalid-progressive-size\
|
|
747
|
+
tests/pngvalid-progressive-interlace-standard\
|
|
748
|
+
tests/pngvalid-transform\
|
|
749
|
+
tests/pngvalid-progressive-standard tests/pngvalid-standard\
|
|
750
|
+
tests/pngstest-1.8 tests/pngstest-1.8-alpha tests/pngstest-linear\
|
|
751
|
+
tests/pngstest-linear-alpha tests/pngstest-none tests/pngstest-none-alpha\
|
|
752
|
+
tests/pngstest-sRGB tests/pngstest-sRGB-alpha tests/pngunknown-IDAT\
|
|
753
|
+
tests/pngunknown-discard tests/pngunknown-if-safe tests/pngunknown-sAPI\
|
|
754
|
+
tests/pngunknown-sTER tests/pngunknown-save tests/pngunknown-vpAg\
|
|
755
|
+
tests/pngimage-quick tests/pngimage-full
|
|
756
|
+
|
|
757
|
+
|
|
758
|
+
# man pages
|
|
759
|
+
dist_man_MANS = libpng.3 libpngpf.3 png.5
|
|
760
|
+
EXTRA_SCRIPTS = libpng-config libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config
|
|
761
|
+
bin_SCRIPTS = @binconfigs@
|
|
762
|
+
|
|
763
|
+
# rules to build libpng, only build the old library on request
|
|
764
|
+
lib_LTLIBRARIES = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la
|
|
765
|
+
# EXTRA_LTLIBRARIES= libpng.la
|
|
766
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = png.c pngerror.c \
|
|
767
|
+
pngget.c pngmem.c pngpread.c pngread.c pngrio.c pngrtran.c \
|
|
768
|
+
pngrutil.c pngset.c pngtrans.c pngwio.c pngwrite.c pngwtran.c \
|
|
769
|
+
pngwutil.c png.h pngconf.h pngdebug.h pnginfo.h pngpriv.h \
|
|
770
|
+
pngstruct.h pngusr.dfa $(am__append_2) $(am__append_3) \
|
|
771
|
+
$(am__append_4) $(am__append_5)
|
|
772
|
+
nodist_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_SOURCES = pnglibconf.h
|
|
773
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LDFLAGS = -no-undefined \
|
|
774
|
+
-export-dynamic -version-number \
|
|
775
|
+
@PNGLIB_MAJOR@@PNGLIB_MINOR@:@PNGLIB_RELEASE@:0 \
|
|
776
|
+
$(am__append_6) $(am__append_7) $(am__append_8)
|
|
777
|
+
@HAVE_LD_VERSION_SCRIPT_FALSE@libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.sym
|
|
778
|
+
@HAVE_LD_VERSION_SCRIPT_TRUE@libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES = libpng.vers
|
|
779
|
+
pkginclude_HEADERS = png.h pngconf.h
|
|
780
|
+
nodist_pkginclude_HEADERS = pnglibconf.h
|
|
781
|
+
pkgconfig_DATA = libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc
|
|
782
|
+
|
|
783
|
+
# Extra source distribution files, '${srcdir}' is used below to stop build files
|
|
784
|
+
# from those directories being included. This only works if the configure is
|
|
785
|
+
# not done in the source directory!
|
|
786
|
+
EXTRA_DIST = \
|
|
787
|
+
ANNOUNCE AUTHORS CHANGES INSTALL LICENSE README TODO TRADEMARK \
|
|
788
|
+
pngtest.png pngbar.png pngnow.png pngbar.jpg autogen.sh \
|
|
789
|
+
${srcdir}/contrib ${srcdir}/projects ${srcdir}/scripts \
|
|
790
|
+
$(TESTS) $(XFAIL_TESTS) tests/pngstest \
|
|
791
|
+
CMakeLists.txt example.c libpng-manual.txt
|
|
792
|
+
|
|
793
|
+
SCRIPT_CLEANFILES = scripts/*.out scripts/*.chk
|
|
794
|
+
CLEANFILES = *.tf? pngout.png libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.pc \
|
|
795
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@-config libpng.vers libpng.sym \
|
|
796
|
+
check.new pnglibconf.h pngprefix.h symbols.new pngtest-log.txt \
|
|
797
|
+
pnglibconf.out pnglibconf.c pnglibconf.pre pnglibconf.dfn \
|
|
798
|
+
$(SCRIPT_CLEANFILES)
|
|
799
|
+
|
|
800
|
+
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess config.h.in \
|
|
801
|
+
config.sub configure depcomp install-sh ltmain.sh missing
|
|
802
|
+
|
|
803
|
+
AM_CFLAGS = ${PNG_COPTS}
|
|
804
|
+
SUFFIXES = .chk .out
|
|
805
|
+
|
|
806
|
+
# We must use -DPNG_NO_USE_READ_MACROS here even when the library may actually
|
|
807
|
+
# be built with PNG_USE_READ_MACROS; this prevents the read macros from
|
|
808
|
+
# interfering with the symbol file format.
|
|
809
|
+
SYMBOL_CFLAGS = -DPNGLIB_LIBNAME='PNG@PNGLIB_MAJOR@@PNGLIB_MINOR@_0' \
|
|
810
|
+
-DPNGLIB_VERSION='@PNGLIB_VERSION@' \
|
|
811
|
+
-DSYMBOL_PREFIX='$(SYMBOL_PREFIX)' -DPNG_NO_USE_READ_MACROS \
|
|
812
|
+
-DPNG_BUILDING_SYMBOL_TABLE $(am__append_9)
|
|
813
|
+
|
|
814
|
+
# EXT_LIST is a list of the possibly library directory extensions, this exists
|
|
815
|
+
# because we can't find a good way of discovering the file extensions that are
|
|
816
|
+
# actually installed on a given system, so instead we check for every extension
|
|
817
|
+
# we have seen.
|
|
818
|
+
EXT_LIST = a dll.a so so.@PNGLIB_MAJOR@@PNGLIB_MINOR@.@PNGLIB_RELEASE@ la sl dylib
|
|
819
|
+
all: $(BUILT_SOURCES) config.h
|
|
820
|
+
$(MAKE) $(AM_MAKEFLAGS) all-am
|
|
821
|
+
|
|
822
|
+
.SUFFIXES:
|
|
823
|
+
.SUFFIXES: .chk .out .S .c .lo .log .o .obj .test .test$(EXEEXT) .trs
|
|
824
|
+
am--refresh: Makefile
|
|
825
|
+
@:
|
|
826
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
|
827
|
+
@for dep in $?; do \
|
|
828
|
+
case '$(am__configure_deps)' in \
|
|
829
|
+
*$$dep*) \
|
|
830
|
+
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
|
|
831
|
+
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
|
|
832
|
+
&& exit 0; \
|
|
833
|
+
exit 1;; \
|
|
834
|
+
esac; \
|
|
835
|
+
done; \
|
|
836
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
|
|
837
|
+
$(am__cd) $(top_srcdir) && \
|
|
838
|
+
$(AUTOMAKE) --foreign Makefile
|
|
839
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
840
|
+
@case '$?' in \
|
|
841
|
+
*config.status*) \
|
|
842
|
+
echo ' $(SHELL) ./config.status'; \
|
|
843
|
+
$(SHELL) ./config.status;; \
|
|
844
|
+
*) \
|
|
845
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
|
|
846
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
|
|
847
|
+
esac;
|
|
848
|
+
|
|
849
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
850
|
+
$(SHELL) ./config.status --recheck
|
|
851
|
+
|
|
852
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
853
|
+
$(am__cd) $(srcdir) && $(AUTOCONF)
|
|
854
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
855
|
+
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
|
|
856
|
+
$(am__aclocal_m4_deps):
|
|
857
|
+
|
|
858
|
+
config.h: stamp-h1
|
|
859
|
+
@test -f $@ || rm -f stamp-h1
|
|
860
|
+
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
|
|
861
|
+
|
|
862
|
+
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
|
|
863
|
+
@rm -f stamp-h1
|
|
864
|
+
cd $(top_builddir) && $(SHELL) ./config.status config.h
|
|
865
|
+
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
866
|
+
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
|
|
867
|
+
rm -f stamp-h1
|
|
868
|
+
touch $@
|
|
869
|
+
|
|
870
|
+
distclean-hdr:
|
|
871
|
+
-rm -f config.h stamp-h1
|
|
872
|
+
libpng.pc: $(top_builddir)/config.status $(srcdir)/libpng.pc.in
|
|
873
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
874
|
+
libpng-config: $(top_builddir)/config.status $(srcdir)/libpng-config.in
|
|
875
|
+
cd $(top_builddir) && $(SHELL) ./config.status $@
|
|
876
|
+
install-binPROGRAMS: $(bin_PROGRAMS)
|
|
877
|
+
@$(NORMAL_INSTALL)
|
|
878
|
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
|
879
|
+
if test -n "$$list"; then \
|
|
880
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
|
881
|
+
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
|
882
|
+
fi; \
|
|
883
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
|
884
|
+
sed 's/$(EXEEXT)$$//' | \
|
|
885
|
+
while read p p1; do if test -f $$p \
|
|
886
|
+
|| test -f $$p1 \
|
|
887
|
+
; then echo "$$p"; echo "$$p"; else :; fi; \
|
|
888
|
+
done | \
|
|
889
|
+
sed -e 'p;s,.*/,,;n;h' \
|
|
890
|
+
-e 's|.*|.|' \
|
|
891
|
+
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
|
|
892
|
+
sed 'N;N;N;s,\n, ,g' | \
|
|
893
|
+
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
|
|
894
|
+
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
|
895
|
+
if ($$2 == $$4) files[d] = files[d] " " $$1; \
|
|
896
|
+
else { print "f", $$3 "/" $$4, $$1; } } \
|
|
897
|
+
END { for (d in files) print "f", d, files[d] }' | \
|
|
898
|
+
while read type dir files; do \
|
|
899
|
+
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
|
900
|
+
test -z "$$files" || { \
|
|
901
|
+
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
|
902
|
+
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
|
903
|
+
} \
|
|
904
|
+
; done
|
|
905
|
+
|
|
906
|
+
uninstall-binPROGRAMS:
|
|
907
|
+
@$(NORMAL_UNINSTALL)
|
|
908
|
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
|
909
|
+
files=`for p in $$list; do echo "$$p"; done | \
|
|
910
|
+
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
|
|
911
|
+
-e 's/$$/$(EXEEXT)/' \
|
|
912
|
+
`; \
|
|
913
|
+
test -n "$$list" || exit 0; \
|
|
914
|
+
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
|
|
915
|
+
cd "$(DESTDIR)$(bindir)" && rm -f $$files
|
|
916
|
+
|
|
917
|
+
clean-binPROGRAMS:
|
|
918
|
+
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
|
|
919
|
+
echo " rm -f" $$list; \
|
|
920
|
+
rm -f $$list || exit $$?; \
|
|
921
|
+
test -n "$(EXEEXT)" || exit 0; \
|
|
922
|
+
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
|
923
|
+
echo " rm -f" $$list; \
|
|
924
|
+
rm -f $$list
|
|
925
|
+
|
|
926
|
+
clean-checkPROGRAMS:
|
|
927
|
+
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
|
|
928
|
+
echo " rm -f" $$list; \
|
|
929
|
+
rm -f $$list || exit $$?; \
|
|
930
|
+
test -n "$(EXEEXT)" || exit 0; \
|
|
931
|
+
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
|
932
|
+
echo " rm -f" $$list; \
|
|
933
|
+
rm -f $$list
|
|
934
|
+
|
|
935
|
+
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
|
|
936
|
+
@$(NORMAL_INSTALL)
|
|
937
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
|
938
|
+
list2=; for p in $$list; do \
|
|
939
|
+
if test -f $$p; then \
|
|
940
|
+
list2="$$list2 $$p"; \
|
|
941
|
+
else :; fi; \
|
|
942
|
+
done; \
|
|
943
|
+
test -z "$$list2" || { \
|
|
944
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
|
|
945
|
+
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
|
|
946
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
|
|
947
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
|
|
948
|
+
}
|
|
949
|
+
|
|
950
|
+
uninstall-libLTLIBRARIES:
|
|
951
|
+
@$(NORMAL_UNINSTALL)
|
|
952
|
+
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
|
|
953
|
+
for p in $$list; do \
|
|
954
|
+
$(am__strip_dir) \
|
|
955
|
+
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
|
|
956
|
+
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
|
|
957
|
+
done
|
|
958
|
+
|
|
959
|
+
clean-libLTLIBRARIES:
|
|
960
|
+
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
|
|
961
|
+
@list='$(lib_LTLIBRARIES)'; \
|
|
962
|
+
locs=`for p in $$list; do echo $$p; done | \
|
|
963
|
+
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
|
|
964
|
+
sort -u`; \
|
|
965
|
+
test -z "$$locs" || { \
|
|
966
|
+
echo rm -f $${locs}; \
|
|
967
|
+
rm -f $${locs}; \
|
|
968
|
+
}
|
|
969
|
+
arm/$(am__dirstamp):
|
|
970
|
+
@$(MKDIR_P) arm
|
|
971
|
+
@: > arm/$(am__dirstamp)
|
|
972
|
+
arm/$(DEPDIR)/$(am__dirstamp):
|
|
973
|
+
@$(MKDIR_P) arm/$(DEPDIR)
|
|
974
|
+
@: > arm/$(DEPDIR)/$(am__dirstamp)
|
|
975
|
+
arm/arm_init.lo: arm/$(am__dirstamp) arm/$(DEPDIR)/$(am__dirstamp)
|
|
976
|
+
arm/filter_neon.lo: arm/$(am__dirstamp) arm/$(DEPDIR)/$(am__dirstamp)
|
|
977
|
+
arm/filter_neon_intrinsics.lo: arm/$(am__dirstamp) \
|
|
978
|
+
arm/$(DEPDIR)/$(am__dirstamp)
|
|
979
|
+
arm/palette_neon_intrinsics.lo: arm/$(am__dirstamp) \
|
|
980
|
+
arm/$(DEPDIR)/$(am__dirstamp)
|
|
981
|
+
mips/$(am__dirstamp):
|
|
982
|
+
@$(MKDIR_P) mips
|
|
983
|
+
@: > mips/$(am__dirstamp)
|
|
984
|
+
mips/$(DEPDIR)/$(am__dirstamp):
|
|
985
|
+
@$(MKDIR_P) mips/$(DEPDIR)
|
|
986
|
+
@: > mips/$(DEPDIR)/$(am__dirstamp)
|
|
987
|
+
mips/mips_init.lo: mips/$(am__dirstamp) mips/$(DEPDIR)/$(am__dirstamp)
|
|
988
|
+
mips/filter_msa_intrinsics.lo: mips/$(am__dirstamp) \
|
|
989
|
+
mips/$(DEPDIR)/$(am__dirstamp)
|
|
990
|
+
intel/$(am__dirstamp):
|
|
991
|
+
@$(MKDIR_P) intel
|
|
992
|
+
@: > intel/$(am__dirstamp)
|
|
993
|
+
intel/$(DEPDIR)/$(am__dirstamp):
|
|
994
|
+
@$(MKDIR_P) intel/$(DEPDIR)
|
|
995
|
+
@: > intel/$(DEPDIR)/$(am__dirstamp)
|
|
996
|
+
intel/intel_init.lo: intel/$(am__dirstamp) \
|
|
997
|
+
intel/$(DEPDIR)/$(am__dirstamp)
|
|
998
|
+
intel/filter_sse2_intrinsics.lo: intel/$(am__dirstamp) \
|
|
999
|
+
intel/$(DEPDIR)/$(am__dirstamp)
|
|
1000
|
+
powerpc/$(am__dirstamp):
|
|
1001
|
+
@$(MKDIR_P) powerpc
|
|
1002
|
+
@: > powerpc/$(am__dirstamp)
|
|
1003
|
+
powerpc/$(DEPDIR)/$(am__dirstamp):
|
|
1004
|
+
@$(MKDIR_P) powerpc/$(DEPDIR)
|
|
1005
|
+
@: > powerpc/$(DEPDIR)/$(am__dirstamp)
|
|
1006
|
+
powerpc/powerpc_init.lo: powerpc/$(am__dirstamp) \
|
|
1007
|
+
powerpc/$(DEPDIR)/$(am__dirstamp)
|
|
1008
|
+
powerpc/filter_vsx_intrinsics.lo: powerpc/$(am__dirstamp) \
|
|
1009
|
+
powerpc/$(DEPDIR)/$(am__dirstamp)
|
|
1010
|
+
|
|
1011
|
+
libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@.la: $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS) $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES) $(EXTRA_libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_DEPENDENCIES)
|
|
1012
|
+
$(AM_V_CCLD)$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LINK) -rpath $(libdir) $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS) $(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_LIBADD) $(LIBS)
|
|
1013
|
+
contrib/tools/$(am__dirstamp):
|
|
1014
|
+
@$(MKDIR_P) contrib/tools
|
|
1015
|
+
@: > contrib/tools/$(am__dirstamp)
|
|
1016
|
+
contrib/tools/$(DEPDIR)/$(am__dirstamp):
|
|
1017
|
+
@$(MKDIR_P) contrib/tools/$(DEPDIR)
|
|
1018
|
+
@: > contrib/tools/$(DEPDIR)/$(am__dirstamp)
|
|
1019
|
+
contrib/tools/png-fix-itxt.$(OBJEXT): contrib/tools/$(am__dirstamp) \
|
|
1020
|
+
contrib/tools/$(DEPDIR)/$(am__dirstamp)
|
|
1021
|
+
|
|
1022
|
+
png-fix-itxt$(EXEEXT): $(png_fix_itxt_OBJECTS) $(png_fix_itxt_DEPENDENCIES) $(EXTRA_png_fix_itxt_DEPENDENCIES)
|
|
1023
|
+
@rm -f png-fix-itxt$(EXEEXT)
|
|
1024
|
+
$(AM_V_CCLD)$(LINK) $(png_fix_itxt_OBJECTS) $(png_fix_itxt_LDADD) $(LIBS)
|
|
1025
|
+
contrib/tools/pngcp.$(OBJEXT): contrib/tools/$(am__dirstamp) \
|
|
1026
|
+
contrib/tools/$(DEPDIR)/$(am__dirstamp)
|
|
1027
|
+
|
|
1028
|
+
pngcp$(EXEEXT): $(pngcp_OBJECTS) $(pngcp_DEPENDENCIES) $(EXTRA_pngcp_DEPENDENCIES)
|
|
1029
|
+
@rm -f pngcp$(EXEEXT)
|
|
1030
|
+
$(AM_V_CCLD)$(LINK) $(pngcp_OBJECTS) $(pngcp_LDADD) $(LIBS)
|
|
1031
|
+
contrib/tools/pngfix.$(OBJEXT): contrib/tools/$(am__dirstamp) \
|
|
1032
|
+
contrib/tools/$(DEPDIR)/$(am__dirstamp)
|
|
1033
|
+
|
|
1034
|
+
pngfix$(EXEEXT): $(pngfix_OBJECTS) $(pngfix_DEPENDENCIES) $(EXTRA_pngfix_DEPENDENCIES)
|
|
1035
|
+
@rm -f pngfix$(EXEEXT)
|
|
1036
|
+
$(AM_V_CCLD)$(LINK) $(pngfix_OBJECTS) $(pngfix_LDADD) $(LIBS)
|
|
1037
|
+
contrib/libtests/$(am__dirstamp):
|
|
1038
|
+
@$(MKDIR_P) contrib/libtests
|
|
1039
|
+
@: > contrib/libtests/$(am__dirstamp)
|
|
1040
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp):
|
|
1041
|
+
@$(MKDIR_P) contrib/libtests/$(DEPDIR)
|
|
1042
|
+
@: > contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1043
|
+
contrib/libtests/pngimage.$(OBJEXT): contrib/libtests/$(am__dirstamp) \
|
|
1044
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1045
|
+
|
|
1046
|
+
pngimage$(EXEEXT): $(pngimage_OBJECTS) $(pngimage_DEPENDENCIES) $(EXTRA_pngimage_DEPENDENCIES)
|
|
1047
|
+
@rm -f pngimage$(EXEEXT)
|
|
1048
|
+
$(AM_V_CCLD)$(LINK) $(pngimage_OBJECTS) $(pngimage_LDADD) $(LIBS)
|
|
1049
|
+
contrib/libtests/pngstest.$(OBJEXT): contrib/libtests/$(am__dirstamp) \
|
|
1050
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1051
|
+
|
|
1052
|
+
pngstest$(EXEEXT): $(pngstest_OBJECTS) $(pngstest_DEPENDENCIES) $(EXTRA_pngstest_DEPENDENCIES)
|
|
1053
|
+
@rm -f pngstest$(EXEEXT)
|
|
1054
|
+
$(AM_V_CCLD)$(LINK) $(pngstest_OBJECTS) $(pngstest_LDADD) $(LIBS)
|
|
1055
|
+
|
|
1056
|
+
pngtest$(EXEEXT): $(pngtest_OBJECTS) $(pngtest_DEPENDENCIES) $(EXTRA_pngtest_DEPENDENCIES)
|
|
1057
|
+
@rm -f pngtest$(EXEEXT)
|
|
1058
|
+
$(AM_V_CCLD)$(LINK) $(pngtest_OBJECTS) $(pngtest_LDADD) $(LIBS)
|
|
1059
|
+
contrib/libtests/pngunknown.$(OBJEXT): \
|
|
1060
|
+
contrib/libtests/$(am__dirstamp) \
|
|
1061
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1062
|
+
|
|
1063
|
+
pngunknown$(EXEEXT): $(pngunknown_OBJECTS) $(pngunknown_DEPENDENCIES) $(EXTRA_pngunknown_DEPENDENCIES)
|
|
1064
|
+
@rm -f pngunknown$(EXEEXT)
|
|
1065
|
+
$(AM_V_CCLD)$(LINK) $(pngunknown_OBJECTS) $(pngunknown_LDADD) $(LIBS)
|
|
1066
|
+
contrib/libtests/pngvalid.$(OBJEXT): contrib/libtests/$(am__dirstamp) \
|
|
1067
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1068
|
+
|
|
1069
|
+
pngvalid$(EXEEXT): $(pngvalid_OBJECTS) $(pngvalid_DEPENDENCIES) $(EXTRA_pngvalid_DEPENDENCIES)
|
|
1070
|
+
@rm -f pngvalid$(EXEEXT)
|
|
1071
|
+
$(AM_V_CCLD)$(LINK) $(pngvalid_OBJECTS) $(pngvalid_LDADD) $(LIBS)
|
|
1072
|
+
contrib/libtests/timepng.$(OBJEXT): contrib/libtests/$(am__dirstamp) \
|
|
1073
|
+
contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
1074
|
+
|
|
1075
|
+
timepng$(EXEEXT): $(timepng_OBJECTS) $(timepng_DEPENDENCIES) $(EXTRA_timepng_DEPENDENCIES)
|
|
1076
|
+
@rm -f timepng$(EXEEXT)
|
|
1077
|
+
$(AM_V_CCLD)$(LINK) $(timepng_OBJECTS) $(timepng_LDADD) $(LIBS)
|
|
1078
|
+
install-binSCRIPTS: $(bin_SCRIPTS)
|
|
1079
|
+
@$(NORMAL_INSTALL)
|
|
1080
|
+
@list='$(bin_SCRIPTS)'; test -n "$(bindir)" || list=; \
|
|
1081
|
+
if test -n "$$list"; then \
|
|
1082
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
|
1083
|
+
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
|
1084
|
+
fi; \
|
|
1085
|
+
for p in $$list; do \
|
|
1086
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
1087
|
+
if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \
|
|
1088
|
+
done | \
|
|
1089
|
+
sed -e 'p;s,.*/,,;n' \
|
|
1090
|
+
-e 'h;s|.*|.|' \
|
|
1091
|
+
-e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \
|
|
1092
|
+
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \
|
|
1093
|
+
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
|
1094
|
+
if ($$2 == $$4) { files[d] = files[d] " " $$1; \
|
|
1095
|
+
if (++n[d] == $(am__install_max)) { \
|
|
1096
|
+
print "f", d, files[d]; n[d] = 0; files[d] = "" } } \
|
|
1097
|
+
else { print "f", d "/" $$4, $$1 } } \
|
|
1098
|
+
END { for (d in files) print "f", d, files[d] }' | \
|
|
1099
|
+
while read type dir files; do \
|
|
1100
|
+
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
|
1101
|
+
test -z "$$files" || { \
|
|
1102
|
+
echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
|
1103
|
+
$(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
|
1104
|
+
} \
|
|
1105
|
+
; done
|
|
1106
|
+
|
|
1107
|
+
uninstall-binSCRIPTS:
|
|
1108
|
+
@$(NORMAL_UNINSTALL)
|
|
1109
|
+
@list='$(bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \
|
|
1110
|
+
files=`for p in $$list; do echo "$$p"; done | \
|
|
1111
|
+
sed -e 's,.*/,,;$(transform)'`; \
|
|
1112
|
+
dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir)
|
|
1113
|
+
|
|
1114
|
+
mostlyclean-compile:
|
|
1115
|
+
-rm -f *.$(OBJEXT)
|
|
1116
|
+
-rm -f arm/*.$(OBJEXT)
|
|
1117
|
+
-rm -f arm/*.lo
|
|
1118
|
+
-rm -f contrib/libtests/*.$(OBJEXT)
|
|
1119
|
+
-rm -f contrib/tools/*.$(OBJEXT)
|
|
1120
|
+
-rm -f intel/*.$(OBJEXT)
|
|
1121
|
+
-rm -f intel/*.lo
|
|
1122
|
+
-rm -f mips/*.$(OBJEXT)
|
|
1123
|
+
-rm -f mips/*.lo
|
|
1124
|
+
-rm -f powerpc/*.$(OBJEXT)
|
|
1125
|
+
-rm -f powerpc/*.lo
|
|
1126
|
+
|
|
1127
|
+
distclean-compile:
|
|
1128
|
+
-rm -f *.tab.c
|
|
1129
|
+
|
|
1130
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/png.Plo@am__quote@ # am--include-marker
|
|
1131
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngerror.Plo@am__quote@ # am--include-marker
|
|
1132
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngget.Plo@am__quote@ # am--include-marker
|
|
1133
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngmem.Plo@am__quote@ # am--include-marker
|
|
1134
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngpread.Plo@am__quote@ # am--include-marker
|
|
1135
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngread.Plo@am__quote@ # am--include-marker
|
|
1136
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngrio.Plo@am__quote@ # am--include-marker
|
|
1137
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngrtran.Plo@am__quote@ # am--include-marker
|
|
1138
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngrutil.Plo@am__quote@ # am--include-marker
|
|
1139
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngset.Plo@am__quote@ # am--include-marker
|
|
1140
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngtest.Po@am__quote@ # am--include-marker
|
|
1141
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngtrans.Plo@am__quote@ # am--include-marker
|
|
1142
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngwio.Plo@am__quote@ # am--include-marker
|
|
1143
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngwrite.Plo@am__quote@ # am--include-marker
|
|
1144
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngwtran.Plo@am__quote@ # am--include-marker
|
|
1145
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pngwutil.Plo@am__quote@ # am--include-marker
|
|
1146
|
+
@AMDEP_TRUE@@am__include@ @am__quote@arm/$(DEPDIR)/arm_init.Plo@am__quote@ # am--include-marker
|
|
1147
|
+
@AMDEP_TRUE@@am__include@ @am__quote@arm/$(DEPDIR)/filter_neon.Plo@am__quote@ # am--include-marker
|
|
1148
|
+
@AMDEP_TRUE@@am__include@ @am__quote@arm/$(DEPDIR)/filter_neon_intrinsics.Plo@am__quote@ # am--include-marker
|
|
1149
|
+
@AMDEP_TRUE@@am__include@ @am__quote@arm/$(DEPDIR)/palette_neon_intrinsics.Plo@am__quote@ # am--include-marker
|
|
1150
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/libtests/$(DEPDIR)/pngimage.Po@am__quote@ # am--include-marker
|
|
1151
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/libtests/$(DEPDIR)/pngstest.Po@am__quote@ # am--include-marker
|
|
1152
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/libtests/$(DEPDIR)/pngunknown.Po@am__quote@ # am--include-marker
|
|
1153
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/libtests/$(DEPDIR)/pngvalid.Po@am__quote@ # am--include-marker
|
|
1154
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/libtests/$(DEPDIR)/timepng.Po@am__quote@ # am--include-marker
|
|
1155
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/tools/$(DEPDIR)/png-fix-itxt.Po@am__quote@ # am--include-marker
|
|
1156
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/tools/$(DEPDIR)/pngcp.Po@am__quote@ # am--include-marker
|
|
1157
|
+
@AMDEP_TRUE@@am__include@ @am__quote@contrib/tools/$(DEPDIR)/pngfix.Po@am__quote@ # am--include-marker
|
|
1158
|
+
@AMDEP_TRUE@@am__include@ @am__quote@intel/$(DEPDIR)/filter_sse2_intrinsics.Plo@am__quote@ # am--include-marker
|
|
1159
|
+
@AMDEP_TRUE@@am__include@ @am__quote@intel/$(DEPDIR)/intel_init.Plo@am__quote@ # am--include-marker
|
|
1160
|
+
@AMDEP_TRUE@@am__include@ @am__quote@mips/$(DEPDIR)/filter_msa_intrinsics.Plo@am__quote@ # am--include-marker
|
|
1161
|
+
@AMDEP_TRUE@@am__include@ @am__quote@mips/$(DEPDIR)/mips_init.Plo@am__quote@ # am--include-marker
|
|
1162
|
+
@AMDEP_TRUE@@am__include@ @am__quote@powerpc/$(DEPDIR)/filter_vsx_intrinsics.Plo@am__quote@ # am--include-marker
|
|
1163
|
+
@AMDEP_TRUE@@am__include@ @am__quote@powerpc/$(DEPDIR)/powerpc_init.Plo@am__quote@ # am--include-marker
|
|
1164
|
+
|
|
1165
|
+
$(am__depfiles_remade):
|
|
1166
|
+
@$(MKDIR_P) $(@D)
|
|
1167
|
+
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
|
|
1168
|
+
|
|
1169
|
+
am--depfiles: $(am__depfiles_remade)
|
|
1170
|
+
|
|
1171
|
+
.S.o:
|
|
1172
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
|
1173
|
+
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
|
1174
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
|
1175
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
1176
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1177
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $<
|
|
1178
|
+
|
|
1179
|
+
.S.obj:
|
|
1180
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
|
1181
|
+
@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
|
1182
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
|
1183
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
1184
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1185
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
1186
|
+
|
|
1187
|
+
.S.lo:
|
|
1188
|
+
@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
|
1189
|
+
@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
|
1190
|
+
@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
|
1191
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
|
1192
|
+
@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1193
|
+
@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $<
|
|
1194
|
+
|
|
1195
|
+
.c.o:
|
|
1196
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
|
|
1197
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
|
1198
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
|
1199
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
1200
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1201
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
|
1202
|
+
|
|
1203
|
+
.c.obj:
|
|
1204
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
|
|
1205
|
+
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
|
|
1206
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
|
|
1207
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
1208
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1209
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
1210
|
+
|
|
1211
|
+
.c.lo:
|
|
1212
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
|
|
1213
|
+
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
|
|
1214
|
+
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
|
|
1215
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
|
1216
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
1217
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
|
1218
|
+
|
|
1219
|
+
mostlyclean-libtool:
|
|
1220
|
+
-rm -f *.lo
|
|
1221
|
+
|
|
1222
|
+
clean-libtool:
|
|
1223
|
+
-rm -rf .libs _libs
|
|
1224
|
+
-rm -rf arm/.libs arm/_libs
|
|
1225
|
+
-rm -rf intel/.libs intel/_libs
|
|
1226
|
+
-rm -rf mips/.libs mips/_libs
|
|
1227
|
+
-rm -rf powerpc/.libs powerpc/_libs
|
|
1228
|
+
|
|
1229
|
+
distclean-libtool:
|
|
1230
|
+
-rm -f libtool config.lt
|
|
1231
|
+
install-man3: $(dist_man_MANS)
|
|
1232
|
+
@$(NORMAL_INSTALL)
|
|
1233
|
+
@list1=''; \
|
|
1234
|
+
list2='$(dist_man_MANS)'; \
|
|
1235
|
+
test -n "$(man3dir)" \
|
|
1236
|
+
&& test -n "`echo $$list1$$list2`" \
|
|
1237
|
+
|| exit 0; \
|
|
1238
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(man3dir)'"; \
|
|
1239
|
+
$(MKDIR_P) "$(DESTDIR)$(man3dir)" || exit 1; \
|
|
1240
|
+
{ for i in $$list1; do echo "$$i"; done; \
|
|
1241
|
+
if test -n "$$list2"; then \
|
|
1242
|
+
for i in $$list2; do echo "$$i"; done \
|
|
1243
|
+
| sed -n '/\.3[a-z]*$$/p'; \
|
|
1244
|
+
fi; \
|
|
1245
|
+
} | while read p; do \
|
|
1246
|
+
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
|
1247
|
+
echo "$$d$$p"; echo "$$p"; \
|
|
1248
|
+
done | \
|
|
1249
|
+
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
|
1250
|
+
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
|
1251
|
+
sed 'N;N;s,\n, ,g' | { \
|
|
1252
|
+
list=; while read file base inst; do \
|
|
1253
|
+
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
|
1254
|
+
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man3dir)/$$inst'"; \
|
|
1255
|
+
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man3dir)/$$inst" || exit $$?; \
|
|
1256
|
+
fi; \
|
|
1257
|
+
done; \
|
|
1258
|
+
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
|
1259
|
+
while read files; do \
|
|
1260
|
+
test -z "$$files" || { \
|
|
1261
|
+
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man3dir)'"; \
|
|
1262
|
+
$(INSTALL_DATA) $$files "$(DESTDIR)$(man3dir)" || exit $$?; }; \
|
|
1263
|
+
done; }
|
|
1264
|
+
|
|
1265
|
+
uninstall-man3:
|
|
1266
|
+
@$(NORMAL_UNINSTALL)
|
|
1267
|
+
@list=''; test -n "$(man3dir)" || exit 0; \
|
|
1268
|
+
files=`{ for i in $$list; do echo "$$i"; done; \
|
|
1269
|
+
l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
|
|
1270
|
+
sed -n '/\.3[a-z]*$$/p'; \
|
|
1271
|
+
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^3][0-9a-z]*$$,3,;x' \
|
|
1272
|
+
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
|
1273
|
+
dir='$(DESTDIR)$(man3dir)'; $(am__uninstall_files_from_dir)
|
|
1274
|
+
install-man5: $(dist_man_MANS)
|
|
1275
|
+
@$(NORMAL_INSTALL)
|
|
1276
|
+
@list1=''; \
|
|
1277
|
+
list2='$(dist_man_MANS)'; \
|
|
1278
|
+
test -n "$(man5dir)" \
|
|
1279
|
+
&& test -n "`echo $$list1$$list2`" \
|
|
1280
|
+
|| exit 0; \
|
|
1281
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
|
|
1282
|
+
$(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
|
|
1283
|
+
{ for i in $$list1; do echo "$$i"; done; \
|
|
1284
|
+
if test -n "$$list2"; then \
|
|
1285
|
+
for i in $$list2; do echo "$$i"; done \
|
|
1286
|
+
| sed -n '/\.5[a-z]*$$/p'; \
|
|
1287
|
+
fi; \
|
|
1288
|
+
} | while read p; do \
|
|
1289
|
+
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
|
|
1290
|
+
echo "$$d$$p"; echo "$$p"; \
|
|
1291
|
+
done | \
|
|
1292
|
+
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
|
|
1293
|
+
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
|
|
1294
|
+
sed 'N;N;s,\n, ,g' | { \
|
|
1295
|
+
list=; while read file base inst; do \
|
|
1296
|
+
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
|
|
1297
|
+
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man5dir)/$$inst'"; \
|
|
1298
|
+
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$inst" || exit $$?; \
|
|
1299
|
+
fi; \
|
|
1300
|
+
done; \
|
|
1301
|
+
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
|
|
1302
|
+
while read files; do \
|
|
1303
|
+
test -z "$$files" || { \
|
|
1304
|
+
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man5dir)'"; \
|
|
1305
|
+
$(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
|
|
1306
|
+
done; }
|
|
1307
|
+
|
|
1308
|
+
uninstall-man5:
|
|
1309
|
+
@$(NORMAL_UNINSTALL)
|
|
1310
|
+
@list=''; test -n "$(man5dir)" || exit 0; \
|
|
1311
|
+
files=`{ for i in $$list; do echo "$$i"; done; \
|
|
1312
|
+
l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
|
|
1313
|
+
sed -n '/\.5[a-z]*$$/p'; \
|
|
1314
|
+
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
|
|
1315
|
+
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
|
|
1316
|
+
dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
|
|
1317
|
+
install-pkgconfigDATA: $(pkgconfig_DATA)
|
|
1318
|
+
@$(NORMAL_INSTALL)
|
|
1319
|
+
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
|
1320
|
+
if test -n "$$list"; then \
|
|
1321
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
|
|
1322
|
+
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
|
|
1323
|
+
fi; \
|
|
1324
|
+
for p in $$list; do \
|
|
1325
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
1326
|
+
echo "$$d$$p"; \
|
|
1327
|
+
done | $(am__base_list) | \
|
|
1328
|
+
while read files; do \
|
|
1329
|
+
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
|
|
1330
|
+
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
|
|
1331
|
+
done
|
|
1332
|
+
|
|
1333
|
+
uninstall-pkgconfigDATA:
|
|
1334
|
+
@$(NORMAL_UNINSTALL)
|
|
1335
|
+
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
|
|
1336
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
|
1337
|
+
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
|
|
1338
|
+
install-nodist_pkgincludeHEADERS: $(nodist_pkginclude_HEADERS)
|
|
1339
|
+
@$(NORMAL_INSTALL)
|
|
1340
|
+
@list='$(nodist_pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
|
|
1341
|
+
if test -n "$$list"; then \
|
|
1342
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \
|
|
1343
|
+
$(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \
|
|
1344
|
+
fi; \
|
|
1345
|
+
for p in $$list; do \
|
|
1346
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
1347
|
+
echo "$$d$$p"; \
|
|
1348
|
+
done | $(am__base_list) | \
|
|
1349
|
+
while read files; do \
|
|
1350
|
+
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \
|
|
1351
|
+
$(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \
|
|
1352
|
+
done
|
|
1353
|
+
|
|
1354
|
+
uninstall-nodist_pkgincludeHEADERS:
|
|
1355
|
+
@$(NORMAL_UNINSTALL)
|
|
1356
|
+
@list='$(nodist_pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
|
|
1357
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
|
1358
|
+
dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir)
|
|
1359
|
+
install-pkgincludeHEADERS: $(pkginclude_HEADERS)
|
|
1360
|
+
@$(NORMAL_INSTALL)
|
|
1361
|
+
@list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
|
|
1362
|
+
if test -n "$$list"; then \
|
|
1363
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \
|
|
1364
|
+
$(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \
|
|
1365
|
+
fi; \
|
|
1366
|
+
for p in $$list; do \
|
|
1367
|
+
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
|
1368
|
+
echo "$$d$$p"; \
|
|
1369
|
+
done | $(am__base_list) | \
|
|
1370
|
+
while read files; do \
|
|
1371
|
+
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \
|
|
1372
|
+
$(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \
|
|
1373
|
+
done
|
|
1374
|
+
|
|
1375
|
+
uninstall-pkgincludeHEADERS:
|
|
1376
|
+
@$(NORMAL_UNINSTALL)
|
|
1377
|
+
@list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \
|
|
1378
|
+
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
|
|
1379
|
+
dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir)
|
|
1380
|
+
|
|
1381
|
+
ID: $(am__tagged_files)
|
|
1382
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
|
1383
|
+
tags: tags-am
|
|
1384
|
+
TAGS: tags
|
|
1385
|
+
|
|
1386
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
1387
|
+
set x; \
|
|
1388
|
+
here=`pwd`; \
|
|
1389
|
+
$(am__define_uniq_tagged_files); \
|
|
1390
|
+
shift; \
|
|
1391
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
|
1392
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
|
1393
|
+
if test $$# -gt 0; then \
|
|
1394
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
1395
|
+
"$$@" $$unique; \
|
|
1396
|
+
else \
|
|
1397
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
1398
|
+
$$unique; \
|
|
1399
|
+
fi; \
|
|
1400
|
+
fi
|
|
1401
|
+
ctags: ctags-am
|
|
1402
|
+
|
|
1403
|
+
CTAGS: ctags
|
|
1404
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
1405
|
+
$(am__define_uniq_tagged_files); \
|
|
1406
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
|
1407
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
1408
|
+
$$unique
|
|
1409
|
+
|
|
1410
|
+
GTAGS:
|
|
1411
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
1412
|
+
&& $(am__cd) $(top_srcdir) \
|
|
1413
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
|
1414
|
+
cscope: cscope.files
|
|
1415
|
+
test ! -s cscope.files \
|
|
1416
|
+
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
|
|
1417
|
+
clean-cscope:
|
|
1418
|
+
-rm -f cscope.files
|
|
1419
|
+
cscope.files: clean-cscope cscopelist
|
|
1420
|
+
cscopelist: cscopelist-am
|
|
1421
|
+
|
|
1422
|
+
cscopelist-am: $(am__tagged_files)
|
|
1423
|
+
list='$(am__tagged_files)'; \
|
|
1424
|
+
case "$(srcdir)" in \
|
|
1425
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
|
1426
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
|
1427
|
+
esac; \
|
|
1428
|
+
for i in $$list; do \
|
|
1429
|
+
if test -f "$$i"; then \
|
|
1430
|
+
echo "$(subdir)/$$i"; \
|
|
1431
|
+
else \
|
|
1432
|
+
echo "$$sdir/$$i"; \
|
|
1433
|
+
fi; \
|
|
1434
|
+
done >> $(top_builddir)/cscope.files
|
|
1435
|
+
|
|
1436
|
+
distclean-tags:
|
|
1437
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
1438
|
+
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
|
|
1439
|
+
|
|
1440
|
+
# Recover from deleted '.trs' file; this should ensure that
|
|
1441
|
+
# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
|
|
1442
|
+
# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
|
|
1443
|
+
# to avoid problems with "make -n".
|
|
1444
|
+
.log.trs:
|
|
1445
|
+
rm -f $< $@
|
|
1446
|
+
$(MAKE) $(AM_MAKEFLAGS) $<
|
|
1447
|
+
|
|
1448
|
+
# Leading 'am--fnord' is there to ensure the list of targets does not
|
|
1449
|
+
# expand to empty, as could happen e.g. with make check TESTS=''.
|
|
1450
|
+
am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
|
|
1451
|
+
am--force-recheck:
|
|
1452
|
+
@:
|
|
1453
|
+
|
|
1454
|
+
$(TEST_SUITE_LOG): $(TEST_LOGS)
|
|
1455
|
+
@$(am__set_TESTS_bases); \
|
|
1456
|
+
am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
|
|
1457
|
+
redo_bases=`for i in $$bases; do \
|
|
1458
|
+
am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
|
|
1459
|
+
done`; \
|
|
1460
|
+
if test -n "$$redo_bases"; then \
|
|
1461
|
+
redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
|
|
1462
|
+
redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
|
|
1463
|
+
if $(am__make_dryrun); then :; else \
|
|
1464
|
+
rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
|
|
1465
|
+
fi; \
|
|
1466
|
+
fi; \
|
|
1467
|
+
if test -n "$$am__remaking_logs"; then \
|
|
1468
|
+
echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
|
|
1469
|
+
"recursion detected" >&2; \
|
|
1470
|
+
elif test -n "$$redo_logs"; then \
|
|
1471
|
+
am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
|
|
1472
|
+
fi; \
|
|
1473
|
+
if $(am__make_dryrun); then :; else \
|
|
1474
|
+
st=0; \
|
|
1475
|
+
errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
|
|
1476
|
+
for i in $$redo_bases; do \
|
|
1477
|
+
test -f $$i.trs && test -r $$i.trs \
|
|
1478
|
+
|| { echo "$$errmsg $$i.trs" >&2; st=1; }; \
|
|
1479
|
+
test -f $$i.log && test -r $$i.log \
|
|
1480
|
+
|| { echo "$$errmsg $$i.log" >&2; st=1; }; \
|
|
1481
|
+
done; \
|
|
1482
|
+
test $$st -eq 0 || exit 1; \
|
|
1483
|
+
fi
|
|
1484
|
+
@$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
|
|
1485
|
+
ws='[ ]'; \
|
|
1486
|
+
results=`for b in $$bases; do echo $$b.trs; done`; \
|
|
1487
|
+
test -n "$$results" || results=/dev/null; \
|
|
1488
|
+
all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
|
|
1489
|
+
pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
|
|
1490
|
+
fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
|
|
1491
|
+
skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
|
|
1492
|
+
xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
|
|
1493
|
+
xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
|
|
1494
|
+
error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
|
|
1495
|
+
if test `expr $$fail + $$xpass + $$error` -eq 0; then \
|
|
1496
|
+
success=true; \
|
|
1497
|
+
else \
|
|
1498
|
+
success=false; \
|
|
1499
|
+
fi; \
|
|
1500
|
+
br='==================='; br=$$br$$br$$br$$br; \
|
|
1501
|
+
result_count () \
|
|
1502
|
+
{ \
|
|
1503
|
+
if test x"$$1" = x"--maybe-color"; then \
|
|
1504
|
+
maybe_colorize=yes; \
|
|
1505
|
+
elif test x"$$1" = x"--no-color"; then \
|
|
1506
|
+
maybe_colorize=no; \
|
|
1507
|
+
else \
|
|
1508
|
+
echo "$@: invalid 'result_count' usage" >&2; exit 4; \
|
|
1509
|
+
fi; \
|
|
1510
|
+
shift; \
|
|
1511
|
+
desc=$$1 count=$$2; \
|
|
1512
|
+
if test $$maybe_colorize = yes && test $$count -gt 0; then \
|
|
1513
|
+
color_start=$$3 color_end=$$std; \
|
|
1514
|
+
else \
|
|
1515
|
+
color_start= color_end=; \
|
|
1516
|
+
fi; \
|
|
1517
|
+
echo "$${color_start}# $$desc $$count$${color_end}"; \
|
|
1518
|
+
}; \
|
|
1519
|
+
create_testsuite_report () \
|
|
1520
|
+
{ \
|
|
1521
|
+
result_count $$1 "TOTAL:" $$all "$$brg"; \
|
|
1522
|
+
result_count $$1 "PASS: " $$pass "$$grn"; \
|
|
1523
|
+
result_count $$1 "SKIP: " $$skip "$$blu"; \
|
|
1524
|
+
result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
|
|
1525
|
+
result_count $$1 "FAIL: " $$fail "$$red"; \
|
|
1526
|
+
result_count $$1 "XPASS:" $$xpass "$$red"; \
|
|
1527
|
+
result_count $$1 "ERROR:" $$error "$$mgn"; \
|
|
1528
|
+
}; \
|
|
1529
|
+
{ \
|
|
1530
|
+
echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
|
|
1531
|
+
$(am__rst_title); \
|
|
1532
|
+
create_testsuite_report --no-color; \
|
|
1533
|
+
echo; \
|
|
1534
|
+
echo ".. contents:: :depth: 2"; \
|
|
1535
|
+
echo; \
|
|
1536
|
+
for b in $$bases; do echo $$b; done \
|
|
1537
|
+
| $(am__create_global_log); \
|
|
1538
|
+
} >$(TEST_SUITE_LOG).tmp || exit 1; \
|
|
1539
|
+
mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
|
|
1540
|
+
if $$success; then \
|
|
1541
|
+
col="$$grn"; \
|
|
1542
|
+
else \
|
|
1543
|
+
col="$$red"; \
|
|
1544
|
+
test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
|
|
1545
|
+
fi; \
|
|
1546
|
+
echo "$${col}$$br$${std}"; \
|
|
1547
|
+
echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
|
|
1548
|
+
echo "$${col}$$br$${std}"; \
|
|
1549
|
+
create_testsuite_report --maybe-color; \
|
|
1550
|
+
echo "$$col$$br$$std"; \
|
|
1551
|
+
if $$success; then :; else \
|
|
1552
|
+
echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
|
|
1553
|
+
if test -n "$(PACKAGE_BUGREPORT)"; then \
|
|
1554
|
+
echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
|
|
1555
|
+
fi; \
|
|
1556
|
+
echo "$$col$$br$$std"; \
|
|
1557
|
+
fi; \
|
|
1558
|
+
$$success || exit 1
|
|
1559
|
+
|
|
1560
|
+
check-TESTS: $(check_PROGRAMS)
|
|
1561
|
+
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
|
|
1562
|
+
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
|
|
1563
|
+
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
|
|
1564
|
+
@set +e; $(am__set_TESTS_bases); \
|
|
1565
|
+
log_list=`for i in $$bases; do echo $$i.log; done`; \
|
|
1566
|
+
trs_list=`for i in $$bases; do echo $$i.trs; done`; \
|
|
1567
|
+
log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
|
|
1568
|
+
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
|
|
1569
|
+
exit $$?;
|
|
1570
|
+
recheck: all $(check_PROGRAMS)
|
|
1571
|
+
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
|
|
1572
|
+
@set +e; $(am__set_TESTS_bases); \
|
|
1573
|
+
bases=`for i in $$bases; do echo $$i; done \
|
|
1574
|
+
| $(am__list_recheck_tests)` || exit 1; \
|
|
1575
|
+
log_list=`for i in $$bases; do echo $$i.log; done`; \
|
|
1576
|
+
log_list=`echo $$log_list`; \
|
|
1577
|
+
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
|
|
1578
|
+
am__force_recheck=am--force-recheck \
|
|
1579
|
+
TEST_LOGS="$$log_list"; \
|
|
1580
|
+
exit $$?
|
|
1581
|
+
tests/pngtest.log: tests/pngtest
|
|
1582
|
+
@p='tests/pngtest'; \
|
|
1583
|
+
b='tests/pngtest'; \
|
|
1584
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1585
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1586
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1587
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1588
|
+
tests/pngtest-badpngs.log: tests/pngtest-badpngs
|
|
1589
|
+
@p='tests/pngtest-badpngs'; \
|
|
1590
|
+
b='tests/pngtest-badpngs'; \
|
|
1591
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1592
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1593
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1594
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1595
|
+
tests/pngvalid-gamma-16-to-8.log: tests/pngvalid-gamma-16-to-8
|
|
1596
|
+
@p='tests/pngvalid-gamma-16-to-8'; \
|
|
1597
|
+
b='tests/pngvalid-gamma-16-to-8'; \
|
|
1598
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1599
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1600
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1601
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1602
|
+
tests/pngvalid-gamma-alpha-mode.log: tests/pngvalid-gamma-alpha-mode
|
|
1603
|
+
@p='tests/pngvalid-gamma-alpha-mode'; \
|
|
1604
|
+
b='tests/pngvalid-gamma-alpha-mode'; \
|
|
1605
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1606
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1607
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1608
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1609
|
+
tests/pngvalid-gamma-background.log: tests/pngvalid-gamma-background
|
|
1610
|
+
@p='tests/pngvalid-gamma-background'; \
|
|
1611
|
+
b='tests/pngvalid-gamma-background'; \
|
|
1612
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1613
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1614
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1615
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1616
|
+
tests/pngvalid-gamma-expand16-alpha-mode.log: tests/pngvalid-gamma-expand16-alpha-mode
|
|
1617
|
+
@p='tests/pngvalid-gamma-expand16-alpha-mode'; \
|
|
1618
|
+
b='tests/pngvalid-gamma-expand16-alpha-mode'; \
|
|
1619
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1620
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1621
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1622
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1623
|
+
tests/pngvalid-gamma-expand16-background.log: tests/pngvalid-gamma-expand16-background
|
|
1624
|
+
@p='tests/pngvalid-gamma-expand16-background'; \
|
|
1625
|
+
b='tests/pngvalid-gamma-expand16-background'; \
|
|
1626
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1627
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1628
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1629
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1630
|
+
tests/pngvalid-gamma-expand16-transform.log: tests/pngvalid-gamma-expand16-transform
|
|
1631
|
+
@p='tests/pngvalid-gamma-expand16-transform'; \
|
|
1632
|
+
b='tests/pngvalid-gamma-expand16-transform'; \
|
|
1633
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1634
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1635
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1636
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1637
|
+
tests/pngvalid-gamma-sbit.log: tests/pngvalid-gamma-sbit
|
|
1638
|
+
@p='tests/pngvalid-gamma-sbit'; \
|
|
1639
|
+
b='tests/pngvalid-gamma-sbit'; \
|
|
1640
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1641
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1642
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1643
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1644
|
+
tests/pngvalid-gamma-threshold.log: tests/pngvalid-gamma-threshold
|
|
1645
|
+
@p='tests/pngvalid-gamma-threshold'; \
|
|
1646
|
+
b='tests/pngvalid-gamma-threshold'; \
|
|
1647
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1648
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1649
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1650
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1651
|
+
tests/pngvalid-gamma-transform.log: tests/pngvalid-gamma-transform
|
|
1652
|
+
@p='tests/pngvalid-gamma-transform'; \
|
|
1653
|
+
b='tests/pngvalid-gamma-transform'; \
|
|
1654
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1655
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1656
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1657
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1658
|
+
tests/pngvalid-progressive-size.log: tests/pngvalid-progressive-size
|
|
1659
|
+
@p='tests/pngvalid-progressive-size'; \
|
|
1660
|
+
b='tests/pngvalid-progressive-size'; \
|
|
1661
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1662
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1663
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1664
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1665
|
+
tests/pngvalid-progressive-interlace-standard.log: tests/pngvalid-progressive-interlace-standard
|
|
1666
|
+
@p='tests/pngvalid-progressive-interlace-standard'; \
|
|
1667
|
+
b='tests/pngvalid-progressive-interlace-standard'; \
|
|
1668
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1669
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1670
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1671
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1672
|
+
tests/pngvalid-transform.log: tests/pngvalid-transform
|
|
1673
|
+
@p='tests/pngvalid-transform'; \
|
|
1674
|
+
b='tests/pngvalid-transform'; \
|
|
1675
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1676
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1677
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1678
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1679
|
+
tests/pngvalid-progressive-standard.log: tests/pngvalid-progressive-standard
|
|
1680
|
+
@p='tests/pngvalid-progressive-standard'; \
|
|
1681
|
+
b='tests/pngvalid-progressive-standard'; \
|
|
1682
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1683
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1684
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1685
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1686
|
+
tests/pngvalid-standard.log: tests/pngvalid-standard
|
|
1687
|
+
@p='tests/pngvalid-standard'; \
|
|
1688
|
+
b='tests/pngvalid-standard'; \
|
|
1689
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1690
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1691
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1692
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1693
|
+
tests/pngstest-1.8.log: tests/pngstest-1.8
|
|
1694
|
+
@p='tests/pngstest-1.8'; \
|
|
1695
|
+
b='tests/pngstest-1.8'; \
|
|
1696
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1697
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1698
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1699
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1700
|
+
tests/pngstest-1.8-alpha.log: tests/pngstest-1.8-alpha
|
|
1701
|
+
@p='tests/pngstest-1.8-alpha'; \
|
|
1702
|
+
b='tests/pngstest-1.8-alpha'; \
|
|
1703
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1704
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1705
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1706
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1707
|
+
tests/pngstest-linear.log: tests/pngstest-linear
|
|
1708
|
+
@p='tests/pngstest-linear'; \
|
|
1709
|
+
b='tests/pngstest-linear'; \
|
|
1710
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1711
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1712
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1713
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1714
|
+
tests/pngstest-linear-alpha.log: tests/pngstest-linear-alpha
|
|
1715
|
+
@p='tests/pngstest-linear-alpha'; \
|
|
1716
|
+
b='tests/pngstest-linear-alpha'; \
|
|
1717
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1718
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1719
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1720
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1721
|
+
tests/pngstest-none.log: tests/pngstest-none
|
|
1722
|
+
@p='tests/pngstest-none'; \
|
|
1723
|
+
b='tests/pngstest-none'; \
|
|
1724
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1725
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1726
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1727
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1728
|
+
tests/pngstest-none-alpha.log: tests/pngstest-none-alpha
|
|
1729
|
+
@p='tests/pngstest-none-alpha'; \
|
|
1730
|
+
b='tests/pngstest-none-alpha'; \
|
|
1731
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1732
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1733
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1734
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1735
|
+
tests/pngstest-sRGB.log: tests/pngstest-sRGB
|
|
1736
|
+
@p='tests/pngstest-sRGB'; \
|
|
1737
|
+
b='tests/pngstest-sRGB'; \
|
|
1738
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1739
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1740
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1741
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1742
|
+
tests/pngstest-sRGB-alpha.log: tests/pngstest-sRGB-alpha
|
|
1743
|
+
@p='tests/pngstest-sRGB-alpha'; \
|
|
1744
|
+
b='tests/pngstest-sRGB-alpha'; \
|
|
1745
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1746
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1747
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1748
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1749
|
+
tests/pngunknown-IDAT.log: tests/pngunknown-IDAT
|
|
1750
|
+
@p='tests/pngunknown-IDAT'; \
|
|
1751
|
+
b='tests/pngunknown-IDAT'; \
|
|
1752
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1753
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1754
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1755
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1756
|
+
tests/pngunknown-discard.log: tests/pngunknown-discard
|
|
1757
|
+
@p='tests/pngunknown-discard'; \
|
|
1758
|
+
b='tests/pngunknown-discard'; \
|
|
1759
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1760
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1761
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1762
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1763
|
+
tests/pngunknown-if-safe.log: tests/pngunknown-if-safe
|
|
1764
|
+
@p='tests/pngunknown-if-safe'; \
|
|
1765
|
+
b='tests/pngunknown-if-safe'; \
|
|
1766
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1767
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1768
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1769
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1770
|
+
tests/pngunknown-sAPI.log: tests/pngunknown-sAPI
|
|
1771
|
+
@p='tests/pngunknown-sAPI'; \
|
|
1772
|
+
b='tests/pngunknown-sAPI'; \
|
|
1773
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1774
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1775
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1776
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1777
|
+
tests/pngunknown-sTER.log: tests/pngunknown-sTER
|
|
1778
|
+
@p='tests/pngunknown-sTER'; \
|
|
1779
|
+
b='tests/pngunknown-sTER'; \
|
|
1780
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1781
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1782
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1783
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1784
|
+
tests/pngunknown-save.log: tests/pngunknown-save
|
|
1785
|
+
@p='tests/pngunknown-save'; \
|
|
1786
|
+
b='tests/pngunknown-save'; \
|
|
1787
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1788
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1789
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1790
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1791
|
+
tests/pngunknown-vpAg.log: tests/pngunknown-vpAg
|
|
1792
|
+
@p='tests/pngunknown-vpAg'; \
|
|
1793
|
+
b='tests/pngunknown-vpAg'; \
|
|
1794
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1795
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1796
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1797
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1798
|
+
tests/pngimage-quick.log: tests/pngimage-quick
|
|
1799
|
+
@p='tests/pngimage-quick'; \
|
|
1800
|
+
b='tests/pngimage-quick'; \
|
|
1801
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1802
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1803
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1804
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1805
|
+
tests/pngimage-full.log: tests/pngimage-full
|
|
1806
|
+
@p='tests/pngimage-full'; \
|
|
1807
|
+
b='tests/pngimage-full'; \
|
|
1808
|
+
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
|
|
1809
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1810
|
+
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
|
|
1811
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1812
|
+
.test.log:
|
|
1813
|
+
@p='$<'; \
|
|
1814
|
+
$(am__set_b); \
|
|
1815
|
+
$(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
|
|
1816
|
+
--log-file $$b.log --trs-file $$b.trs \
|
|
1817
|
+
$(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
|
|
1818
|
+
"$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1819
|
+
@am__EXEEXT_TRUE@.test$(EXEEXT).log:
|
|
1820
|
+
@am__EXEEXT_TRUE@ @p='$<'; \
|
|
1821
|
+
@am__EXEEXT_TRUE@ $(am__set_b); \
|
|
1822
|
+
@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
|
|
1823
|
+
@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
|
|
1824
|
+
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
|
|
1825
|
+
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
|
|
1826
|
+
|
|
1827
|
+
distdir: $(BUILT_SOURCES)
|
|
1828
|
+
$(MAKE) $(AM_MAKEFLAGS) distdir-am
|
|
1829
|
+
|
|
1830
|
+
distdir-am: $(DISTFILES)
|
|
1831
|
+
$(am__remove_distdir)
|
|
1832
|
+
test -d "$(distdir)" || mkdir "$(distdir)"
|
|
1833
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
1834
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
1835
|
+
list='$(DISTFILES)'; \
|
|
1836
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
|
1837
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
|
1838
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
|
1839
|
+
case $$dist_files in \
|
|
1840
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
|
1841
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
|
1842
|
+
sort -u` ;; \
|
|
1843
|
+
esac; \
|
|
1844
|
+
for file in $$dist_files; do \
|
|
1845
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
1846
|
+
if test -d $$d/$$file; then \
|
|
1847
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
1848
|
+
if test -d "$(distdir)/$$file"; then \
|
|
1849
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
1850
|
+
fi; \
|
|
1851
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
1852
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
1853
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
1854
|
+
fi; \
|
|
1855
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
|
1856
|
+
else \
|
|
1857
|
+
test -f "$(distdir)/$$file" \
|
|
1858
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
|
1859
|
+
|| exit 1; \
|
|
1860
|
+
fi; \
|
|
1861
|
+
done
|
|
1862
|
+
$(MAKE) $(AM_MAKEFLAGS) \
|
|
1863
|
+
top_distdir="$(top_distdir)" distdir="$(distdir)" \
|
|
1864
|
+
dist-hook
|
|
1865
|
+
-test -n "$(am__skip_mode_fix)" \
|
|
1866
|
+
|| find "$(distdir)" -type d ! -perm -755 \
|
|
1867
|
+
-exec chmod u+rwx,go+rx {} \; -o \
|
|
1868
|
+
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
|
|
1869
|
+
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
|
|
1870
|
+
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|
|
1871
|
+
|| chmod -R a+r "$(distdir)"
|
|
1872
|
+
dist-gzip: distdir
|
|
1873
|
+
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
|
|
1874
|
+
$(am__post_remove_distdir)
|
|
1875
|
+
|
|
1876
|
+
dist-bzip2: distdir
|
|
1877
|
+
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
|
|
1878
|
+
$(am__post_remove_distdir)
|
|
1879
|
+
|
|
1880
|
+
dist-lzip: distdir
|
|
1881
|
+
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
|
|
1882
|
+
$(am__post_remove_distdir)
|
|
1883
|
+
dist-xz: distdir
|
|
1884
|
+
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
|
1885
|
+
$(am__post_remove_distdir)
|
|
1886
|
+
|
|
1887
|
+
dist-tarZ: distdir
|
|
1888
|
+
@echo WARNING: "Support for distribution archives compressed with" \
|
|
1889
|
+
"legacy program 'compress' is deprecated." >&2
|
|
1890
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
|
1891
|
+
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
|
|
1892
|
+
$(am__post_remove_distdir)
|
|
1893
|
+
|
|
1894
|
+
dist-shar: distdir
|
|
1895
|
+
@echo WARNING: "Support for shar distribution archives is" \
|
|
1896
|
+
"deprecated." >&2
|
|
1897
|
+
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
|
|
1898
|
+
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
|
|
1899
|
+
$(am__post_remove_distdir)
|
|
1900
|
+
|
|
1901
|
+
dist-zip: distdir
|
|
1902
|
+
-rm -f $(distdir).zip
|
|
1903
|
+
zip -rq $(distdir).zip $(distdir)
|
|
1904
|
+
$(am__post_remove_distdir)
|
|
1905
|
+
|
|
1906
|
+
dist dist-all:
|
|
1907
|
+
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
|
|
1908
|
+
$(am__post_remove_distdir)
|
|
1909
|
+
|
|
1910
|
+
# This target untars the dist file and tries a VPATH configuration. Then
|
|
1911
|
+
# it guarantees that the distribution is self-contained by making another
|
|
1912
|
+
# tarfile.
|
|
1913
|
+
distcheck: dist
|
|
1914
|
+
case '$(DIST_ARCHIVES)' in \
|
|
1915
|
+
*.tar.gz*) \
|
|
1916
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
|
|
1917
|
+
*.tar.bz2*) \
|
|
1918
|
+
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
|
|
1919
|
+
*.tar.lz*) \
|
|
1920
|
+
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
|
|
1921
|
+
*.tar.xz*) \
|
|
1922
|
+
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
|
|
1923
|
+
*.tar.Z*) \
|
|
1924
|
+
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
|
|
1925
|
+
*.shar.gz*) \
|
|
1926
|
+
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
|
1927
|
+
*.zip*) \
|
|
1928
|
+
unzip $(distdir).zip ;;\
|
|
1929
|
+
esac
|
|
1930
|
+
chmod -R a-w $(distdir)
|
|
1931
|
+
chmod u+w $(distdir)
|
|
1932
|
+
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
|
|
1933
|
+
chmod a-w $(distdir)
|
|
1934
|
+
test -d $(distdir)/_build || exit 0; \
|
|
1935
|
+
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
|
|
1936
|
+
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
|
|
1937
|
+
&& am__cwd=`pwd` \
|
|
1938
|
+
&& $(am__cd) $(distdir)/_build/sub \
|
|
1939
|
+
&& ../../configure \
|
|
1940
|
+
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
|
|
1941
|
+
$(DISTCHECK_CONFIGURE_FLAGS) \
|
|
1942
|
+
--srcdir=../.. --prefix="$$dc_install_base" \
|
|
1943
|
+
&& $(MAKE) $(AM_MAKEFLAGS) \
|
|
1944
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
|
|
1945
|
+
&& $(MAKE) $(AM_MAKEFLAGS) check \
|
|
1946
|
+
&& $(MAKE) $(AM_MAKEFLAGS) install \
|
|
1947
|
+
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
|
|
1948
|
+
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
|
|
1949
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
|
|
1950
|
+
distuninstallcheck \
|
|
1951
|
+
&& chmod -R a-w "$$dc_install_base" \
|
|
1952
|
+
&& ({ \
|
|
1953
|
+
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
|
|
1954
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
|
|
1955
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
|
|
1956
|
+
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
|
|
1957
|
+
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
|
|
1958
|
+
} || { rm -rf "$$dc_destdir"; exit 1; }) \
|
|
1959
|
+
&& rm -rf "$$dc_destdir" \
|
|
1960
|
+
&& $(MAKE) $(AM_MAKEFLAGS) dist \
|
|
1961
|
+
&& rm -rf $(DIST_ARCHIVES) \
|
|
1962
|
+
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
|
|
1963
|
+
&& cd "$$am__cwd" \
|
|
1964
|
+
|| exit 1
|
|
1965
|
+
$(am__post_remove_distdir)
|
|
1966
|
+
@(echo "$(distdir) archives ready for distribution: "; \
|
|
1967
|
+
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
|
|
1968
|
+
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
|
|
1969
|
+
distuninstallcheck:
|
|
1970
|
+
@test -n '$(distuninstallcheck_dir)' || { \
|
|
1971
|
+
echo 'ERROR: trying to run $@ with an empty' \
|
|
1972
|
+
'$$(distuninstallcheck_dir)' >&2; \
|
|
1973
|
+
exit 1; \
|
|
1974
|
+
}; \
|
|
1975
|
+
$(am__cd) '$(distuninstallcheck_dir)' || { \
|
|
1976
|
+
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
|
|
1977
|
+
exit 1; \
|
|
1978
|
+
}; \
|
|
1979
|
+
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|
|
1980
|
+
|| { echo "ERROR: files left after uninstall:" ; \
|
|
1981
|
+
if test -n "$(DESTDIR)"; then \
|
|
1982
|
+
echo " (check DESTDIR support)"; \
|
|
1983
|
+
fi ; \
|
|
1984
|
+
$(distuninstallcheck_listfiles) ; \
|
|
1985
|
+
exit 1; } >&2
|
|
1986
|
+
distcleancheck: distclean
|
|
1987
|
+
@if test '$(srcdir)' = . ; then \
|
|
1988
|
+
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
|
|
1989
|
+
exit 1 ; \
|
|
1990
|
+
fi
|
|
1991
|
+
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|
|
1992
|
+
|| { echo "ERROR: files left in build directory after distclean:" ; \
|
|
1993
|
+
$(distcleancheck_listfiles) ; \
|
|
1994
|
+
exit 1; } >&2
|
|
1995
|
+
check-am: all-am
|
|
1996
|
+
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
|
|
1997
|
+
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
|
|
1998
|
+
check: $(BUILT_SOURCES)
|
|
1999
|
+
$(MAKE) $(AM_MAKEFLAGS) check-am
|
|
2000
|
+
all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(MANS) $(DATA) \
|
|
2001
|
+
$(HEADERS) config.h
|
|
2002
|
+
install-binPROGRAMS: install-libLTLIBRARIES
|
|
2003
|
+
|
|
2004
|
+
installdirs:
|
|
2005
|
+
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man3dir)" "$(DESTDIR)$(man5dir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pkgincludedir)"; do \
|
|
2006
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
2007
|
+
done
|
|
2008
|
+
install: $(BUILT_SOURCES)
|
|
2009
|
+
$(MAKE) $(AM_MAKEFLAGS) install-am
|
|
2010
|
+
install-exec: install-exec-am
|
|
2011
|
+
install-data: install-data-am
|
|
2012
|
+
uninstall: uninstall-am
|
|
2013
|
+
|
|
2014
|
+
install-am: all-am
|
|
2015
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
2016
|
+
|
|
2017
|
+
installcheck: installcheck-am
|
|
2018
|
+
install-strip:
|
|
2019
|
+
if test -z '$(STRIP)'; then \
|
|
2020
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
2021
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
2022
|
+
install; \
|
|
2023
|
+
else \
|
|
2024
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
2025
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
2026
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
|
2027
|
+
fi
|
|
2028
|
+
mostlyclean-generic:
|
|
2029
|
+
-test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
|
|
2030
|
+
-test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
|
|
2031
|
+
-test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
|
|
2032
|
+
|
|
2033
|
+
clean-generic:
|
|
2034
|
+
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
|
|
2035
|
+
|
|
2036
|
+
distclean-generic:
|
|
2037
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
2038
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
2039
|
+
-rm -f arm/$(DEPDIR)/$(am__dirstamp)
|
|
2040
|
+
-rm -f arm/$(am__dirstamp)
|
|
2041
|
+
-rm -f contrib/libtests/$(DEPDIR)/$(am__dirstamp)
|
|
2042
|
+
-rm -f contrib/libtests/$(am__dirstamp)
|
|
2043
|
+
-rm -f contrib/tools/$(DEPDIR)/$(am__dirstamp)
|
|
2044
|
+
-rm -f contrib/tools/$(am__dirstamp)
|
|
2045
|
+
-rm -f intel/$(DEPDIR)/$(am__dirstamp)
|
|
2046
|
+
-rm -f intel/$(am__dirstamp)
|
|
2047
|
+
-rm -f mips/$(DEPDIR)/$(am__dirstamp)
|
|
2048
|
+
-rm -f mips/$(am__dirstamp)
|
|
2049
|
+
-rm -f powerpc/$(DEPDIR)/$(am__dirstamp)
|
|
2050
|
+
-rm -f powerpc/$(am__dirstamp)
|
|
2051
|
+
|
|
2052
|
+
maintainer-clean-generic:
|
|
2053
|
+
@echo "This command is intended for maintainers to use"
|
|
2054
|
+
@echo "it deletes files that may require special tools to rebuild."
|
|
2055
|
+
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
|
|
2056
|
+
-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
|
|
2057
|
+
@DO_INSTALL_LIBPNG_CONFIG_FALSE@@DO_INSTALL_LINKS_FALSE@install-exec-hook:
|
|
2058
|
+
@DO_INSTALL_LIBPNG_PC_FALSE@@DO_INSTALL_LINKS_FALSE@install-data-hook:
|
|
2059
|
+
@DO_INSTALL_LIBPNG_CONFIG_FALSE@@DO_INSTALL_LIBPNG_PC_FALSE@@DO_INSTALL_LINKS_FALSE@uninstall-hook:
|
|
2060
|
+
clean: clean-am
|
|
2061
|
+
|
|
2062
|
+
clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
|
|
2063
|
+
clean-libLTLIBRARIES clean-libtool mostlyclean-am
|
|
2064
|
+
|
|
2065
|
+
distclean: distclean-am
|
|
2066
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
2067
|
+
-rm -f ./$(DEPDIR)/png.Plo
|
|
2068
|
+
-rm -f ./$(DEPDIR)/pngerror.Plo
|
|
2069
|
+
-rm -f ./$(DEPDIR)/pngget.Plo
|
|
2070
|
+
-rm -f ./$(DEPDIR)/pngmem.Plo
|
|
2071
|
+
-rm -f ./$(DEPDIR)/pngpread.Plo
|
|
2072
|
+
-rm -f ./$(DEPDIR)/pngread.Plo
|
|
2073
|
+
-rm -f ./$(DEPDIR)/pngrio.Plo
|
|
2074
|
+
-rm -f ./$(DEPDIR)/pngrtran.Plo
|
|
2075
|
+
-rm -f ./$(DEPDIR)/pngrutil.Plo
|
|
2076
|
+
-rm -f ./$(DEPDIR)/pngset.Plo
|
|
2077
|
+
-rm -f ./$(DEPDIR)/pngtest.Po
|
|
2078
|
+
-rm -f ./$(DEPDIR)/pngtrans.Plo
|
|
2079
|
+
-rm -f ./$(DEPDIR)/pngwio.Plo
|
|
2080
|
+
-rm -f ./$(DEPDIR)/pngwrite.Plo
|
|
2081
|
+
-rm -f ./$(DEPDIR)/pngwtran.Plo
|
|
2082
|
+
-rm -f ./$(DEPDIR)/pngwutil.Plo
|
|
2083
|
+
-rm -f arm/$(DEPDIR)/arm_init.Plo
|
|
2084
|
+
-rm -f arm/$(DEPDIR)/filter_neon.Plo
|
|
2085
|
+
-rm -f arm/$(DEPDIR)/filter_neon_intrinsics.Plo
|
|
2086
|
+
-rm -f arm/$(DEPDIR)/palette_neon_intrinsics.Plo
|
|
2087
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngimage.Po
|
|
2088
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngstest.Po
|
|
2089
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngunknown.Po
|
|
2090
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngvalid.Po
|
|
2091
|
+
-rm -f contrib/libtests/$(DEPDIR)/timepng.Po
|
|
2092
|
+
-rm -f contrib/tools/$(DEPDIR)/png-fix-itxt.Po
|
|
2093
|
+
-rm -f contrib/tools/$(DEPDIR)/pngcp.Po
|
|
2094
|
+
-rm -f contrib/tools/$(DEPDIR)/pngfix.Po
|
|
2095
|
+
-rm -f intel/$(DEPDIR)/filter_sse2_intrinsics.Plo
|
|
2096
|
+
-rm -f intel/$(DEPDIR)/intel_init.Plo
|
|
2097
|
+
-rm -f mips/$(DEPDIR)/filter_msa_intrinsics.Plo
|
|
2098
|
+
-rm -f mips/$(DEPDIR)/mips_init.Plo
|
|
2099
|
+
-rm -f powerpc/$(DEPDIR)/filter_vsx_intrinsics.Plo
|
|
2100
|
+
-rm -f powerpc/$(DEPDIR)/powerpc_init.Plo
|
|
2101
|
+
-rm -f Makefile
|
|
2102
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
|
2103
|
+
distclean-hdr distclean-libtool distclean-tags
|
|
2104
|
+
|
|
2105
|
+
dvi: dvi-am
|
|
2106
|
+
|
|
2107
|
+
dvi-am:
|
|
2108
|
+
|
|
2109
|
+
html: html-am
|
|
2110
|
+
|
|
2111
|
+
html-am:
|
|
2112
|
+
|
|
2113
|
+
info: info-am
|
|
2114
|
+
|
|
2115
|
+
info-am:
|
|
2116
|
+
|
|
2117
|
+
install-data-am: install-man install-nodist_pkgincludeHEADERS \
|
|
2118
|
+
install-pkgconfigDATA install-pkgincludeHEADERS
|
|
2119
|
+
@$(NORMAL_INSTALL)
|
|
2120
|
+
$(MAKE) $(AM_MAKEFLAGS) install-data-hook
|
|
2121
|
+
install-dvi: install-dvi-am
|
|
2122
|
+
|
|
2123
|
+
install-dvi-am:
|
|
2124
|
+
|
|
2125
|
+
install-exec-am: install-binPROGRAMS install-binSCRIPTS \
|
|
2126
|
+
install-libLTLIBRARIES
|
|
2127
|
+
@$(NORMAL_INSTALL)
|
|
2128
|
+
$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
|
|
2129
|
+
install-html: install-html-am
|
|
2130
|
+
|
|
2131
|
+
install-html-am:
|
|
2132
|
+
|
|
2133
|
+
install-info: install-info-am
|
|
2134
|
+
|
|
2135
|
+
install-info-am:
|
|
2136
|
+
|
|
2137
|
+
install-man: install-man3 install-man5
|
|
2138
|
+
|
|
2139
|
+
install-pdf: install-pdf-am
|
|
2140
|
+
|
|
2141
|
+
install-pdf-am:
|
|
2142
|
+
|
|
2143
|
+
install-ps: install-ps-am
|
|
2144
|
+
|
|
2145
|
+
install-ps-am:
|
|
2146
|
+
|
|
2147
|
+
installcheck-am:
|
|
2148
|
+
|
|
2149
|
+
maintainer-clean: maintainer-clean-am
|
|
2150
|
+
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
|
|
2151
|
+
-rm -rf $(top_srcdir)/autom4te.cache
|
|
2152
|
+
-rm -f ./$(DEPDIR)/png.Plo
|
|
2153
|
+
-rm -f ./$(DEPDIR)/pngerror.Plo
|
|
2154
|
+
-rm -f ./$(DEPDIR)/pngget.Plo
|
|
2155
|
+
-rm -f ./$(DEPDIR)/pngmem.Plo
|
|
2156
|
+
-rm -f ./$(DEPDIR)/pngpread.Plo
|
|
2157
|
+
-rm -f ./$(DEPDIR)/pngread.Plo
|
|
2158
|
+
-rm -f ./$(DEPDIR)/pngrio.Plo
|
|
2159
|
+
-rm -f ./$(DEPDIR)/pngrtran.Plo
|
|
2160
|
+
-rm -f ./$(DEPDIR)/pngrutil.Plo
|
|
2161
|
+
-rm -f ./$(DEPDIR)/pngset.Plo
|
|
2162
|
+
-rm -f ./$(DEPDIR)/pngtest.Po
|
|
2163
|
+
-rm -f ./$(DEPDIR)/pngtrans.Plo
|
|
2164
|
+
-rm -f ./$(DEPDIR)/pngwio.Plo
|
|
2165
|
+
-rm -f ./$(DEPDIR)/pngwrite.Plo
|
|
2166
|
+
-rm -f ./$(DEPDIR)/pngwtran.Plo
|
|
2167
|
+
-rm -f ./$(DEPDIR)/pngwutil.Plo
|
|
2168
|
+
-rm -f arm/$(DEPDIR)/arm_init.Plo
|
|
2169
|
+
-rm -f arm/$(DEPDIR)/filter_neon.Plo
|
|
2170
|
+
-rm -f arm/$(DEPDIR)/filter_neon_intrinsics.Plo
|
|
2171
|
+
-rm -f arm/$(DEPDIR)/palette_neon_intrinsics.Plo
|
|
2172
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngimage.Po
|
|
2173
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngstest.Po
|
|
2174
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngunknown.Po
|
|
2175
|
+
-rm -f contrib/libtests/$(DEPDIR)/pngvalid.Po
|
|
2176
|
+
-rm -f contrib/libtests/$(DEPDIR)/timepng.Po
|
|
2177
|
+
-rm -f contrib/tools/$(DEPDIR)/png-fix-itxt.Po
|
|
2178
|
+
-rm -f contrib/tools/$(DEPDIR)/pngcp.Po
|
|
2179
|
+
-rm -f contrib/tools/$(DEPDIR)/pngfix.Po
|
|
2180
|
+
-rm -f intel/$(DEPDIR)/filter_sse2_intrinsics.Plo
|
|
2181
|
+
-rm -f intel/$(DEPDIR)/intel_init.Plo
|
|
2182
|
+
-rm -f mips/$(DEPDIR)/filter_msa_intrinsics.Plo
|
|
2183
|
+
-rm -f mips/$(DEPDIR)/mips_init.Plo
|
|
2184
|
+
-rm -f powerpc/$(DEPDIR)/filter_vsx_intrinsics.Plo
|
|
2185
|
+
-rm -f powerpc/$(DEPDIR)/powerpc_init.Plo
|
|
2186
|
+
-rm -f Makefile
|
|
2187
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
2188
|
+
|
|
2189
|
+
mostlyclean: mostlyclean-am
|
|
2190
|
+
|
|
2191
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
2192
|
+
mostlyclean-libtool
|
|
2193
|
+
|
|
2194
|
+
pdf: pdf-am
|
|
2195
|
+
|
|
2196
|
+
pdf-am:
|
|
2197
|
+
|
|
2198
|
+
ps: ps-am
|
|
2199
|
+
|
|
2200
|
+
ps-am:
|
|
2201
|
+
|
|
2202
|
+
uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIPTS \
|
|
2203
|
+
uninstall-libLTLIBRARIES uninstall-man \
|
|
2204
|
+
uninstall-nodist_pkgincludeHEADERS uninstall-pkgconfigDATA \
|
|
2205
|
+
uninstall-pkgincludeHEADERS
|
|
2206
|
+
@$(NORMAL_INSTALL)
|
|
2207
|
+
$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
|
|
2208
|
+
uninstall-man: uninstall-man3 uninstall-man5
|
|
2209
|
+
|
|
2210
|
+
.MAKE: all check check-am install install-am install-data-am \
|
|
2211
|
+
install-exec-am install-strip uninstall-am
|
|
2212
|
+
|
|
2213
|
+
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles am--refresh check \
|
|
2214
|
+
check-TESTS check-am clean clean-binPROGRAMS \
|
|
2215
|
+
clean-checkPROGRAMS clean-cscope clean-generic \
|
|
2216
|
+
clean-libLTLIBRARIES clean-libtool cscope cscopelist-am ctags \
|
|
2217
|
+
ctags-am dist dist-all dist-bzip2 dist-gzip dist-hook \
|
|
2218
|
+
dist-lzip dist-shar dist-tarZ dist-xz dist-zip distcheck \
|
|
2219
|
+
distclean distclean-compile distclean-generic distclean-hdr \
|
|
2220
|
+
distclean-libtool distclean-tags distcleancheck distdir \
|
|
2221
|
+
distuninstallcheck dvi dvi-am html html-am info info-am \
|
|
2222
|
+
install install-am install-binPROGRAMS install-binSCRIPTS \
|
|
2223
|
+
install-data install-data-am install-data-hook install-dvi \
|
|
2224
|
+
install-dvi-am install-exec install-exec-am install-exec-hook \
|
|
2225
|
+
install-html install-html-am install-info install-info-am \
|
|
2226
|
+
install-libLTLIBRARIES install-man install-man3 install-man5 \
|
|
2227
|
+
install-nodist_pkgincludeHEADERS install-pdf install-pdf-am \
|
|
2228
|
+
install-pkgconfigDATA install-pkgincludeHEADERS install-ps \
|
|
2229
|
+
install-ps-am install-strip installcheck installcheck-am \
|
|
2230
|
+
installdirs maintainer-clean maintainer-clean-generic \
|
|
2231
|
+
mostlyclean mostlyclean-compile mostlyclean-generic \
|
|
2232
|
+
mostlyclean-libtool pdf pdf-am ps ps-am recheck tags tags-am \
|
|
2233
|
+
uninstall uninstall-am uninstall-binPROGRAMS \
|
|
2234
|
+
uninstall-binSCRIPTS uninstall-hook uninstall-libLTLIBRARIES \
|
|
2235
|
+
uninstall-man uninstall-man3 uninstall-man5 \
|
|
2236
|
+
uninstall-nodist_pkgincludeHEADERS uninstall-pkgconfigDATA \
|
|
2237
|
+
uninstall-pkgincludeHEADERS
|
|
2238
|
+
|
|
2239
|
+
.PRECIOUS: Makefile
|
|
2240
|
+
|
|
2241
|
+
|
|
2242
|
+
$(PNGLIB_BASENAME).pc: libpng.pc
|
|
2243
|
+
cp libpng.pc $@
|
|
2244
|
+
|
|
2245
|
+
$(PNGLIB_BASENAME)-config: libpng-config
|
|
2246
|
+
cp libpng-config $@
|
|
2247
|
+
|
|
2248
|
+
scripts/sym.out scripts/vers.out: png.h pngconf.h pnglibconf.h
|
|
2249
|
+
scripts/prefix.out: png.h pngconf.h pnglibconf.out
|
|
2250
|
+
scripts/symbols.out: png.h pngconf.h $(srcdir)/scripts/pnglibconf.h.prebuilt
|
|
2251
|
+
scripts/intprefix.out: pnglibconf.h
|
|
2252
|
+
|
|
2253
|
+
libpng.sym: scripts/sym.out
|
|
2254
|
+
rm -f $@
|
|
2255
|
+
cp $? $@
|
|
2256
|
+
libpng.vers: scripts/vers.out
|
|
2257
|
+
rm -f $@
|
|
2258
|
+
cp $? $@
|
|
2259
|
+
|
|
2260
|
+
# Rename functions in scripts/prefix.out with a PNG_PREFIX prefix.
|
|
2261
|
+
# Rename macros in scripts/macro.lst from PNG_PREFIXpng_ to PNG_ (the actual
|
|
2262
|
+
# implementation of the macro).
|
|
2263
|
+
@DO_PNG_PREFIX_TRUE@pnglibconf.h: pnglibconf.out scripts/prefix.out scripts/macro.lst
|
|
2264
|
+
@DO_PNG_PREFIX_TRUE@ rm -f $@
|
|
2265
|
+
@DO_PNG_PREFIX_TRUE@ $(AWK) 's==0 && NR>1{print prev}\
|
|
2266
|
+
@DO_PNG_PREFIX_TRUE@ s==0{prev=$$0}\
|
|
2267
|
+
@DO_PNG_PREFIX_TRUE@ s==1{print "#define", $$1, "@PNG_PREFIX@" $$1}\
|
|
2268
|
+
@DO_PNG_PREFIX_TRUE@ s==2{print "#define @PNG_PREFIX@png_" $$1, "PNG_" $$1}\
|
|
2269
|
+
@DO_PNG_PREFIX_TRUE@ END{print prev}' s=0 pnglibconf.out s=1 scripts/prefix.out\
|
|
2270
|
+
@DO_PNG_PREFIX_TRUE@ s=2 ${srcdir}/scripts/macro.lst >pnglibconf.tf8
|
|
2271
|
+
@DO_PNG_PREFIX_TRUE@ mv pnglibconf.tf8 $@
|
|
2272
|
+
|
|
2273
|
+
@DO_PNG_PREFIX_TRUE@pngprefix.h: scripts/intprefix.out
|
|
2274
|
+
@DO_PNG_PREFIX_TRUE@ rm -f pngprefix.tf1
|
|
2275
|
+
@DO_PNG_PREFIX_TRUE@ $(AWK) '{print "#define", $$1, "@PNG_PREFIX@" $$1}' $? >pngprefix.tf1
|
|
2276
|
+
@DO_PNG_PREFIX_TRUE@ mv pngprefix.tf1 $@
|
|
2277
|
+
@DO_PNG_PREFIX_FALSE@pnglibconf.h: pnglibconf.out
|
|
2278
|
+
@DO_PNG_PREFIX_FALSE@ rm -f $@
|
|
2279
|
+
@DO_PNG_PREFIX_FALSE@ cp $? $@
|
|
2280
|
+
|
|
2281
|
+
@DO_PNG_PREFIX_FALSE@pngprefix.h: # is empty
|
|
2282
|
+
@DO_PNG_PREFIX_FALSE@ :>$@
|
|
2283
|
+
|
|
2284
|
+
$(srcdir)/scripts/pnglibconf.h.prebuilt:
|
|
2285
|
+
@echo "Attempting to build $@" >&2
|
|
2286
|
+
@echo "This is a machine generated file, but if you want to make" >&2
|
|
2287
|
+
@echo "a new one simply make 'scripts/pnglibconf.out', copy that" >&2
|
|
2288
|
+
@echo "AND set PNG_ZLIB_VERNUM to 0 (you MUST do this)" >&2
|
|
2289
|
+
@exit 1
|
|
2290
|
+
|
|
2291
|
+
# The following is necessary to ensure that the local pnglibconf.h is used, not
|
|
2292
|
+
# an installed one (this can happen immediately after on a clean system if
|
|
2293
|
+
# 'make test' is the first thing the user does.) Only files which include
|
|
2294
|
+
# one of the png source files (typically png.h or pngpriv.h) need to be listed
|
|
2295
|
+
# here:
|
|
2296
|
+
pngtest.o: pnglibconf.h
|
|
2297
|
+
|
|
2298
|
+
contrib/libtests/makepng.o: pnglibconf.h
|
|
2299
|
+
contrib/libtests/pngstest.o: pnglibconf.h
|
|
2300
|
+
contrib/libtests/pngunknown.o: pnglibconf.h
|
|
2301
|
+
contrib/libtests/pngimage.o: pnglibconf.h
|
|
2302
|
+
contrib/libtests/pngvalid.o: pnglibconf.h
|
|
2303
|
+
contrib/libtests/readpng.o: pnglibconf.h
|
|
2304
|
+
contrib/libtests/tarith.o: pnglibconf.h
|
|
2305
|
+
contrib/libtests/timepng.o: pnglibconf.h
|
|
2306
|
+
|
|
2307
|
+
contrib/tools/makesRGB.o: pnglibconf.h
|
|
2308
|
+
contrib/tools/pngfix.o: pnglibconf.h
|
|
2309
|
+
contrib/tools/pngcp.o: pnglibconf.h
|
|
2310
|
+
|
|
2311
|
+
.c.out:
|
|
2312
|
+
rm -f $@ $*.tf[12]
|
|
2313
|
+
test -d scripts || mkdir scripts || test -d scripts
|
|
2314
|
+
$(DFNCPP) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES)\
|
|
2315
|
+
$(CPPFLAGS) $(SYMBOL_CFLAGS) $< > $*.tf1
|
|
2316
|
+
$(AWK) -f "${srcdir}/scripts/dfn.awk" out="$*.tf2" $*.tf1 1>&2
|
|
2317
|
+
rm -f $*.tf1
|
|
2318
|
+
mv $*.tf2 $@
|
|
2319
|
+
|
|
2320
|
+
# The .c file for pnglibconf.h is machine generated
|
|
2321
|
+
pnglibconf.c: scripts/pnglibconf.dfa scripts/options.awk pngconf.h pngusr.dfa $(DFA_XTRA)
|
|
2322
|
+
rm -f $@ $*.tf[45]
|
|
2323
|
+
$(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf4 version=search\
|
|
2324
|
+
${srcdir}/pngconf.h ${srcdir}/scripts/pnglibconf.dfa\
|
|
2325
|
+
${srcdir}/pngusr.dfa $(DFA_XTRA) 1>&2
|
|
2326
|
+
$(AWK) -f ${srcdir}/scripts/options.awk out=$*.tf5 $*.tf4 1>&2
|
|
2327
|
+
rm $*.tf4
|
|
2328
|
+
mv $*.tf5 $@
|
|
2329
|
+
|
|
2330
|
+
# Symbol checks (.def and .out files should match)
|
|
2331
|
+
scripts/symbols.chk: scripts/checksym.awk scripts/symbols.def scripts/symbols.out
|
|
2332
|
+
|
|
2333
|
+
.out.chk:
|
|
2334
|
+
rm -f $@ $*.new
|
|
2335
|
+
$(AWK) -f ${srcdir}/scripts/checksym.awk ${srcdir}/scripts/${*F}.def\
|
|
2336
|
+
of="$*.new" $< >&2
|
|
2337
|
+
mv $*.new $@
|
|
2338
|
+
|
|
2339
|
+
# used on demand to regenerate the standard header, CPPFLAGS should
|
|
2340
|
+
# be empty - no non-standard defines
|
|
2341
|
+
scripts/pnglibconf.c: scripts/pnglibconf.dfa scripts/options.awk pngconf.h
|
|
2342
|
+
rm -f $@ pnglibconf.tf[67]
|
|
2343
|
+
test -z "$(CPPFLAGS)"
|
|
2344
|
+
echo "com @PNGLIB_VERSION@ STANDARD API DEFINITION" |\
|
|
2345
|
+
$(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf6\
|
|
2346
|
+
logunsupported=1 version=search ${srcdir}/pngconf.h -\
|
|
2347
|
+
${srcdir}/scripts/pnglibconf.dfa 1>&2
|
|
2348
|
+
$(AWK) -f ${srcdir}/scripts/options.awk out=pnglibconf.tf7\
|
|
2349
|
+
pnglibconf.tf6 1>&2
|
|
2350
|
+
rm pnglibconf.tf6
|
|
2351
|
+
mv pnglibconf.tf7 $@
|
|
2352
|
+
|
|
2353
|
+
$(libpng@PNGLIB_MAJOR@@PNGLIB_MINOR@_la_OBJECTS): png.h pngconf.h \
|
|
2354
|
+
pnglibconf.h pngpriv.h pngdebug.h pnginfo.h pngstruct.h pngprefix.h
|
|
2355
|
+
|
|
2356
|
+
test: check-am
|
|
2357
|
+
|
|
2358
|
+
# Extra checks
|
|
2359
|
+
check: scripts/symbols.chk
|
|
2360
|
+
|
|
2361
|
+
# Don't distribute the generated script files
|
|
2362
|
+
dist-hook:
|
|
2363
|
+
cd '$(top_distdir)'; rm -f $(SCRIPT_CLEANFILES)
|
|
2364
|
+
|
|
2365
|
+
# Make links between installed files with release-specific names and the generic
|
|
2366
|
+
# file names. If this install rule is run the generic names will be deleted and
|
|
2367
|
+
# recreated - this has obvious issues for systems with multiple installations.
|
|
2368
|
+
|
|
2369
|
+
install-header-links:
|
|
2370
|
+
@set -ex; cd '$(DESTDIR)$(includedir)'; for f in $(HEADERS); do \
|
|
2371
|
+
rm -f "$$f"; $(LN_S) "$(PNGLIB_BASENAME)/$$f" "$$f"; done
|
|
2372
|
+
|
|
2373
|
+
uninstall-header-links:
|
|
2374
|
+
cd '$(DESTDIR)$(includedir)'; rm -f $(HEADERS)
|
|
2375
|
+
|
|
2376
|
+
install-libpng-pc:
|
|
2377
|
+
@set -ex; cd '$(DESTDIR)$(pkgconfigdir)'; rm -f libpng.pc; \
|
|
2378
|
+
$(LN_S) '$(PNGLIB_BASENAME).pc' libpng.pc
|
|
2379
|
+
|
|
2380
|
+
uninstall-libpng-pc:
|
|
2381
|
+
rm -f '$(DESTDIR)$(pkgconfigdir)/libpng.pc'
|
|
2382
|
+
|
|
2383
|
+
install-library-links:
|
|
2384
|
+
@set -x; cd '$(DESTDIR)$(libdir)';\
|
|
2385
|
+
for ext in $(EXT_LIST); do\
|
|
2386
|
+
rm -f "libpng.$$ext";\
|
|
2387
|
+
if test -f "$(PNGLIB_BASENAME).$$ext"; then\
|
|
2388
|
+
$(LN_S) "$(PNGLIB_BASENAME).$$ext" "libpng.$$ext" || exit 1;\
|
|
2389
|
+
fi;\
|
|
2390
|
+
done
|
|
2391
|
+
|
|
2392
|
+
uninstall-library-links:
|
|
2393
|
+
@set -x; cd '$(DESTDIR)$(libdir)'; for ext in $(EXT_LIST); do\
|
|
2394
|
+
rm -f "libpng.$$ext"; done
|
|
2395
|
+
|
|
2396
|
+
install-libpng-config:
|
|
2397
|
+
@set -ex; cd '$(DESTDIR)$(bindir)'; rm -f libpng-config; \
|
|
2398
|
+
$(LN_S) '$(PNGLIB_BASENAME)-config' libpng-config
|
|
2399
|
+
|
|
2400
|
+
uninstall-libpng-config:
|
|
2401
|
+
rm -f '$(DESTDIR)$(bindir)/libpng-config'
|
|
2402
|
+
|
|
2403
|
+
# If --enable-unversioned-links is specified the header and lib file links
|
|
2404
|
+
# will be automatically made on a 'make install':
|
|
2405
|
+
|
|
2406
|
+
@DO_INSTALL_LINKS_TRUE@install-data-hook: install-header-links
|
|
2407
|
+
@DO_INSTALL_LINKS_TRUE@uninstall-hook: uninstall-header-links
|
|
2408
|
+
@DO_INSTALL_LINKS_TRUE@install-exec-hook: install-library-links
|
|
2409
|
+
@DO_INSTALL_LINKS_TRUE@uninstall-hook: uninstall-library-links
|
|
2410
|
+
|
|
2411
|
+
# Likewise, --install-pc causes libpng.pc to be constructed:
|
|
2412
|
+
|
|
2413
|
+
@DO_INSTALL_LIBPNG_PC_TRUE@install-data-hook: install-libpng-pc
|
|
2414
|
+
@DO_INSTALL_LIBPNG_PC_TRUE@uninstall-hook: uninstall-libpng-pc
|
|
2415
|
+
|
|
2416
|
+
# And --install-config:
|
|
2417
|
+
|
|
2418
|
+
@DO_INSTALL_LIBPNG_CONFIG_TRUE@install-exec-hook: install-libpng-config
|
|
2419
|
+
@DO_INSTALL_LIBPNG_CONFIG_TRUE@uninstall-hook: uninstall-libpng-config
|
|
2420
|
+
|
|
2421
|
+
# The following addition ensures that 'make all' always builds the test programs
|
|
2422
|
+
# too. It used to, but some change either in libpng or configure stopped this
|
|
2423
|
+
# working.
|
|
2424
|
+
all-am: $(check_PROGRAMS)
|
|
2425
|
+
|
|
2426
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
2427
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
2428
|
+
.NOEXPORT:
|