laag-libtiff 4.0.9.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.
- checksums.yaml +7 -0
- data/.gitignore +57 -0
- data/LICENSE.txt +21 -0
- data/README.org +34 -0
- data/ext/laag/libtiff/extconf.rb +13 -0
- data/laag-libtiff.gemspec +20 -0
- data/lib/laag/libtiff.rb +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/.appveyor.yml +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/.cvsignore +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/.travis.yml +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/CMakeLists.txt +764 -0
- data/vendor/gitlab.com/libtiff/libtiff/COMMITTERS +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/COPYRIGHT +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/ChangeLog +8073 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-RELEASE +119 -0
- data/vendor/gitlab.com/libtiff/libtiff/HOWTO-SECURITY-RELEASE +19 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.am +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.in +995 -0
- data/vendor/gitlab.com/libtiff/libtiff/Makefile.vc +58 -0
- data/vendor/gitlab.com/libtiff/libtiff/README +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/README.vms +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/RELEASE-DATE +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/SConstruct +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/TODO +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/VERSION +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/aclocal.m4 +1194 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/bmp2tiff.1.html +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/gif2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/ras2tiff.1.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/sgi2tiff.1.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/tiffsv.1.html +207 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/bmp2tiff.1 +85 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/gif2tiff.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/ras2tiff.1 +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/sgi2tiff.1 +93 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/man/tiffsv.1 +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/bmp2tiff.c +937 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/gif2tiff.c +591 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ras2tiff.c +338 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/rasterfile.h +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgi2tiff.c +337 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgisv.c +318 -0
- data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ycbcr.c +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/autogen.sh +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/.cvsignore +1 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/CMakeLists.txt +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.in +680 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/README +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/build/travis-ci +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/commit +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/compile +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.guess +1526 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/config.sub +1658 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/depcomp +791 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/install-sh +507 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/ltmain.sh +11156 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/missing +215 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/mkinstalldirs +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/config/test-driver +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure +23612 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.ac +1112 -0
- data/vendor/gitlab.com/libtiff/libtiff/configure.com +1357 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.am +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.in +679 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/README +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/CMakeLists.txt +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.am +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.in +652 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.vc +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/README +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/addtiffo.c +181 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_overview.c +916 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.h +103 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/.cvsignore +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/CMakeLists.txt +43 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.am +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/README +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-bi.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-grayscale.c +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-palette.c +284 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-rgb.c +201 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/CMakeLists.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.am +47 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.in +516 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/README +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/patchlevel.h +8 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtiff.c +1290 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtifficon.h +21 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/CMakeLists.txt +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.am +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.in +650 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/README +25 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/iptcutil.c +954 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.iptc +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/CMakeLists.txt +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.am +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.in +499 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/README +37 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/mfs_file.c +586 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/README +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.c +525 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.h +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirread.c +1131 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirwrite.c +971 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/README +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/ras2tif.c +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/tif2ras.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/CMakeLists.txt +28 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.am +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.in +500 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/README +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.cpp +238 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.h +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/CMakeLists.txt +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.am +33 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.in +503 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/README +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/listtif.c +39 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/maketif.c +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtif_dir.c +350 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffio.h +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffiop.h +72 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/CMakeLists.txt +30 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.am +32 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.in +502 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.w95 +134 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.Tiffile +31 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.tiff2dib +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Tiffile.cpp +449 -0
- data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/tiff2dib.c +379 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/.cvsignore +5 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/BigTIFFProposal.html +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/CMakeLists.txt +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.am +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.in +798 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/TIFFTechNote2.html +707 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/addingtags.html +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffdesign.html +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr.html +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/esri.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/leica.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/safe.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/weogeo.png +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/bugs.html +61 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/build.html +737 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/contrib.html +209 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/document.html +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images.html +41 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/CMakeLists.txt +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.am +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.in +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/back.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/bali.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cat.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cover.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/cramps.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/dave.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/info.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jello.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/jim.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/note.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/oxford.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/quad.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/ring.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/smallliz.jpg +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/strike.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/images/warning.gif +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/index.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/internals.html +572 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/intro.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/libtiff.html +747 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/.cvsignore +2 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/CMakeLists.txt +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/HtmlDoc.cmake +50 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.am +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.in +642 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFClose.3tiff.html +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFDataWidth.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFError.3tiff.html +106 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldDataType.3tiff.html +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldName.3tiff.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldPassCount.3tiff.html +98 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldReadCount.3tiff.html +101 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldTag.3tiff.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldWriteCount.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFlush.3tiff.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFGetField.3tiff.html +1969 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFOpen.3tiff.html +421 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFPrintDirectory.3tiff.html +225 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFRGBAImage.3tiff.html +319 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadDirectory.3tiff.html +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedStrip.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedTile.3tiff.html +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAImage.3tiff.html +301 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAStrip.3tiff.html +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBATile.3tiff.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawStrip.3tiff.html +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawTile.3tiff.html +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadScanline.3tiff.html +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadTile.3tiff.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetDirectory.3tiff.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetField.3tiff.html +1865 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWarning.3tiff.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteDirectory.3tiff.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedStrip.3tiff.html +153 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedTile.3tiff.html +147 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawStrip.3tiff.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawTile.3tiff.html +128 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteScanline.3tiff.html +206 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteTile.3tiff.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFbuffer.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcodec.3tiff.html +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcolor.3tiff.html +975 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFmemory.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFquery.3tiff.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFsize.3tiff.html +95 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFstrip.3tiff.html +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFswab.3tiff.html +110 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFtile.3tiff.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2ps.1.html +252 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2tiff.1.html +607 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/index.html +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/libtiff.3tiff.html +1150 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/pal2rgb.1.html +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/ppm2tiff.1.html +141 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/raw2tiff.1.html +510 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/rgb2ycbcr.1.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/thumbnail.1.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2bw.1.html +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2pdf.1.html +609 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2ps.1.html +639 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2rgba.1.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcmp.1.html +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcp.1.html +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcrop.1.html +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdither.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdump.1.html +145 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffgt.1.html +551 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffinfo.1.html +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffmedian.1.html +183 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffset.1.html +176 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffsplit.1.html +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/misc.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/support.html +655 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/tools.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta007.html +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta016.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta018.html +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta024.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta028.html +146 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta029.html +86 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta031.html +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta032.html +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta033.html +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta034.html +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta035.html +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta036.html +117 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.1.html +75 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.2.html +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.3.html +132 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.4.html +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.5.html +155 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.6-beta.html +185 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.7.html +259 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.0.html +434 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.1.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0.html +144 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0alpha.html +249 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta.html +162 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta2.html +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.1.html +233 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.2.html +222 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.3.html +230 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.4.html +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.0.html +199 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.1.html +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.2.html +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0.html +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0beta.html +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.1.html +115 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.2.html +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.3.html +160 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.4.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.5.html +270 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.0.html +269 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.1.html +113 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.2.html +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.3.html +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4.html +274 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4beta.html +291 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.5.html +148 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.6.html +139 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.7.html +411 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.8.html +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.9.html +373 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff-4.pc.in +11 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/.cvsignore +22 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/CMakeLists.txt +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.am +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.in +966 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.lcc +129 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.vc +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/SConstruct +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.def +168 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiffxx.map +4 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkg3states.c +454 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkspans.c +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/t4.h +292 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_aux.c +376 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_close.c +140 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_codec.c +165 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_color.c +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_compress.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h-vms +46 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.cmake.in +261 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.in +410 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.vc.h +137 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.wince.h +71 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.c +1767 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.h +309 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirinfo.c +1070 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirread.c +5803 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirwrite.c +3024 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dumpmode.c +143 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_error.c +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_extension.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.c +1648 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.h +540 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3sm.c +1260 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_flush.c +118 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_getimage.c +3048 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jbig.c +214 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg.c +2601 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg_12.c +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_luv.c +1765 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzma.c +495 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzw.c +1218 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_next.c +189 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_ojpeg.c +2563 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_open.c +725 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_packbits.c +311 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_pixarlog.c +1485 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.c +881 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.h +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_print.c +722 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_read.c +1572 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_stream.cxx +430 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_strip.c +389 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_swab.c +312 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_thunder.c +208 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_tile.c +322 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_unix.c +386 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_version.c +40 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_vms.c +611 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_warning.c +89 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_win32.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_wince.c +293 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_write.c +834 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_zip.c +476 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiff.h +681 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h-vms +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.cmake.in +130 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.in +127 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.vc.h +161 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.wince.h +121 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.h +560 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.hxx +49 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffiop.h +445 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h.in +9 -0
- data/vendor/gitlab.com/libtiff/libtiff/libtiff/uvcode.h +180 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/acinclude.m4 +851 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ice_find_athena.m4 +187 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/libtool.m4 +8388 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltoptions.m4 +437 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltsugar.m4 +124 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/ltversion.m4 +23 -0
- data/vendor/gitlab.com/libtiff/libtiff/m4/lt~obsolete.m4 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/.cvsignore +3 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/CMakeLists.txt +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.am +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.in +684 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFClose.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFDataWidth.3tiff +74 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFError.3tiff +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldDataType.3tiff +53 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldName.3tiff +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldPassCount.3tiff +73 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldReadCount.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldTag.3tiff +56 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldWriteCount.3tiff +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFlush.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFGetField.3tiff +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFOpen.3tiff +279 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFPrintDirectory.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFRGBAImage.3tiff +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadDirectory.3tiff +164 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedStrip.3tiff +78 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedTile.3tiff +76 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAImage.3tiff +218 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAStrip.3tiff +170 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBATile.3tiff +171 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawStrip.3tiff +64 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawTile.3tiff +65 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadScanline.3tiff +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetDirectory.3tiff +79 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetField.3tiff +217 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWarning.3tiff +70 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteDirectory.3tiff +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedStrip.3tiff +102 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedTile.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawStrip.3tiff +96 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawTile.3tiff +84 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteScanline.3tiff +154 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteTile.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFbuffer.3tiff +77 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcodec.3tiff +82 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcolor.3tiff +268 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFmemory.3tiff +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFquery.3tiff +142 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFsize.3tiff +59 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFstrip.3tiff +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFswab.3tiff +80 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/TIFFtile.3tiff +131 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2ps.1 +159 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/fax2tiff.1 +286 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/libtiff.3tiff +545 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/pal2rgb.1 +111 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/ppm2tiff.1 +105 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/raw2tiff.1 +196 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/rgb2ycbcr.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/thumbnail.1 +90 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2bw.1 +94 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2pdf.1 +254 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2ps.1 +294 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiff2rgba.1 +97 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcmp.1 +87 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcp.1 +317 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffcrop.1 +571 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdither.1 +135 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffdump.1 +81 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffgt.1 +245 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffinfo.1 +88 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffmedian.1 +112 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffset.1 +99 -0
- data/vendor/gitlab.com/libtiff/libtiff/man/tiffsplit.1 +69 -0
- data/vendor/gitlab.com/libtiff/libtiff/nmake.opt +229 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/.cvsignore +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/CMakeLists.txt +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.am +35 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.in +656 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.vc +44 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/dummy.c +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/getopt.c +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/lfind.c +62 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/libport.h +60 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/snprintf.c +38 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strcasecmp.c +51 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoul.c +109 -0
- data/vendor/gitlab.com/libtiff/libtiff/port/strtoull.c +116 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/.cvsignore +12 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/CMakeLists.txt +382 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.am +334 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.in +1987 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffSplitTest.cmake +34 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTest.cmake +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/TiffTestCommon.cmake +108 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ascii_tag.c +177 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/check_tag.c +91 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/common.sh +122 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/custom_dir.c +247 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/README.txt +29 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/logluv-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.pgm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-2c-8b-alpha.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.pbm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-1b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-4b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-lzw-compat.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-tile.jpg.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-16b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.ppm +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.tiff +0 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/long_tag.c +156 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pbm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pgm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_ppm.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/raw_decode.c +304 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/rewrite_tag.c +344 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/short_tag.c +205 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip.c +290 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/strip_rw.c +157 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.c +829 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.h +63 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-quad-lzw-compat.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2pdf.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-EPS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS1.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS2.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d-fill.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g4.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-logluv.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-lzw-compat.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split-join.sh +16 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split.sh +13 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-thumbnail.sh +10 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-logluv-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-2c-8b-alpha.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-miniswhite-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-1b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-4b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-quad-tile.jpg.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-16b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-8b.sh +7 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffdump.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tiffinfo.sh +6 -0
- data/vendor/gitlab.com/libtiff/libtiff/test/tifftest.h +42 -0
- data/vendor/gitlab.com/libtiff/libtiff/tiff.spec +68 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/.cvsignore +27 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/CMakeLists.txt +125 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.am +138 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.in +955 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.lcc +133 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.vc +52 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2ps.c +463 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/fax2tiff.c +491 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/pal2rgb.c +438 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/ppm2tiff.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/raw2tiff.c +690 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/rgb2ycbcr.c +397 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/thumbnail.c +691 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2bw.c +501 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2pdf.c +5594 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2ps.c +3106 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2rgba.c +569 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcmp.c +659 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcp.c +1913 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcrop.c +9231 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdither.c +347 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdump.c +889 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffgt.c +486 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfo.c +488 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfoce.c +472 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffmedian.c +918 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffset.c +356 -0
- data/vendor/gitlab.com/libtiff/libtiff/tools/tiffsplit.c +305 -0
- metadata +692 -0
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
# CMake build for libtiff
|
|
2
|
+
#
|
|
3
|
+
# Copyright © 2015 Open Microscopy Environment / University of Dundee
|
|
4
|
+
# Written by Roger Leigh <rleigh@codelibre.net>
|
|
5
|
+
#
|
|
6
|
+
# Permission to use, copy, modify, distribute, and sell this software and
|
|
7
|
+
# its documentation for any purpose is hereby granted without fee, provided
|
|
8
|
+
# that (i) the above copyright notices and this permission notice appear in
|
|
9
|
+
# all copies of the software and related documentation, and (ii) the names of
|
|
10
|
+
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
11
|
+
# publicity relating to the software without the specific, prior written
|
|
12
|
+
# permission of Sam Leffler and Silicon Graphics.
|
|
13
|
+
#
|
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
16
|
+
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
17
|
+
#
|
|
18
|
+
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
19
|
+
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
20
|
+
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
21
|
+
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
22
|
+
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
23
|
+
# OF THIS SOFTWARE.
|
|
24
|
+
|
|
25
|
+
extra_dist(Makefile.vc)
|
|
26
|
+
|
|
27
|
+
include_directories(${PROJECT_SOURCE_DIR}/libtiff
|
|
28
|
+
${PROJECT_BINARY_DIR}/libtiff
|
|
29
|
+
${PROJECT_SOURCE_DIR}/port
|
|
30
|
+
${CMAKE_CURRENT_BINARY_DIR})
|
|
31
|
+
|
|
32
|
+
add_executable(fax2ps fax2ps.c)
|
|
33
|
+
target_link_libraries(fax2ps tiff port)
|
|
34
|
+
|
|
35
|
+
add_executable(fax2tiff fax2tiff.c)
|
|
36
|
+
target_link_libraries(fax2tiff tiff port)
|
|
37
|
+
|
|
38
|
+
add_executable(pal2rgb pal2rgb.c)
|
|
39
|
+
target_link_libraries(pal2rgb tiff port)
|
|
40
|
+
|
|
41
|
+
add_executable(ppm2tiff ppm2tiff.c)
|
|
42
|
+
target_link_libraries(ppm2tiff tiff port)
|
|
43
|
+
|
|
44
|
+
add_executable(raw2tiff raw2tiff.c)
|
|
45
|
+
target_link_libraries(raw2tiff tiff port)
|
|
46
|
+
|
|
47
|
+
add_executable(rgb2ycbcr rgb2ycbcr.c)
|
|
48
|
+
target_link_libraries(rgb2ycbcr tiff port)
|
|
49
|
+
|
|
50
|
+
add_executable(thumbnail thumbnail.c)
|
|
51
|
+
target_link_libraries(thumbnail tiff port)
|
|
52
|
+
|
|
53
|
+
add_executable(tiff2bw tiff2bw.c)
|
|
54
|
+
target_link_libraries(tiff2bw tiff port)
|
|
55
|
+
|
|
56
|
+
add_executable(tiff2pdf tiff2pdf.c)
|
|
57
|
+
target_link_libraries(tiff2pdf tiff port)
|
|
58
|
+
|
|
59
|
+
add_executable(tiff2ps tiff2ps.c)
|
|
60
|
+
target_link_libraries(tiff2ps tiff port)
|
|
61
|
+
|
|
62
|
+
add_executable(tiff2rgba tiff2rgba.c)
|
|
63
|
+
target_link_libraries(tiff2rgba tiff port)
|
|
64
|
+
|
|
65
|
+
add_executable(tiffcmp tiffcmp.c)
|
|
66
|
+
target_link_libraries(tiffcmp tiff port)
|
|
67
|
+
|
|
68
|
+
add_executable(tiffcp tiffcp.c)
|
|
69
|
+
target_link_libraries(tiffcp tiff port)
|
|
70
|
+
|
|
71
|
+
add_executable(tiffcrop tiffcrop.c)
|
|
72
|
+
target_link_libraries(tiffcrop tiff port)
|
|
73
|
+
|
|
74
|
+
add_executable(tiffdither tiffdither.c)
|
|
75
|
+
target_link_libraries(tiffdither tiff port)
|
|
76
|
+
|
|
77
|
+
add_executable(tiffdump tiffdump.c)
|
|
78
|
+
target_link_libraries(tiffdump tiff port)
|
|
79
|
+
|
|
80
|
+
add_executable(tiffinfo tiffinfo.c)
|
|
81
|
+
target_link_libraries(tiffinfo tiff port)
|
|
82
|
+
|
|
83
|
+
add_executable(tiffmedian tiffmedian.c)
|
|
84
|
+
target_link_libraries(tiffmedian tiff port)
|
|
85
|
+
|
|
86
|
+
add_executable(tiffset tiffset.c)
|
|
87
|
+
target_link_libraries(tiffset tiff port)
|
|
88
|
+
|
|
89
|
+
add_executable(tiffsplit tiffsplit.c)
|
|
90
|
+
target_link_libraries(tiffsplit tiff port)
|
|
91
|
+
|
|
92
|
+
install(TARGETS fax2ps
|
|
93
|
+
fax2tiff
|
|
94
|
+
pal2rgb
|
|
95
|
+
ppm2tiff
|
|
96
|
+
raw2tiff
|
|
97
|
+
tiff2bw
|
|
98
|
+
tiff2pdf
|
|
99
|
+
tiff2ps
|
|
100
|
+
tiff2rgba
|
|
101
|
+
tiffcmp
|
|
102
|
+
tiffcp
|
|
103
|
+
tiffcrop
|
|
104
|
+
tiffdither
|
|
105
|
+
tiffdump
|
|
106
|
+
tiffinfo
|
|
107
|
+
tiffmedian
|
|
108
|
+
tiffset
|
|
109
|
+
tiffsplit
|
|
110
|
+
RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
|
|
111
|
+
|
|
112
|
+
if(HAVE_OPENGL)
|
|
113
|
+
if(OPENGL_INCLUDE_DIR)
|
|
114
|
+
include_directories(${OPENGL_INCLUDE_DIR})
|
|
115
|
+
endif()
|
|
116
|
+
if(GLUT_INCLUDE_DIR)
|
|
117
|
+
include_directories(${GLUT_INCLUDE_DIR})
|
|
118
|
+
endif()
|
|
119
|
+
|
|
120
|
+
add_executable(tiffgt tiffgt.c)
|
|
121
|
+
target_link_libraries(tiffgt tiff ${GLUT_LIBRARIES} ${OPENGL_LIBRARIES})
|
|
122
|
+
|
|
123
|
+
install(TARGETS tiffgt
|
|
124
|
+
RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
|
|
125
|
+
endif()
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
# Tag Image File Format (TIFF) Software
|
|
2
|
+
#
|
|
3
|
+
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
|
4
|
+
#
|
|
5
|
+
# Permission to use, copy, modify, distribute, and sell this software and
|
|
6
|
+
# its documentation for any purpose is hereby granted without fee, provided
|
|
7
|
+
# that (i) the above copyright notices and this permission notice appear in
|
|
8
|
+
# all copies of the software and related documentation, and (ii) the names of
|
|
9
|
+
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
10
|
+
# publicity relating to the software without the specific, prior written
|
|
11
|
+
# permission of Sam Leffler and Silicon Graphics.
|
|
12
|
+
#
|
|
13
|
+
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
14
|
+
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
15
|
+
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
16
|
+
#
|
|
17
|
+
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
18
|
+
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
19
|
+
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
20
|
+
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
21
|
+
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
22
|
+
# OF THIS SOFTWARE.
|
|
23
|
+
|
|
24
|
+
# Process this file with automake to produce Makefile.in.
|
|
25
|
+
|
|
26
|
+
LIBPORT = $(top_builddir)/port/libport.la
|
|
27
|
+
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
|
28
|
+
|
|
29
|
+
EXTRA_DIST = \
|
|
30
|
+
CMakeLists.txt \
|
|
31
|
+
Makefile.vc
|
|
32
|
+
|
|
33
|
+
bin_PROGRAMS = \
|
|
34
|
+
fax2ps \
|
|
35
|
+
fax2tiff \
|
|
36
|
+
pal2rgb \
|
|
37
|
+
ppm2tiff \
|
|
38
|
+
raw2tiff \
|
|
39
|
+
tiff2bw \
|
|
40
|
+
tiff2pdf \
|
|
41
|
+
tiff2ps \
|
|
42
|
+
tiff2rgba \
|
|
43
|
+
tiffcmp \
|
|
44
|
+
tiffcp \
|
|
45
|
+
tiffcrop \
|
|
46
|
+
tiffdither \
|
|
47
|
+
tiffdump \
|
|
48
|
+
tiffinfo \
|
|
49
|
+
tiffmedian \
|
|
50
|
+
tiffset \
|
|
51
|
+
tiffsplit
|
|
52
|
+
if HAVE_OPENGL
|
|
53
|
+
bin_PROGRAMS += tiffgt
|
|
54
|
+
endif
|
|
55
|
+
|
|
56
|
+
EXTRA_PROGRAMS = rgb2ycbcr thumbnail
|
|
57
|
+
|
|
58
|
+
# Executable programs which need to be built in order to support tests
|
|
59
|
+
check_PROGRAMS = \
|
|
60
|
+
rgb2ycbcr \
|
|
61
|
+
thumbnail
|
|
62
|
+
|
|
63
|
+
if HAVE_RPATH
|
|
64
|
+
AM_LDFLAGS = $(LIBDIR)
|
|
65
|
+
endif
|
|
66
|
+
|
|
67
|
+
fax2ps_SOURCES = fax2ps.c
|
|
68
|
+
fax2ps_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
69
|
+
|
|
70
|
+
fax2tiff_SOURCES = fax2tiff.c
|
|
71
|
+
fax2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
72
|
+
|
|
73
|
+
pal2rgb_SOURCES = pal2rgb.c
|
|
74
|
+
pal2rgb_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
75
|
+
|
|
76
|
+
ppm2tiff_SOURCES = ppm2tiff.c
|
|
77
|
+
ppm2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
78
|
+
|
|
79
|
+
raw2tiff_SOURCES = raw2tiff.c
|
|
80
|
+
raw2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
81
|
+
|
|
82
|
+
rgb2ycbcr_SOURCES = rgb2ycbcr.c
|
|
83
|
+
rgb2ycbcr_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
84
|
+
|
|
85
|
+
thumbnail_SOURCES = thumbnail.c
|
|
86
|
+
thumbnail_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
87
|
+
|
|
88
|
+
tiff2bw_SOURCES = tiff2bw.c
|
|
89
|
+
tiff2bw_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
90
|
+
|
|
91
|
+
tiff2pdf_SOURCES = tiff2pdf.c
|
|
92
|
+
tiff2pdf_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
93
|
+
|
|
94
|
+
tiff2ps_SOURCES = tiff2ps.c
|
|
95
|
+
tiff2ps_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
96
|
+
|
|
97
|
+
tiff2rgba_SOURCES = tiff2rgba.c
|
|
98
|
+
tiff2rgba_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
99
|
+
|
|
100
|
+
tiffcmp_SOURCES = tiffcmp.c
|
|
101
|
+
tiffcmp_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
102
|
+
|
|
103
|
+
tiffcp_SOURCES = tiffcp.c
|
|
104
|
+
tiffcp_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
105
|
+
|
|
106
|
+
tiffcrop_SOURCES = tiffcrop.c
|
|
107
|
+
tiffcrop_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
108
|
+
|
|
109
|
+
tiffdither_SOURCES = tiffdither.c
|
|
110
|
+
tiffdither_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
111
|
+
|
|
112
|
+
tiffdump_SOURCES = tiffdump.c
|
|
113
|
+
tiffdump_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
114
|
+
|
|
115
|
+
tiffinfo_SOURCES = tiffinfo.c
|
|
116
|
+
tiffinfo_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
117
|
+
|
|
118
|
+
tiffmedian_SOURCES = tiffmedian.c
|
|
119
|
+
tiffmedian_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
120
|
+
|
|
121
|
+
tiffset_SOURCES = tiffset.c
|
|
122
|
+
tiffset_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
123
|
+
|
|
124
|
+
tiffsplit_SOURCES = tiffsplit.c
|
|
125
|
+
tiffsplit_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
126
|
+
|
|
127
|
+
tiffgt_SOURCES = tiffgt.c
|
|
128
|
+
tiffgt_CFLAGS = $(CFLAGS) $(GLUT_CFLAGS) $(AM_CFLAGS)
|
|
129
|
+
tiffgt_LDADD = $(LIBTIFF) $(LIBPORT) $(X_LIBS) $(GLUT_LIBS)
|
|
130
|
+
|
|
131
|
+
AM_CPPFLAGS = -I$(top_srcdir)/libtiff
|
|
132
|
+
|
|
133
|
+
echo:
|
|
134
|
+
(echo $(CFLAGS))
|
|
135
|
+
(echo $(tiffgt_CFLAGS))
|
|
136
|
+
(echo $(GL_CFLAGS))
|
|
137
|
+
(echo $(GLU_CFLAGS))
|
|
138
|
+
(echo $(GLUT_CFLAGS))
|
|
@@ -0,0 +1,955 @@
|
|
|
1
|
+
# Makefile.in generated by automake 1.15 from Makefile.am.
|
|
2
|
+
# @configure_input@
|
|
3
|
+
|
|
4
|
+
# Copyright (C) 1994-2014 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
|
+
# Tag Image File Format (TIFF) Software
|
|
18
|
+
#
|
|
19
|
+
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
|
20
|
+
#
|
|
21
|
+
# Permission to use, copy, modify, distribute, and sell this software and
|
|
22
|
+
# its documentation for any purpose is hereby granted without fee, provided
|
|
23
|
+
# that (i) the above copyright notices and this permission notice appear in
|
|
24
|
+
# all copies of the software and related documentation, and (ii) the names of
|
|
25
|
+
# Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
26
|
+
# publicity relating to the software without the specific, prior written
|
|
27
|
+
# permission of Sam Leffler and Silicon Graphics.
|
|
28
|
+
#
|
|
29
|
+
# THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
|
|
30
|
+
# EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
31
|
+
# WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
32
|
+
#
|
|
33
|
+
# IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
|
|
34
|
+
# ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
|
|
35
|
+
# OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
36
|
+
# WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
37
|
+
# LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
38
|
+
# OF THIS SOFTWARE.
|
|
39
|
+
|
|
40
|
+
# Process this file with automake to produce Makefile.in.
|
|
41
|
+
|
|
42
|
+
VPATH = @srcdir@
|
|
43
|
+
am__is_gnu_make = { \
|
|
44
|
+
if test -z '$(MAKELEVEL)'; then \
|
|
45
|
+
false; \
|
|
46
|
+
elif test -n '$(MAKE_HOST)'; then \
|
|
47
|
+
true; \
|
|
48
|
+
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
|
|
49
|
+
true; \
|
|
50
|
+
else \
|
|
51
|
+
false; \
|
|
52
|
+
fi; \
|
|
53
|
+
}
|
|
54
|
+
am__make_running_with_option = \
|
|
55
|
+
case $${target_option-} in \
|
|
56
|
+
?) ;; \
|
|
57
|
+
*) echo "am__make_running_with_option: internal error: invalid" \
|
|
58
|
+
"target option '$${target_option-}' specified" >&2; \
|
|
59
|
+
exit 1;; \
|
|
60
|
+
esac; \
|
|
61
|
+
has_opt=no; \
|
|
62
|
+
sane_makeflags=$$MAKEFLAGS; \
|
|
63
|
+
if $(am__is_gnu_make); then \
|
|
64
|
+
sane_makeflags=$$MFLAGS; \
|
|
65
|
+
else \
|
|
66
|
+
case $$MAKEFLAGS in \
|
|
67
|
+
*\\[\ \ ]*) \
|
|
68
|
+
bs=\\; \
|
|
69
|
+
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
|
|
70
|
+
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
|
|
71
|
+
esac; \
|
|
72
|
+
fi; \
|
|
73
|
+
skip_next=no; \
|
|
74
|
+
strip_trailopt () \
|
|
75
|
+
{ \
|
|
76
|
+
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
|
|
77
|
+
}; \
|
|
78
|
+
for flg in $$sane_makeflags; do \
|
|
79
|
+
test $$skip_next = yes && { skip_next=no; continue; }; \
|
|
80
|
+
case $$flg in \
|
|
81
|
+
*=*|--*) continue;; \
|
|
82
|
+
-*I) strip_trailopt 'I'; skip_next=yes;; \
|
|
83
|
+
-*I?*) strip_trailopt 'I';; \
|
|
84
|
+
-*O) strip_trailopt 'O'; skip_next=yes;; \
|
|
85
|
+
-*O?*) strip_trailopt 'O';; \
|
|
86
|
+
-*l) strip_trailopt 'l'; skip_next=yes;; \
|
|
87
|
+
-*l?*) strip_trailopt 'l';; \
|
|
88
|
+
-[dEDm]) skip_next=yes;; \
|
|
89
|
+
-[JT]) skip_next=yes;; \
|
|
90
|
+
esac; \
|
|
91
|
+
case $$flg in \
|
|
92
|
+
*$$target_option*) has_opt=yes; break;; \
|
|
93
|
+
esac; \
|
|
94
|
+
done; \
|
|
95
|
+
test $$has_opt = yes
|
|
96
|
+
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
|
97
|
+
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
|
98
|
+
pkgdatadir = $(datadir)/@PACKAGE@
|
|
99
|
+
pkgincludedir = $(includedir)/@PACKAGE@
|
|
100
|
+
pkglibdir = $(libdir)/@PACKAGE@
|
|
101
|
+
pkglibexecdir = $(libexecdir)/@PACKAGE@
|
|
102
|
+
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
|
103
|
+
install_sh_DATA = $(install_sh) -c -m 644
|
|
104
|
+
install_sh_PROGRAM = $(install_sh) -c
|
|
105
|
+
install_sh_SCRIPT = $(install_sh) -c
|
|
106
|
+
INSTALL_HEADER = $(INSTALL_DATA)
|
|
107
|
+
transform = $(program_transform_name)
|
|
108
|
+
NORMAL_INSTALL = :
|
|
109
|
+
PRE_INSTALL = :
|
|
110
|
+
POST_INSTALL = :
|
|
111
|
+
NORMAL_UNINSTALL = :
|
|
112
|
+
PRE_UNINSTALL = :
|
|
113
|
+
POST_UNINSTALL = :
|
|
114
|
+
build_triplet = @build@
|
|
115
|
+
host_triplet = @host@
|
|
116
|
+
bin_PROGRAMS = fax2ps$(EXEEXT) fax2tiff$(EXEEXT) pal2rgb$(EXEEXT) \
|
|
117
|
+
ppm2tiff$(EXEEXT) raw2tiff$(EXEEXT) tiff2bw$(EXEEXT) \
|
|
118
|
+
tiff2pdf$(EXEEXT) tiff2ps$(EXEEXT) tiff2rgba$(EXEEXT) \
|
|
119
|
+
tiffcmp$(EXEEXT) tiffcp$(EXEEXT) tiffcrop$(EXEEXT) \
|
|
120
|
+
tiffdither$(EXEEXT) tiffdump$(EXEEXT) tiffinfo$(EXEEXT) \
|
|
121
|
+
tiffmedian$(EXEEXT) tiffset$(EXEEXT) tiffsplit$(EXEEXT) \
|
|
122
|
+
$(am__EXEEXT_1)
|
|
123
|
+
@HAVE_OPENGL_TRUE@am__append_1 = tiffgt
|
|
124
|
+
EXTRA_PROGRAMS = rgb2ycbcr$(EXEEXT) thumbnail$(EXEEXT)
|
|
125
|
+
check_PROGRAMS = rgb2ycbcr$(EXEEXT) thumbnail$(EXEEXT)
|
|
126
|
+
subdir = tools
|
|
127
|
+
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
128
|
+
am__aclocal_m4_deps = $(top_srcdir)/m4/acinclude.m4 \
|
|
129
|
+
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
|
|
130
|
+
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
|
|
131
|
+
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
|
|
132
|
+
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
|
133
|
+
$(ACLOCAL_M4)
|
|
134
|
+
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
|
|
135
|
+
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
|
|
136
|
+
CONFIG_HEADER = $(top_builddir)/libtiff/tif_config.h \
|
|
137
|
+
$(top_builddir)/libtiff/tiffconf.h
|
|
138
|
+
CONFIG_CLEAN_FILES =
|
|
139
|
+
CONFIG_CLEAN_VPATH_FILES =
|
|
140
|
+
@HAVE_OPENGL_TRUE@am__EXEEXT_1 = tiffgt$(EXEEXT)
|
|
141
|
+
am__installdirs = "$(DESTDIR)$(bindir)"
|
|
142
|
+
PROGRAMS = $(bin_PROGRAMS)
|
|
143
|
+
am_fax2ps_OBJECTS = fax2ps.$(OBJEXT)
|
|
144
|
+
fax2ps_OBJECTS = $(am_fax2ps_OBJECTS)
|
|
145
|
+
fax2ps_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
146
|
+
AM_V_lt = $(am__v_lt_@AM_V@)
|
|
147
|
+
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
|
|
148
|
+
am__v_lt_0 = --silent
|
|
149
|
+
am__v_lt_1 =
|
|
150
|
+
am_fax2tiff_OBJECTS = fax2tiff.$(OBJEXT)
|
|
151
|
+
fax2tiff_OBJECTS = $(am_fax2tiff_OBJECTS)
|
|
152
|
+
fax2tiff_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
153
|
+
am_pal2rgb_OBJECTS = pal2rgb.$(OBJEXT)
|
|
154
|
+
pal2rgb_OBJECTS = $(am_pal2rgb_OBJECTS)
|
|
155
|
+
pal2rgb_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
156
|
+
am_ppm2tiff_OBJECTS = ppm2tiff.$(OBJEXT)
|
|
157
|
+
ppm2tiff_OBJECTS = $(am_ppm2tiff_OBJECTS)
|
|
158
|
+
ppm2tiff_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
159
|
+
am_raw2tiff_OBJECTS = raw2tiff.$(OBJEXT)
|
|
160
|
+
raw2tiff_OBJECTS = $(am_raw2tiff_OBJECTS)
|
|
161
|
+
raw2tiff_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
162
|
+
am_rgb2ycbcr_OBJECTS = rgb2ycbcr.$(OBJEXT)
|
|
163
|
+
rgb2ycbcr_OBJECTS = $(am_rgb2ycbcr_OBJECTS)
|
|
164
|
+
rgb2ycbcr_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
165
|
+
am_thumbnail_OBJECTS = thumbnail.$(OBJEXT)
|
|
166
|
+
thumbnail_OBJECTS = $(am_thumbnail_OBJECTS)
|
|
167
|
+
thumbnail_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
168
|
+
am_tiff2bw_OBJECTS = tiff2bw.$(OBJEXT)
|
|
169
|
+
tiff2bw_OBJECTS = $(am_tiff2bw_OBJECTS)
|
|
170
|
+
tiff2bw_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
171
|
+
am_tiff2pdf_OBJECTS = tiff2pdf.$(OBJEXT)
|
|
172
|
+
tiff2pdf_OBJECTS = $(am_tiff2pdf_OBJECTS)
|
|
173
|
+
tiff2pdf_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
174
|
+
am_tiff2ps_OBJECTS = tiff2ps.$(OBJEXT)
|
|
175
|
+
tiff2ps_OBJECTS = $(am_tiff2ps_OBJECTS)
|
|
176
|
+
tiff2ps_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
177
|
+
am_tiff2rgba_OBJECTS = tiff2rgba.$(OBJEXT)
|
|
178
|
+
tiff2rgba_OBJECTS = $(am_tiff2rgba_OBJECTS)
|
|
179
|
+
tiff2rgba_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
180
|
+
am_tiffcmp_OBJECTS = tiffcmp.$(OBJEXT)
|
|
181
|
+
tiffcmp_OBJECTS = $(am_tiffcmp_OBJECTS)
|
|
182
|
+
tiffcmp_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
183
|
+
am_tiffcp_OBJECTS = tiffcp.$(OBJEXT)
|
|
184
|
+
tiffcp_OBJECTS = $(am_tiffcp_OBJECTS)
|
|
185
|
+
tiffcp_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
186
|
+
am_tiffcrop_OBJECTS = tiffcrop.$(OBJEXT)
|
|
187
|
+
tiffcrop_OBJECTS = $(am_tiffcrop_OBJECTS)
|
|
188
|
+
tiffcrop_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
189
|
+
am_tiffdither_OBJECTS = tiffdither.$(OBJEXT)
|
|
190
|
+
tiffdither_OBJECTS = $(am_tiffdither_OBJECTS)
|
|
191
|
+
tiffdither_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
192
|
+
am_tiffdump_OBJECTS = tiffdump.$(OBJEXT)
|
|
193
|
+
tiffdump_OBJECTS = $(am_tiffdump_OBJECTS)
|
|
194
|
+
tiffdump_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
195
|
+
am_tiffgt_OBJECTS = tiffgt-tiffgt.$(OBJEXT)
|
|
196
|
+
tiffgt_OBJECTS = $(am_tiffgt_OBJECTS)
|
|
197
|
+
am__DEPENDENCIES_1 =
|
|
198
|
+
tiffgt_DEPENDENCIES = $(LIBTIFF) $(LIBPORT) $(am__DEPENDENCIES_1) \
|
|
199
|
+
$(am__DEPENDENCIES_1)
|
|
200
|
+
tiffgt_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
201
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tiffgt_CFLAGS) $(CFLAGS) \
|
|
202
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
203
|
+
am_tiffinfo_OBJECTS = tiffinfo.$(OBJEXT)
|
|
204
|
+
tiffinfo_OBJECTS = $(am_tiffinfo_OBJECTS)
|
|
205
|
+
tiffinfo_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
206
|
+
am_tiffmedian_OBJECTS = tiffmedian.$(OBJEXT)
|
|
207
|
+
tiffmedian_OBJECTS = $(am_tiffmedian_OBJECTS)
|
|
208
|
+
tiffmedian_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
209
|
+
am_tiffset_OBJECTS = tiffset.$(OBJEXT)
|
|
210
|
+
tiffset_OBJECTS = $(am_tiffset_OBJECTS)
|
|
211
|
+
tiffset_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
212
|
+
am_tiffsplit_OBJECTS = tiffsplit.$(OBJEXT)
|
|
213
|
+
tiffsplit_OBJECTS = $(am_tiffsplit_OBJECTS)
|
|
214
|
+
tiffsplit_DEPENDENCIES = $(LIBTIFF) $(LIBPORT)
|
|
215
|
+
AM_V_P = $(am__v_P_@AM_V@)
|
|
216
|
+
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
217
|
+
am__v_P_0 = false
|
|
218
|
+
am__v_P_1 = :
|
|
219
|
+
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
|
220
|
+
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
|
221
|
+
am__v_GEN_0 = @echo " GEN " $@;
|
|
222
|
+
am__v_GEN_1 =
|
|
223
|
+
AM_V_at = $(am__v_at_@AM_V@)
|
|
224
|
+
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|
225
|
+
am__v_at_0 = @
|
|
226
|
+
am__v_at_1 =
|
|
227
|
+
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/libtiff
|
|
228
|
+
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
|
|
229
|
+
am__depfiles_maybe = depfiles
|
|
230
|
+
am__mv = mv -f
|
|
231
|
+
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
|
|
232
|
+
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
|
233
|
+
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
234
|
+
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
|
|
235
|
+
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
|
|
236
|
+
$(AM_CFLAGS) $(CFLAGS)
|
|
237
|
+
AM_V_CC = $(am__v_CC_@AM_V@)
|
|
238
|
+
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
|
|
239
|
+
am__v_CC_0 = @echo " CC " $@;
|
|
240
|
+
am__v_CC_1 =
|
|
241
|
+
CCLD = $(CC)
|
|
242
|
+
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
243
|
+
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
|
|
244
|
+
$(AM_LDFLAGS) $(LDFLAGS) -o $@
|
|
245
|
+
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
|
246
|
+
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
|
247
|
+
am__v_CCLD_0 = @echo " CCLD " $@;
|
|
248
|
+
am__v_CCLD_1 =
|
|
249
|
+
SOURCES = $(fax2ps_SOURCES) $(fax2tiff_SOURCES) $(pal2rgb_SOURCES) \
|
|
250
|
+
$(ppm2tiff_SOURCES) $(raw2tiff_SOURCES) $(rgb2ycbcr_SOURCES) \
|
|
251
|
+
$(thumbnail_SOURCES) $(tiff2bw_SOURCES) $(tiff2pdf_SOURCES) \
|
|
252
|
+
$(tiff2ps_SOURCES) $(tiff2rgba_SOURCES) $(tiffcmp_SOURCES) \
|
|
253
|
+
$(tiffcp_SOURCES) $(tiffcrop_SOURCES) $(tiffdither_SOURCES) \
|
|
254
|
+
$(tiffdump_SOURCES) $(tiffgt_SOURCES) $(tiffinfo_SOURCES) \
|
|
255
|
+
$(tiffmedian_SOURCES) $(tiffset_SOURCES) $(tiffsplit_SOURCES)
|
|
256
|
+
DIST_SOURCES = $(fax2ps_SOURCES) $(fax2tiff_SOURCES) \
|
|
257
|
+
$(pal2rgb_SOURCES) $(ppm2tiff_SOURCES) $(raw2tiff_SOURCES) \
|
|
258
|
+
$(rgb2ycbcr_SOURCES) $(thumbnail_SOURCES) $(tiff2bw_SOURCES) \
|
|
259
|
+
$(tiff2pdf_SOURCES) $(tiff2ps_SOURCES) $(tiff2rgba_SOURCES) \
|
|
260
|
+
$(tiffcmp_SOURCES) $(tiffcp_SOURCES) $(tiffcrop_SOURCES) \
|
|
261
|
+
$(tiffdither_SOURCES) $(tiffdump_SOURCES) $(tiffgt_SOURCES) \
|
|
262
|
+
$(tiffinfo_SOURCES) $(tiffmedian_SOURCES) $(tiffset_SOURCES) \
|
|
263
|
+
$(tiffsplit_SOURCES)
|
|
264
|
+
am__can_run_installinfo = \
|
|
265
|
+
case $$AM_UPDATE_INFO_DIR in \
|
|
266
|
+
n|no|NO) false;; \
|
|
267
|
+
*) (install-info --version) >/dev/null 2>&1;; \
|
|
268
|
+
esac
|
|
269
|
+
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
|
|
270
|
+
# Read a list of newline-separated strings from the standard input,
|
|
271
|
+
# and print each of them once, without duplicates. Input order is
|
|
272
|
+
# *not* preserved.
|
|
273
|
+
am__uniquify_input = $(AWK) '\
|
|
274
|
+
BEGIN { nonempty = 0; } \
|
|
275
|
+
{ items[$$0] = 1; nonempty = 1; } \
|
|
276
|
+
END { if (nonempty) { for (i in items) print i; }; } \
|
|
277
|
+
'
|
|
278
|
+
# Make sure the list of sources is unique. This is necessary because,
|
|
279
|
+
# e.g., the same source file might be shared among _SOURCES variables
|
|
280
|
+
# for different programs/libraries.
|
|
281
|
+
am__define_uniq_tagged_files = \
|
|
282
|
+
list='$(am__tagged_files)'; \
|
|
283
|
+
unique=`for i in $$list; do \
|
|
284
|
+
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
|
|
285
|
+
done | $(am__uniquify_input)`
|
|
286
|
+
ETAGS = etags
|
|
287
|
+
CTAGS = ctags
|
|
288
|
+
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \
|
|
289
|
+
$(top_srcdir)/config/mkinstalldirs
|
|
290
|
+
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
|
291
|
+
ACLOCAL = @ACLOCAL@
|
|
292
|
+
AMTAR = @AMTAR@
|
|
293
|
+
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
294
|
+
AR = @AR@
|
|
295
|
+
AS = @AS@
|
|
296
|
+
AUTOCONF = @AUTOCONF@
|
|
297
|
+
AUTOHEADER = @AUTOHEADER@
|
|
298
|
+
AUTOMAKE = @AUTOMAKE@
|
|
299
|
+
AWK = @AWK@
|
|
300
|
+
CC = @CC@
|
|
301
|
+
CCDEPMODE = @CCDEPMODE@
|
|
302
|
+
CFLAGS = @CFLAGS@
|
|
303
|
+
CMAKE = @CMAKE@
|
|
304
|
+
CPP = @CPP@
|
|
305
|
+
CPPFLAGS = @CPPFLAGS@
|
|
306
|
+
CXX = @CXX@
|
|
307
|
+
CXXCPP = @CXXCPP@
|
|
308
|
+
CXXDEPMODE = @CXXDEPMODE@
|
|
309
|
+
CXXFLAGS = @CXXFLAGS@
|
|
310
|
+
CYGPATH_W = @CYGPATH_W@
|
|
311
|
+
DEFS = @DEFS@
|
|
312
|
+
DEPDIR = @DEPDIR@
|
|
313
|
+
DLLTOOL = @DLLTOOL@
|
|
314
|
+
DSYMUTIL = @DSYMUTIL@
|
|
315
|
+
DUMPBIN = @DUMPBIN@
|
|
316
|
+
ECHO_C = @ECHO_C@
|
|
317
|
+
ECHO_N = @ECHO_N@
|
|
318
|
+
ECHO_T = @ECHO_T@
|
|
319
|
+
EGREP = @EGREP@
|
|
320
|
+
EXEEXT = @EXEEXT@
|
|
321
|
+
FGREP = @FGREP@
|
|
322
|
+
GLUT_CFLAGS = @GLUT_CFLAGS@
|
|
323
|
+
GLUT_LIBS = @GLUT_LIBS@
|
|
324
|
+
GLU_CFLAGS = @GLU_CFLAGS@
|
|
325
|
+
GLU_LIBS = @GLU_LIBS@
|
|
326
|
+
GL_CFLAGS = @GL_CFLAGS@
|
|
327
|
+
GL_LIBS = @GL_LIBS@
|
|
328
|
+
GREP = @GREP@
|
|
329
|
+
INSTALL = @INSTALL@
|
|
330
|
+
INSTALL_DATA = @INSTALL_DATA@
|
|
331
|
+
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
332
|
+
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
333
|
+
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
|
|
334
|
+
LD = @LD@
|
|
335
|
+
LDFLAGS = @LDFLAGS@
|
|
336
|
+
LIBDIR = @LIBDIR@
|
|
337
|
+
LIBOBJS = @LIBOBJS@
|
|
338
|
+
LIBS = @LIBS@
|
|
339
|
+
LIBTIFF_ALPHA_VERSION = @LIBTIFF_ALPHA_VERSION@
|
|
340
|
+
LIBTIFF_DOCDIR = @LIBTIFF_DOCDIR@
|
|
341
|
+
LIBTIFF_MAJOR_VERSION = @LIBTIFF_MAJOR_VERSION@
|
|
342
|
+
LIBTIFF_MICRO_VERSION = @LIBTIFF_MICRO_VERSION@
|
|
343
|
+
LIBTIFF_MINOR_VERSION = @LIBTIFF_MINOR_VERSION@
|
|
344
|
+
LIBTIFF_RELEASE_DATE = @LIBTIFF_RELEASE_DATE@
|
|
345
|
+
LIBTIFF_VERSION = @LIBTIFF_VERSION@
|
|
346
|
+
LIBTIFF_VERSION_INFO = @LIBTIFF_VERSION_INFO@
|
|
347
|
+
LIBTOOL = @LIBTOOL@
|
|
348
|
+
LIPO = @LIPO@
|
|
349
|
+
LN_S = @LN_S@
|
|
350
|
+
LTLIBOBJS = @LTLIBOBJS@
|
|
351
|
+
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
|
|
352
|
+
MAINT = @MAINT@
|
|
353
|
+
MAKEINFO = @MAKEINFO@
|
|
354
|
+
MANIFEST_TOOL = @MANIFEST_TOOL@
|
|
355
|
+
MKDIR_P = @MKDIR_P@
|
|
356
|
+
NM = @NM@
|
|
357
|
+
NMEDIT = @NMEDIT@
|
|
358
|
+
OBJDUMP = @OBJDUMP@
|
|
359
|
+
OBJEXT = @OBJEXT@
|
|
360
|
+
OTOOL = @OTOOL@
|
|
361
|
+
OTOOL64 = @OTOOL64@
|
|
362
|
+
PACKAGE = @PACKAGE@
|
|
363
|
+
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
|
|
364
|
+
PACKAGE_NAME = @PACKAGE_NAME@
|
|
365
|
+
PACKAGE_STRING = @PACKAGE_STRING@
|
|
366
|
+
PACKAGE_TARNAME = @PACKAGE_TARNAME@
|
|
367
|
+
PACKAGE_URL = @PACKAGE_URL@
|
|
368
|
+
PACKAGE_VERSION = @PACKAGE_VERSION@
|
|
369
|
+
PATH_SEPARATOR = @PATH_SEPARATOR@
|
|
370
|
+
PTHREAD_CC = @PTHREAD_CC@
|
|
371
|
+
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
|
|
372
|
+
PTHREAD_LIBS = @PTHREAD_LIBS@
|
|
373
|
+
RANLIB = @RANLIB@
|
|
374
|
+
SED = @SED@
|
|
375
|
+
SET_MAKE = @SET_MAKE@
|
|
376
|
+
SHELL = @SHELL@
|
|
377
|
+
STRIP = @STRIP@
|
|
378
|
+
VERSION = @VERSION@
|
|
379
|
+
XMKMF = @XMKMF@
|
|
380
|
+
X_CFLAGS = @X_CFLAGS@
|
|
381
|
+
X_EXTRA_LIBS = @X_EXTRA_LIBS@
|
|
382
|
+
X_LIBS = @X_LIBS@
|
|
383
|
+
X_PRE_LIBS = @X_PRE_LIBS@
|
|
384
|
+
abs_builddir = @abs_builddir@
|
|
385
|
+
abs_srcdir = @abs_srcdir@
|
|
386
|
+
abs_top_builddir = @abs_top_builddir@
|
|
387
|
+
abs_top_srcdir = @abs_top_srcdir@
|
|
388
|
+
ac_ct_AR = @ac_ct_AR@
|
|
389
|
+
ac_ct_CC = @ac_ct_CC@
|
|
390
|
+
ac_ct_CXX = @ac_ct_CXX@
|
|
391
|
+
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
|
|
392
|
+
am__include = @am__include@
|
|
393
|
+
am__leading_dot = @am__leading_dot@
|
|
394
|
+
am__quote = @am__quote@
|
|
395
|
+
am__tar = @am__tar@
|
|
396
|
+
am__untar = @am__untar@
|
|
397
|
+
ax_pthread_config = @ax_pthread_config@
|
|
398
|
+
bindir = @bindir@
|
|
399
|
+
build = @build@
|
|
400
|
+
build_alias = @build_alias@
|
|
401
|
+
build_cpu = @build_cpu@
|
|
402
|
+
build_os = @build_os@
|
|
403
|
+
build_vendor = @build_vendor@
|
|
404
|
+
builddir = @builddir@
|
|
405
|
+
datadir = @datadir@
|
|
406
|
+
datarootdir = @datarootdir@
|
|
407
|
+
docdir = @docdir@
|
|
408
|
+
dvidir = @dvidir@
|
|
409
|
+
exec_prefix = @exec_prefix@
|
|
410
|
+
host = @host@
|
|
411
|
+
host_alias = @host_alias@
|
|
412
|
+
host_cpu = @host_cpu@
|
|
413
|
+
host_os = @host_os@
|
|
414
|
+
host_vendor = @host_vendor@
|
|
415
|
+
htmldir = @htmldir@
|
|
416
|
+
includedir = @includedir@
|
|
417
|
+
infodir = @infodir@
|
|
418
|
+
install_sh = @install_sh@
|
|
419
|
+
libdir = @libdir@
|
|
420
|
+
libexecdir = @libexecdir@
|
|
421
|
+
localedir = @localedir@
|
|
422
|
+
localstatedir = @localstatedir@
|
|
423
|
+
mandir = @mandir@
|
|
424
|
+
mkdir_p = @mkdir_p@
|
|
425
|
+
oldincludedir = @oldincludedir@
|
|
426
|
+
pdfdir = @pdfdir@
|
|
427
|
+
prefix = @prefix@
|
|
428
|
+
program_transform_name = @program_transform_name@
|
|
429
|
+
psdir = @psdir@
|
|
430
|
+
sbindir = @sbindir@
|
|
431
|
+
sharedstatedir = @sharedstatedir@
|
|
432
|
+
srcdir = @srcdir@
|
|
433
|
+
sysconfdir = @sysconfdir@
|
|
434
|
+
target_alias = @target_alias@
|
|
435
|
+
tiff_libs_private = @tiff_libs_private@
|
|
436
|
+
top_build_prefix = @top_build_prefix@
|
|
437
|
+
top_builddir = @top_builddir@
|
|
438
|
+
top_srcdir = @top_srcdir@
|
|
439
|
+
LIBPORT = $(top_builddir)/port/libport.la
|
|
440
|
+
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
|
441
|
+
EXTRA_DIST = \
|
|
442
|
+
CMakeLists.txt \
|
|
443
|
+
Makefile.vc
|
|
444
|
+
|
|
445
|
+
@HAVE_RPATH_TRUE@AM_LDFLAGS = $(LIBDIR)
|
|
446
|
+
fax2ps_SOURCES = fax2ps.c
|
|
447
|
+
fax2ps_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
448
|
+
fax2tiff_SOURCES = fax2tiff.c
|
|
449
|
+
fax2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
450
|
+
pal2rgb_SOURCES = pal2rgb.c
|
|
451
|
+
pal2rgb_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
452
|
+
ppm2tiff_SOURCES = ppm2tiff.c
|
|
453
|
+
ppm2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
454
|
+
raw2tiff_SOURCES = raw2tiff.c
|
|
455
|
+
raw2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
456
|
+
rgb2ycbcr_SOURCES = rgb2ycbcr.c
|
|
457
|
+
rgb2ycbcr_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
458
|
+
thumbnail_SOURCES = thumbnail.c
|
|
459
|
+
thumbnail_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
460
|
+
tiff2bw_SOURCES = tiff2bw.c
|
|
461
|
+
tiff2bw_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
462
|
+
tiff2pdf_SOURCES = tiff2pdf.c
|
|
463
|
+
tiff2pdf_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
464
|
+
tiff2ps_SOURCES = tiff2ps.c
|
|
465
|
+
tiff2ps_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
466
|
+
tiff2rgba_SOURCES = tiff2rgba.c
|
|
467
|
+
tiff2rgba_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
468
|
+
tiffcmp_SOURCES = tiffcmp.c
|
|
469
|
+
tiffcmp_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
470
|
+
tiffcp_SOURCES = tiffcp.c
|
|
471
|
+
tiffcp_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
472
|
+
tiffcrop_SOURCES = tiffcrop.c
|
|
473
|
+
tiffcrop_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
474
|
+
tiffdither_SOURCES = tiffdither.c
|
|
475
|
+
tiffdither_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
476
|
+
tiffdump_SOURCES = tiffdump.c
|
|
477
|
+
tiffdump_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
478
|
+
tiffinfo_SOURCES = tiffinfo.c
|
|
479
|
+
tiffinfo_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
480
|
+
tiffmedian_SOURCES = tiffmedian.c
|
|
481
|
+
tiffmedian_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
482
|
+
tiffset_SOURCES = tiffset.c
|
|
483
|
+
tiffset_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
484
|
+
tiffsplit_SOURCES = tiffsplit.c
|
|
485
|
+
tiffsplit_LDADD = $(LIBTIFF) $(LIBPORT)
|
|
486
|
+
tiffgt_SOURCES = tiffgt.c
|
|
487
|
+
tiffgt_CFLAGS = $(CFLAGS) $(GLUT_CFLAGS) $(AM_CFLAGS)
|
|
488
|
+
tiffgt_LDADD = $(LIBTIFF) $(LIBPORT) $(X_LIBS) $(GLUT_LIBS)
|
|
489
|
+
AM_CPPFLAGS = -I$(top_srcdir)/libtiff
|
|
490
|
+
all: all-am
|
|
491
|
+
|
|
492
|
+
.SUFFIXES:
|
|
493
|
+
.SUFFIXES: .c .lo .o .obj
|
|
494
|
+
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
|
|
495
|
+
@for dep in $?; do \
|
|
496
|
+
case '$(am__configure_deps)' in \
|
|
497
|
+
*$$dep*) \
|
|
498
|
+
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
|
|
499
|
+
&& { if test -f $@; then exit 0; else break; fi; }; \
|
|
500
|
+
exit 1;; \
|
|
501
|
+
esac; \
|
|
502
|
+
done; \
|
|
503
|
+
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \
|
|
504
|
+
$(am__cd) $(top_srcdir) && \
|
|
505
|
+
$(AUTOMAKE) --foreign tools/Makefile
|
|
506
|
+
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
|
507
|
+
@case '$?' in \
|
|
508
|
+
*config.status*) \
|
|
509
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
|
|
510
|
+
*) \
|
|
511
|
+
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
|
|
512
|
+
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
|
|
513
|
+
esac;
|
|
514
|
+
|
|
515
|
+
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
|
|
516
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
517
|
+
|
|
518
|
+
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
|
|
519
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
520
|
+
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
|
|
521
|
+
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
|
|
522
|
+
$(am__aclocal_m4_deps):
|
|
523
|
+
install-binPROGRAMS: $(bin_PROGRAMS)
|
|
524
|
+
@$(NORMAL_INSTALL)
|
|
525
|
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
|
526
|
+
if test -n "$$list"; then \
|
|
527
|
+
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
|
|
528
|
+
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
|
|
529
|
+
fi; \
|
|
530
|
+
for p in $$list; do echo "$$p $$p"; done | \
|
|
531
|
+
sed 's/$(EXEEXT)$$//' | \
|
|
532
|
+
while read p p1; do if test -f $$p \
|
|
533
|
+
|| test -f $$p1 \
|
|
534
|
+
; then echo "$$p"; echo "$$p"; else :; fi; \
|
|
535
|
+
done | \
|
|
536
|
+
sed -e 'p;s,.*/,,;n;h' \
|
|
537
|
+
-e 's|.*|.|' \
|
|
538
|
+
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
|
|
539
|
+
sed 'N;N;N;s,\n, ,g' | \
|
|
540
|
+
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
|
|
541
|
+
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
|
|
542
|
+
if ($$2 == $$4) files[d] = files[d] " " $$1; \
|
|
543
|
+
else { print "f", $$3 "/" $$4, $$1; } } \
|
|
544
|
+
END { for (d in files) print "f", d, files[d] }' | \
|
|
545
|
+
while read type dir files; do \
|
|
546
|
+
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
|
|
547
|
+
test -z "$$files" || { \
|
|
548
|
+
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
|
|
549
|
+
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
|
|
550
|
+
} \
|
|
551
|
+
; done
|
|
552
|
+
|
|
553
|
+
uninstall-binPROGRAMS:
|
|
554
|
+
@$(NORMAL_UNINSTALL)
|
|
555
|
+
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
|
|
556
|
+
files=`for p in $$list; do echo "$$p"; done | \
|
|
557
|
+
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
|
|
558
|
+
-e 's/$$/$(EXEEXT)/' \
|
|
559
|
+
`; \
|
|
560
|
+
test -n "$$list" || exit 0; \
|
|
561
|
+
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
|
|
562
|
+
cd "$(DESTDIR)$(bindir)" && rm -f $$files
|
|
563
|
+
|
|
564
|
+
clean-binPROGRAMS:
|
|
565
|
+
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
|
|
566
|
+
echo " rm -f" $$list; \
|
|
567
|
+
rm -f $$list || exit $$?; \
|
|
568
|
+
test -n "$(EXEEXT)" || exit 0; \
|
|
569
|
+
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
|
570
|
+
echo " rm -f" $$list; \
|
|
571
|
+
rm -f $$list
|
|
572
|
+
|
|
573
|
+
clean-checkPROGRAMS:
|
|
574
|
+
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
|
|
575
|
+
echo " rm -f" $$list; \
|
|
576
|
+
rm -f $$list || exit $$?; \
|
|
577
|
+
test -n "$(EXEEXT)" || exit 0; \
|
|
578
|
+
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
|
|
579
|
+
echo " rm -f" $$list; \
|
|
580
|
+
rm -f $$list
|
|
581
|
+
|
|
582
|
+
fax2ps$(EXEEXT): $(fax2ps_OBJECTS) $(fax2ps_DEPENDENCIES) $(EXTRA_fax2ps_DEPENDENCIES)
|
|
583
|
+
@rm -f fax2ps$(EXEEXT)
|
|
584
|
+
$(AM_V_CCLD)$(LINK) $(fax2ps_OBJECTS) $(fax2ps_LDADD) $(LIBS)
|
|
585
|
+
|
|
586
|
+
fax2tiff$(EXEEXT): $(fax2tiff_OBJECTS) $(fax2tiff_DEPENDENCIES) $(EXTRA_fax2tiff_DEPENDENCIES)
|
|
587
|
+
@rm -f fax2tiff$(EXEEXT)
|
|
588
|
+
$(AM_V_CCLD)$(LINK) $(fax2tiff_OBJECTS) $(fax2tiff_LDADD) $(LIBS)
|
|
589
|
+
|
|
590
|
+
pal2rgb$(EXEEXT): $(pal2rgb_OBJECTS) $(pal2rgb_DEPENDENCIES) $(EXTRA_pal2rgb_DEPENDENCIES)
|
|
591
|
+
@rm -f pal2rgb$(EXEEXT)
|
|
592
|
+
$(AM_V_CCLD)$(LINK) $(pal2rgb_OBJECTS) $(pal2rgb_LDADD) $(LIBS)
|
|
593
|
+
|
|
594
|
+
ppm2tiff$(EXEEXT): $(ppm2tiff_OBJECTS) $(ppm2tiff_DEPENDENCIES) $(EXTRA_ppm2tiff_DEPENDENCIES)
|
|
595
|
+
@rm -f ppm2tiff$(EXEEXT)
|
|
596
|
+
$(AM_V_CCLD)$(LINK) $(ppm2tiff_OBJECTS) $(ppm2tiff_LDADD) $(LIBS)
|
|
597
|
+
|
|
598
|
+
raw2tiff$(EXEEXT): $(raw2tiff_OBJECTS) $(raw2tiff_DEPENDENCIES) $(EXTRA_raw2tiff_DEPENDENCIES)
|
|
599
|
+
@rm -f raw2tiff$(EXEEXT)
|
|
600
|
+
$(AM_V_CCLD)$(LINK) $(raw2tiff_OBJECTS) $(raw2tiff_LDADD) $(LIBS)
|
|
601
|
+
|
|
602
|
+
rgb2ycbcr$(EXEEXT): $(rgb2ycbcr_OBJECTS) $(rgb2ycbcr_DEPENDENCIES) $(EXTRA_rgb2ycbcr_DEPENDENCIES)
|
|
603
|
+
@rm -f rgb2ycbcr$(EXEEXT)
|
|
604
|
+
$(AM_V_CCLD)$(LINK) $(rgb2ycbcr_OBJECTS) $(rgb2ycbcr_LDADD) $(LIBS)
|
|
605
|
+
|
|
606
|
+
thumbnail$(EXEEXT): $(thumbnail_OBJECTS) $(thumbnail_DEPENDENCIES) $(EXTRA_thumbnail_DEPENDENCIES)
|
|
607
|
+
@rm -f thumbnail$(EXEEXT)
|
|
608
|
+
$(AM_V_CCLD)$(LINK) $(thumbnail_OBJECTS) $(thumbnail_LDADD) $(LIBS)
|
|
609
|
+
|
|
610
|
+
tiff2bw$(EXEEXT): $(tiff2bw_OBJECTS) $(tiff2bw_DEPENDENCIES) $(EXTRA_tiff2bw_DEPENDENCIES)
|
|
611
|
+
@rm -f tiff2bw$(EXEEXT)
|
|
612
|
+
$(AM_V_CCLD)$(LINK) $(tiff2bw_OBJECTS) $(tiff2bw_LDADD) $(LIBS)
|
|
613
|
+
|
|
614
|
+
tiff2pdf$(EXEEXT): $(tiff2pdf_OBJECTS) $(tiff2pdf_DEPENDENCIES) $(EXTRA_tiff2pdf_DEPENDENCIES)
|
|
615
|
+
@rm -f tiff2pdf$(EXEEXT)
|
|
616
|
+
$(AM_V_CCLD)$(LINK) $(tiff2pdf_OBJECTS) $(tiff2pdf_LDADD) $(LIBS)
|
|
617
|
+
|
|
618
|
+
tiff2ps$(EXEEXT): $(tiff2ps_OBJECTS) $(tiff2ps_DEPENDENCIES) $(EXTRA_tiff2ps_DEPENDENCIES)
|
|
619
|
+
@rm -f tiff2ps$(EXEEXT)
|
|
620
|
+
$(AM_V_CCLD)$(LINK) $(tiff2ps_OBJECTS) $(tiff2ps_LDADD) $(LIBS)
|
|
621
|
+
|
|
622
|
+
tiff2rgba$(EXEEXT): $(tiff2rgba_OBJECTS) $(tiff2rgba_DEPENDENCIES) $(EXTRA_tiff2rgba_DEPENDENCIES)
|
|
623
|
+
@rm -f tiff2rgba$(EXEEXT)
|
|
624
|
+
$(AM_V_CCLD)$(LINK) $(tiff2rgba_OBJECTS) $(tiff2rgba_LDADD) $(LIBS)
|
|
625
|
+
|
|
626
|
+
tiffcmp$(EXEEXT): $(tiffcmp_OBJECTS) $(tiffcmp_DEPENDENCIES) $(EXTRA_tiffcmp_DEPENDENCIES)
|
|
627
|
+
@rm -f tiffcmp$(EXEEXT)
|
|
628
|
+
$(AM_V_CCLD)$(LINK) $(tiffcmp_OBJECTS) $(tiffcmp_LDADD) $(LIBS)
|
|
629
|
+
|
|
630
|
+
tiffcp$(EXEEXT): $(tiffcp_OBJECTS) $(tiffcp_DEPENDENCIES) $(EXTRA_tiffcp_DEPENDENCIES)
|
|
631
|
+
@rm -f tiffcp$(EXEEXT)
|
|
632
|
+
$(AM_V_CCLD)$(LINK) $(tiffcp_OBJECTS) $(tiffcp_LDADD) $(LIBS)
|
|
633
|
+
|
|
634
|
+
tiffcrop$(EXEEXT): $(tiffcrop_OBJECTS) $(tiffcrop_DEPENDENCIES) $(EXTRA_tiffcrop_DEPENDENCIES)
|
|
635
|
+
@rm -f tiffcrop$(EXEEXT)
|
|
636
|
+
$(AM_V_CCLD)$(LINK) $(tiffcrop_OBJECTS) $(tiffcrop_LDADD) $(LIBS)
|
|
637
|
+
|
|
638
|
+
tiffdither$(EXEEXT): $(tiffdither_OBJECTS) $(tiffdither_DEPENDENCIES) $(EXTRA_tiffdither_DEPENDENCIES)
|
|
639
|
+
@rm -f tiffdither$(EXEEXT)
|
|
640
|
+
$(AM_V_CCLD)$(LINK) $(tiffdither_OBJECTS) $(tiffdither_LDADD) $(LIBS)
|
|
641
|
+
|
|
642
|
+
tiffdump$(EXEEXT): $(tiffdump_OBJECTS) $(tiffdump_DEPENDENCIES) $(EXTRA_tiffdump_DEPENDENCIES)
|
|
643
|
+
@rm -f tiffdump$(EXEEXT)
|
|
644
|
+
$(AM_V_CCLD)$(LINK) $(tiffdump_OBJECTS) $(tiffdump_LDADD) $(LIBS)
|
|
645
|
+
|
|
646
|
+
tiffgt$(EXEEXT): $(tiffgt_OBJECTS) $(tiffgt_DEPENDENCIES) $(EXTRA_tiffgt_DEPENDENCIES)
|
|
647
|
+
@rm -f tiffgt$(EXEEXT)
|
|
648
|
+
$(AM_V_CCLD)$(tiffgt_LINK) $(tiffgt_OBJECTS) $(tiffgt_LDADD) $(LIBS)
|
|
649
|
+
|
|
650
|
+
tiffinfo$(EXEEXT): $(tiffinfo_OBJECTS) $(tiffinfo_DEPENDENCIES) $(EXTRA_tiffinfo_DEPENDENCIES)
|
|
651
|
+
@rm -f tiffinfo$(EXEEXT)
|
|
652
|
+
$(AM_V_CCLD)$(LINK) $(tiffinfo_OBJECTS) $(tiffinfo_LDADD) $(LIBS)
|
|
653
|
+
|
|
654
|
+
tiffmedian$(EXEEXT): $(tiffmedian_OBJECTS) $(tiffmedian_DEPENDENCIES) $(EXTRA_tiffmedian_DEPENDENCIES)
|
|
655
|
+
@rm -f tiffmedian$(EXEEXT)
|
|
656
|
+
$(AM_V_CCLD)$(LINK) $(tiffmedian_OBJECTS) $(tiffmedian_LDADD) $(LIBS)
|
|
657
|
+
|
|
658
|
+
tiffset$(EXEEXT): $(tiffset_OBJECTS) $(tiffset_DEPENDENCIES) $(EXTRA_tiffset_DEPENDENCIES)
|
|
659
|
+
@rm -f tiffset$(EXEEXT)
|
|
660
|
+
$(AM_V_CCLD)$(LINK) $(tiffset_OBJECTS) $(tiffset_LDADD) $(LIBS)
|
|
661
|
+
|
|
662
|
+
tiffsplit$(EXEEXT): $(tiffsplit_OBJECTS) $(tiffsplit_DEPENDENCIES) $(EXTRA_tiffsplit_DEPENDENCIES)
|
|
663
|
+
@rm -f tiffsplit$(EXEEXT)
|
|
664
|
+
$(AM_V_CCLD)$(LINK) $(tiffsplit_OBJECTS) $(tiffsplit_LDADD) $(LIBS)
|
|
665
|
+
|
|
666
|
+
mostlyclean-compile:
|
|
667
|
+
-rm -f *.$(OBJEXT)
|
|
668
|
+
|
|
669
|
+
distclean-compile:
|
|
670
|
+
-rm -f *.tab.c
|
|
671
|
+
|
|
672
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fax2ps.Po@am__quote@
|
|
673
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fax2tiff.Po@am__quote@
|
|
674
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pal2rgb.Po@am__quote@
|
|
675
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppm2tiff.Po@am__quote@
|
|
676
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raw2tiff.Po@am__quote@
|
|
677
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rgb2ycbcr.Po@am__quote@
|
|
678
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/thumbnail.Po@am__quote@
|
|
679
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiff2bw.Po@am__quote@
|
|
680
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiff2pdf.Po@am__quote@
|
|
681
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiff2ps.Po@am__quote@
|
|
682
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiff2rgba.Po@am__quote@
|
|
683
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffcmp.Po@am__quote@
|
|
684
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffcp.Po@am__quote@
|
|
685
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffcrop.Po@am__quote@
|
|
686
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffdither.Po@am__quote@
|
|
687
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffdump.Po@am__quote@
|
|
688
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffgt-tiffgt.Po@am__quote@
|
|
689
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffinfo.Po@am__quote@
|
|
690
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffmedian.Po@am__quote@
|
|
691
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffset.Po@am__quote@
|
|
692
|
+
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tiffsplit.Po@am__quote@
|
|
693
|
+
|
|
694
|
+
.c.o:
|
|
695
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
|
696
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
697
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
698
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
699
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
|
|
700
|
+
|
|
701
|
+
.c.obj:
|
|
702
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
|
|
703
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
|
|
704
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
|
|
705
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
706
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
|
|
707
|
+
|
|
708
|
+
.c.lo:
|
|
709
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
|
|
710
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
|
|
711
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
|
|
712
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
713
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
|
|
714
|
+
|
|
715
|
+
tiffgt-tiffgt.o: tiffgt.c
|
|
716
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tiffgt_CFLAGS) $(CFLAGS) -MT tiffgt-tiffgt.o -MD -MP -MF $(DEPDIR)/tiffgt-tiffgt.Tpo -c -o tiffgt-tiffgt.o `test -f 'tiffgt.c' || echo '$(srcdir)/'`tiffgt.c
|
|
717
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tiffgt-tiffgt.Tpo $(DEPDIR)/tiffgt-tiffgt.Po
|
|
718
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tiffgt.c' object='tiffgt-tiffgt.o' libtool=no @AMDEPBACKSLASH@
|
|
719
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
720
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tiffgt_CFLAGS) $(CFLAGS) -c -o tiffgt-tiffgt.o `test -f 'tiffgt.c' || echo '$(srcdir)/'`tiffgt.c
|
|
721
|
+
|
|
722
|
+
tiffgt-tiffgt.obj: tiffgt.c
|
|
723
|
+
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tiffgt_CFLAGS) $(CFLAGS) -MT tiffgt-tiffgt.obj -MD -MP -MF $(DEPDIR)/tiffgt-tiffgt.Tpo -c -o tiffgt-tiffgt.obj `if test -f 'tiffgt.c'; then $(CYGPATH_W) 'tiffgt.c'; else $(CYGPATH_W) '$(srcdir)/tiffgt.c'; fi`
|
|
724
|
+
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/tiffgt-tiffgt.Tpo $(DEPDIR)/tiffgt-tiffgt.Po
|
|
725
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tiffgt.c' object='tiffgt-tiffgt.obj' libtool=no @AMDEPBACKSLASH@
|
|
726
|
+
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
|
|
727
|
+
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tiffgt_CFLAGS) $(CFLAGS) -c -o tiffgt-tiffgt.obj `if test -f 'tiffgt.c'; then $(CYGPATH_W) 'tiffgt.c'; else $(CYGPATH_W) '$(srcdir)/tiffgt.c'; fi`
|
|
728
|
+
|
|
729
|
+
mostlyclean-libtool:
|
|
730
|
+
-rm -f *.lo
|
|
731
|
+
|
|
732
|
+
clean-libtool:
|
|
733
|
+
-rm -rf .libs _libs
|
|
734
|
+
|
|
735
|
+
ID: $(am__tagged_files)
|
|
736
|
+
$(am__define_uniq_tagged_files); mkid -fID $$unique
|
|
737
|
+
tags: tags-am
|
|
738
|
+
TAGS: tags
|
|
739
|
+
|
|
740
|
+
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
741
|
+
set x; \
|
|
742
|
+
here=`pwd`; \
|
|
743
|
+
$(am__define_uniq_tagged_files); \
|
|
744
|
+
shift; \
|
|
745
|
+
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
|
|
746
|
+
test -n "$$unique" || unique=$$empty_fix; \
|
|
747
|
+
if test $$# -gt 0; then \
|
|
748
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
749
|
+
"$$@" $$unique; \
|
|
750
|
+
else \
|
|
751
|
+
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
|
|
752
|
+
$$unique; \
|
|
753
|
+
fi; \
|
|
754
|
+
fi
|
|
755
|
+
ctags: ctags-am
|
|
756
|
+
|
|
757
|
+
CTAGS: ctags
|
|
758
|
+
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
|
|
759
|
+
$(am__define_uniq_tagged_files); \
|
|
760
|
+
test -z "$(CTAGS_ARGS)$$unique" \
|
|
761
|
+
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
|
|
762
|
+
$$unique
|
|
763
|
+
|
|
764
|
+
GTAGS:
|
|
765
|
+
here=`$(am__cd) $(top_builddir) && pwd` \
|
|
766
|
+
&& $(am__cd) $(top_srcdir) \
|
|
767
|
+
&& gtags -i $(GTAGS_ARGS) "$$here"
|
|
768
|
+
cscopelist: cscopelist-am
|
|
769
|
+
|
|
770
|
+
cscopelist-am: $(am__tagged_files)
|
|
771
|
+
list='$(am__tagged_files)'; \
|
|
772
|
+
case "$(srcdir)" in \
|
|
773
|
+
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
|
|
774
|
+
*) sdir=$(subdir)/$(srcdir) ;; \
|
|
775
|
+
esac; \
|
|
776
|
+
for i in $$list; do \
|
|
777
|
+
if test -f "$$i"; then \
|
|
778
|
+
echo "$(subdir)/$$i"; \
|
|
779
|
+
else \
|
|
780
|
+
echo "$$sdir/$$i"; \
|
|
781
|
+
fi; \
|
|
782
|
+
done >> $(top_builddir)/cscope.files
|
|
783
|
+
|
|
784
|
+
distclean-tags:
|
|
785
|
+
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
|
|
786
|
+
|
|
787
|
+
distdir: $(DISTFILES)
|
|
788
|
+
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
789
|
+
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
|
|
790
|
+
list='$(DISTFILES)'; \
|
|
791
|
+
dist_files=`for file in $$list; do echo $$file; done | \
|
|
792
|
+
sed -e "s|^$$srcdirstrip/||;t" \
|
|
793
|
+
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
|
|
794
|
+
case $$dist_files in \
|
|
795
|
+
*/*) $(MKDIR_P) `echo "$$dist_files" | \
|
|
796
|
+
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
|
|
797
|
+
sort -u` ;; \
|
|
798
|
+
esac; \
|
|
799
|
+
for file in $$dist_files; do \
|
|
800
|
+
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
|
|
801
|
+
if test -d $$d/$$file; then \
|
|
802
|
+
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
|
|
803
|
+
if test -d "$(distdir)/$$file"; then \
|
|
804
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
805
|
+
fi; \
|
|
806
|
+
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
|
|
807
|
+
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
|
|
808
|
+
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
|
|
809
|
+
fi; \
|
|
810
|
+
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
|
|
811
|
+
else \
|
|
812
|
+
test -f "$(distdir)/$$file" \
|
|
813
|
+
|| cp -p $$d/$$file "$(distdir)/$$file" \
|
|
814
|
+
|| exit 1; \
|
|
815
|
+
fi; \
|
|
816
|
+
done
|
|
817
|
+
check-am: all-am
|
|
818
|
+
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
|
|
819
|
+
check: check-am
|
|
820
|
+
all-am: Makefile $(PROGRAMS)
|
|
821
|
+
installdirs:
|
|
822
|
+
for dir in "$(DESTDIR)$(bindir)"; do \
|
|
823
|
+
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
|
|
824
|
+
done
|
|
825
|
+
install: install-am
|
|
826
|
+
install-exec: install-exec-am
|
|
827
|
+
install-data: install-data-am
|
|
828
|
+
uninstall: uninstall-am
|
|
829
|
+
|
|
830
|
+
install-am: all-am
|
|
831
|
+
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
|
|
832
|
+
|
|
833
|
+
installcheck: installcheck-am
|
|
834
|
+
install-strip:
|
|
835
|
+
if test -z '$(STRIP)'; then \
|
|
836
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
837
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
838
|
+
install; \
|
|
839
|
+
else \
|
|
840
|
+
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
|
|
841
|
+
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
|
|
842
|
+
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
|
|
843
|
+
fi
|
|
844
|
+
mostlyclean-generic:
|
|
845
|
+
|
|
846
|
+
clean-generic:
|
|
847
|
+
|
|
848
|
+
distclean-generic:
|
|
849
|
+
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
|
|
850
|
+
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
|
|
851
|
+
|
|
852
|
+
maintainer-clean-generic:
|
|
853
|
+
@echo "This command is intended for maintainers to use"
|
|
854
|
+
@echo "it deletes files that may require special tools to rebuild."
|
|
855
|
+
clean: clean-am
|
|
856
|
+
|
|
857
|
+
clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
|
|
858
|
+
clean-libtool mostlyclean-am
|
|
859
|
+
|
|
860
|
+
distclean: distclean-am
|
|
861
|
+
-rm -rf ./$(DEPDIR)
|
|
862
|
+
-rm -f Makefile
|
|
863
|
+
distclean-am: clean-am distclean-compile distclean-generic \
|
|
864
|
+
distclean-tags
|
|
865
|
+
|
|
866
|
+
dvi: dvi-am
|
|
867
|
+
|
|
868
|
+
dvi-am:
|
|
869
|
+
|
|
870
|
+
html: html-am
|
|
871
|
+
|
|
872
|
+
html-am:
|
|
873
|
+
|
|
874
|
+
info: info-am
|
|
875
|
+
|
|
876
|
+
info-am:
|
|
877
|
+
|
|
878
|
+
install-data-am:
|
|
879
|
+
|
|
880
|
+
install-dvi: install-dvi-am
|
|
881
|
+
|
|
882
|
+
install-dvi-am:
|
|
883
|
+
|
|
884
|
+
install-exec-am: install-binPROGRAMS
|
|
885
|
+
|
|
886
|
+
install-html: install-html-am
|
|
887
|
+
|
|
888
|
+
install-html-am:
|
|
889
|
+
|
|
890
|
+
install-info: install-info-am
|
|
891
|
+
|
|
892
|
+
install-info-am:
|
|
893
|
+
|
|
894
|
+
install-man:
|
|
895
|
+
|
|
896
|
+
install-pdf: install-pdf-am
|
|
897
|
+
|
|
898
|
+
install-pdf-am:
|
|
899
|
+
|
|
900
|
+
install-ps: install-ps-am
|
|
901
|
+
|
|
902
|
+
install-ps-am:
|
|
903
|
+
|
|
904
|
+
installcheck-am:
|
|
905
|
+
|
|
906
|
+
maintainer-clean: maintainer-clean-am
|
|
907
|
+
-rm -rf ./$(DEPDIR)
|
|
908
|
+
-rm -f Makefile
|
|
909
|
+
maintainer-clean-am: distclean-am maintainer-clean-generic
|
|
910
|
+
|
|
911
|
+
mostlyclean: mostlyclean-am
|
|
912
|
+
|
|
913
|
+
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
|
|
914
|
+
mostlyclean-libtool
|
|
915
|
+
|
|
916
|
+
pdf: pdf-am
|
|
917
|
+
|
|
918
|
+
pdf-am:
|
|
919
|
+
|
|
920
|
+
ps: ps-am
|
|
921
|
+
|
|
922
|
+
ps-am:
|
|
923
|
+
|
|
924
|
+
uninstall-am: uninstall-binPROGRAMS
|
|
925
|
+
|
|
926
|
+
.MAKE: check-am install-am install-strip
|
|
927
|
+
|
|
928
|
+
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \
|
|
929
|
+
clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
|
|
930
|
+
clean-libtool cscopelist-am ctags ctags-am distclean \
|
|
931
|
+
distclean-compile distclean-generic distclean-libtool \
|
|
932
|
+
distclean-tags distdir dvi dvi-am html html-am info info-am \
|
|
933
|
+
install install-am install-binPROGRAMS install-data \
|
|
934
|
+
install-data-am install-dvi install-dvi-am install-exec \
|
|
935
|
+
install-exec-am install-html install-html-am install-info \
|
|
936
|
+
install-info-am install-man install-pdf install-pdf-am \
|
|
937
|
+
install-ps install-ps-am install-strip installcheck \
|
|
938
|
+
installcheck-am installdirs maintainer-clean \
|
|
939
|
+
maintainer-clean-generic mostlyclean mostlyclean-compile \
|
|
940
|
+
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
|
|
941
|
+
tags tags-am uninstall uninstall-am uninstall-binPROGRAMS
|
|
942
|
+
|
|
943
|
+
.PRECIOUS: Makefile
|
|
944
|
+
|
|
945
|
+
|
|
946
|
+
echo:
|
|
947
|
+
(echo $(CFLAGS))
|
|
948
|
+
(echo $(tiffgt_CFLAGS))
|
|
949
|
+
(echo $(GL_CFLAGS))
|
|
950
|
+
(echo $(GLU_CFLAGS))
|
|
951
|
+
(echo $(GLUT_CFLAGS))
|
|
952
|
+
|
|
953
|
+
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
954
|
+
# Otherwise a system limit (for SysV at least) may be exceeded.
|
|
955
|
+
.NOEXPORT:
|