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.
Files changed (629) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +57 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.org +34 -0
  5. data/ext/laag/libtiff/extconf.rb +13 -0
  6. data/laag-libtiff.gemspec +20 -0
  7. data/lib/laag/libtiff.rb +29 -0
  8. data/vendor/gitlab.com/libtiff/libtiff/.appveyor.yml +109 -0
  9. data/vendor/gitlab.com/libtiff/libtiff/.cvsignore +4 -0
  10. data/vendor/gitlab.com/libtiff/libtiff/.travis.yml +34 -0
  11. data/vendor/gitlab.com/libtiff/libtiff/CMakeLists.txt +764 -0
  12. data/vendor/gitlab.com/libtiff/libtiff/COMMITTERS +19 -0
  13. data/vendor/gitlab.com/libtiff/libtiff/COPYRIGHT +21 -0
  14. data/vendor/gitlab.com/libtiff/libtiff/ChangeLog +8073 -0
  15. data/vendor/gitlab.com/libtiff/libtiff/HOWTO-RELEASE +119 -0
  16. data/vendor/gitlab.com/libtiff/libtiff/HOWTO-SECURITY-RELEASE +19 -0
  17. data/vendor/gitlab.com/libtiff/libtiff/Makefile.am +91 -0
  18. data/vendor/gitlab.com/libtiff/libtiff/Makefile.in +995 -0
  19. data/vendor/gitlab.com/libtiff/libtiff/Makefile.vc +58 -0
  20. data/vendor/gitlab.com/libtiff/libtiff/README +61 -0
  21. data/vendor/gitlab.com/libtiff/libtiff/README.vms +12 -0
  22. data/vendor/gitlab.com/libtiff/libtiff/RELEASE-DATE +1 -0
  23. data/vendor/gitlab.com/libtiff/libtiff/SConstruct +171 -0
  24. data/vendor/gitlab.com/libtiff/libtiff/TODO +12 -0
  25. data/vendor/gitlab.com/libtiff/libtiff/VERSION +1 -0
  26. data/vendor/gitlab.com/libtiff/libtiff/aclocal.m4 +1194 -0
  27. data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/bmp2tiff.1.html +121 -0
  28. data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/gif2tiff.1.html +141 -0
  29. data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/ras2tiff.1.html +139 -0
  30. data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/sgi2tiff.1.html +147 -0
  31. data/vendor/gitlab.com/libtiff/libtiff/archive/html/man/tiffsv.1.html +207 -0
  32. data/vendor/gitlab.com/libtiff/libtiff/archive/man/bmp2tiff.1 +85 -0
  33. data/vendor/gitlab.com/libtiff/libtiff/archive/man/gif2tiff.1 +81 -0
  34. data/vendor/gitlab.com/libtiff/libtiff/archive/man/ras2tiff.1 +96 -0
  35. data/vendor/gitlab.com/libtiff/libtiff/archive/man/sgi2tiff.1 +93 -0
  36. data/vendor/gitlab.com/libtiff/libtiff/archive/man/tiffsv.1 +142 -0
  37. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/bmp2tiff.c +937 -0
  38. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/gif2tiff.c +591 -0
  39. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ras2tiff.c +338 -0
  40. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/rasterfile.h +44 -0
  41. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgi2tiff.c +337 -0
  42. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/sgisv.c +318 -0
  43. data/vendor/gitlab.com/libtiff/libtiff/archive/tools/ycbcr.c +168 -0
  44. data/vendor/gitlab.com/libtiff/libtiff/autogen.sh +8 -0
  45. data/vendor/gitlab.com/libtiff/libtiff/build/.cvsignore +1 -0
  46. data/vendor/gitlab.com/libtiff/libtiff/build/CMakeLists.txt +25 -0
  47. data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.am +32 -0
  48. data/vendor/gitlab.com/libtiff/libtiff/build/Makefile.in +680 -0
  49. data/vendor/gitlab.com/libtiff/libtiff/build/README +3 -0
  50. data/vendor/gitlab.com/libtiff/libtiff/build/travis-ci +108 -0
  51. data/vendor/gitlab.com/libtiff/libtiff/commit +233 -0
  52. data/vendor/gitlab.com/libtiff/libtiff/config/compile +347 -0
  53. data/vendor/gitlab.com/libtiff/libtiff/config/config.guess +1526 -0
  54. data/vendor/gitlab.com/libtiff/libtiff/config/config.sub +1658 -0
  55. data/vendor/gitlab.com/libtiff/libtiff/config/depcomp +791 -0
  56. data/vendor/gitlab.com/libtiff/libtiff/config/install-sh +507 -0
  57. data/vendor/gitlab.com/libtiff/libtiff/config/ltmain.sh +11156 -0
  58. data/vendor/gitlab.com/libtiff/libtiff/config/missing +215 -0
  59. data/vendor/gitlab.com/libtiff/libtiff/config/mkinstalldirs +161 -0
  60. data/vendor/gitlab.com/libtiff/libtiff/config/test-driver +127 -0
  61. data/vendor/gitlab.com/libtiff/libtiff/configure +23612 -0
  62. data/vendor/gitlab.com/libtiff/libtiff/configure.ac +1112 -0
  63. data/vendor/gitlab.com/libtiff/libtiff/configure.com +1357 -0
  64. data/vendor/gitlab.com/libtiff/libtiff/contrib/.cvsignore +2 -0
  65. data/vendor/gitlab.com/libtiff/libtiff/contrib/CMakeLists.txt +35 -0
  66. data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.am +31 -0
  67. data/vendor/gitlab.com/libtiff/libtiff/contrib/Makefile.in +679 -0
  68. data/vendor/gitlab.com/libtiff/libtiff/contrib/README +2 -0
  69. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/.cvsignore +5 -0
  70. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/CMakeLists.txt +34 -0
  71. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.am +39 -0
  72. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.in +652 -0
  73. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/Makefile.vc +28 -0
  74. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/README +142 -0
  75. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/addtiffo.c +181 -0
  76. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_overview.c +916 -0
  77. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.c +344 -0
  78. data/vendor/gitlab.com/libtiff/libtiff/contrib/addtiffo/tif_ovrcache.h +103 -0
  79. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/.cvsignore +8 -0
  80. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/CMakeLists.txt +43 -0
  81. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.am +46 -0
  82. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/Makefile.in +798 -0
  83. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/README +7 -0
  84. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-bi.c +91 -0
  85. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-grayscale.c +147 -0
  86. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-palette.c +284 -0
  87. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/tiff-rgb.c +201 -0
  88. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/.cvsignore +2 -0
  89. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/CMakeLists.txt +29 -0
  90. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.am +47 -0
  91. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/Makefile.in +516 -0
  92. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/README +6 -0
  93. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/patchlevel.h +8 -0
  94. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtiff.c +1290 -0
  95. data/vendor/gitlab.com/libtiff/libtiff/contrib/dbs/xtiff/xtifficon.h +21 -0
  96. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/.cvsignore +5 -0
  97. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/CMakeLists.txt +35 -0
  98. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.am +40 -0
  99. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/Makefile.in +650 -0
  100. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/README +25 -0
  101. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/iptcutil.c +954 -0
  102. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.iptc +0 -0
  103. data/vendor/gitlab.com/libtiff/libtiff/contrib/iptcutil/test.txt +32 -0
  104. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/.cvsignore +2 -0
  105. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/CMakeLists.txt +27 -0
  106. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.am +29 -0
  107. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/Makefile.in +499 -0
  108. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/README +37 -0
  109. data/vendor/gitlab.com/libtiff/libtiff/contrib/mfs/mfs_file.c +586 -0
  110. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/.cvsignore +2 -0
  111. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/CMakeLists.txt +30 -0
  112. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.am +32 -0
  113. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/Makefile.in +502 -0
  114. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/README +90 -0
  115. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.c +525 -0
  116. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_imageiter.h +64 -0
  117. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirread.c +1131 -0
  118. data/vendor/gitlab.com/libtiff/libtiff/contrib/pds/tif_pdsdirwrite.c +971 -0
  119. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/.cvsignore +2 -0
  120. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/CMakeLists.txt +28 -0
  121. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.am +30 -0
  122. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/Makefile.in +500 -0
  123. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/README +10 -0
  124. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/ras2tif.c +254 -0
  125. data/vendor/gitlab.com/libtiff/libtiff/contrib/ras/tif2ras.c +344 -0
  126. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/.cvsignore +2 -0
  127. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/CMakeLists.txt +28 -0
  128. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.am +30 -0
  129. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/Makefile.in +500 -0
  130. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/README +30 -0
  131. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.cpp +238 -0
  132. data/vendor/gitlab.com/libtiff/libtiff/contrib/stream/tiffstream.h +70 -0
  133. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/.cvsignore +2 -0
  134. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/CMakeLists.txt +32 -0
  135. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.am +33 -0
  136. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/Makefile.in +503 -0
  137. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/README +132 -0
  138. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/listtif.c +39 -0
  139. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/maketif.c +77 -0
  140. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtif_dir.c +350 -0
  141. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffio.h +59 -0
  142. data/vendor/gitlab.com/libtiff/libtiff/contrib/tags/xtiffiop.h +72 -0
  143. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/.cvsignore +2 -0
  144. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/CMakeLists.txt +30 -0
  145. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.am +32 -0
  146. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.in +502 -0
  147. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Makefile.w95 +134 -0
  148. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.Tiffile +31 -0
  149. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/README.tiff2dib +51 -0
  150. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/Tiffile.cpp +449 -0
  151. data/vendor/gitlab.com/libtiff/libtiff/contrib/win_dib/tiff2dib.c +379 -0
  152. data/vendor/gitlab.com/libtiff/libtiff/html/.cvsignore +5 -0
  153. data/vendor/gitlab.com/libtiff/libtiff/html/BigTIFFProposal.html +99 -0
  154. data/vendor/gitlab.com/libtiff/libtiff/html/CMakeLists.txt +87 -0
  155. data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.am +96 -0
  156. data/vendor/gitlab.com/libtiff/libtiff/html/Makefile.in +798 -0
  157. data/vendor/gitlab.com/libtiff/libtiff/html/TIFFTechNote2.html +707 -0
  158. data/vendor/gitlab.com/libtiff/libtiff/html/addingtags.html +292 -0
  159. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffdesign.html +80 -0
  160. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr.html +77 -0
  161. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/esri.png +0 -0
  162. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/leica.png +0 -0
  163. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/safe.png +0 -0
  164. data/vendor/gitlab.com/libtiff/libtiff/html/bigtiffpr_images/weogeo.png +0 -0
  165. data/vendor/gitlab.com/libtiff/libtiff/html/bugs.html +61 -0
  166. data/vendor/gitlab.com/libtiff/libtiff/html/build.html +737 -0
  167. data/vendor/gitlab.com/libtiff/libtiff/html/contrib.html +209 -0
  168. data/vendor/gitlab.com/libtiff/libtiff/html/document.html +52 -0
  169. data/vendor/gitlab.com/libtiff/libtiff/html/images.html +41 -0
  170. data/vendor/gitlab.com/libtiff/libtiff/html/images/.cvsignore +2 -0
  171. data/vendor/gitlab.com/libtiff/libtiff/html/images/CMakeLists.txt +46 -0
  172. data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.am +49 -0
  173. data/vendor/gitlab.com/libtiff/libtiff/html/images/Makefile.in +572 -0
  174. data/vendor/gitlab.com/libtiff/libtiff/html/images/back.gif +0 -0
  175. data/vendor/gitlab.com/libtiff/libtiff/html/images/bali.jpg +0 -0
  176. data/vendor/gitlab.com/libtiff/libtiff/html/images/cat.gif +0 -0
  177. data/vendor/gitlab.com/libtiff/libtiff/html/images/cover.jpg +0 -0
  178. data/vendor/gitlab.com/libtiff/libtiff/html/images/cramps.gif +0 -0
  179. data/vendor/gitlab.com/libtiff/libtiff/html/images/dave.gif +0 -0
  180. data/vendor/gitlab.com/libtiff/libtiff/html/images/info.gif +0 -0
  181. data/vendor/gitlab.com/libtiff/libtiff/html/images/jello.jpg +0 -0
  182. data/vendor/gitlab.com/libtiff/libtiff/html/images/jim.gif +0 -0
  183. data/vendor/gitlab.com/libtiff/libtiff/html/images/note.gif +0 -0
  184. data/vendor/gitlab.com/libtiff/libtiff/html/images/oxford.gif +0 -0
  185. data/vendor/gitlab.com/libtiff/libtiff/html/images/quad.jpg +0 -0
  186. data/vendor/gitlab.com/libtiff/libtiff/html/images/ring.gif +0 -0
  187. data/vendor/gitlab.com/libtiff/libtiff/html/images/smallliz.jpg +0 -0
  188. data/vendor/gitlab.com/libtiff/libtiff/html/images/strike.gif +0 -0
  189. data/vendor/gitlab.com/libtiff/libtiff/html/images/warning.gif +0 -0
  190. data/vendor/gitlab.com/libtiff/libtiff/html/index.html +122 -0
  191. data/vendor/gitlab.com/libtiff/libtiff/html/internals.html +572 -0
  192. data/vendor/gitlab.com/libtiff/libtiff/html/intro.html +68 -0
  193. data/vendor/gitlab.com/libtiff/libtiff/html/libtiff.html +747 -0
  194. data/vendor/gitlab.com/libtiff/libtiff/html/man/.cvsignore +2 -0
  195. data/vendor/gitlab.com/libtiff/libtiff/html/man/CMakeLists.txt +108 -0
  196. data/vendor/gitlab.com/libtiff/libtiff/html/man/HtmlDoc.cmake +50 -0
  197. data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.am +122 -0
  198. data/vendor/gitlab.com/libtiff/libtiff/html/man/Makefile.in +642 -0
  199. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFClose.3tiff.html +87 -0
  200. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFDataWidth.3tiff.html +98 -0
  201. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFError.3tiff.html +106 -0
  202. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldDataType.3tiff.html +89 -0
  203. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldName.3tiff.html +86 -0
  204. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldPassCount.3tiff.html +98 -0
  205. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldReadCount.3tiff.html +101 -0
  206. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldTag.3tiff.html +88 -0
  207. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFieldWriteCount.3tiff.html +108 -0
  208. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFFlush.3tiff.html +113 -0
  209. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFGetField.3tiff.html +1969 -0
  210. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFOpen.3tiff.html +421 -0
  211. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFPrintDirectory.3tiff.html +225 -0
  212. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFRGBAImage.3tiff.html +319 -0
  213. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadDirectory.3tiff.html +218 -0
  214. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedStrip.3tiff.html +133 -0
  215. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadEncodedTile.3tiff.html +130 -0
  216. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAImage.3tiff.html +301 -0
  217. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBAStrip.3tiff.html +208 -0
  218. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRGBATile.3tiff.html +261 -0
  219. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawStrip.3tiff.html +109 -0
  220. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadRawTile.3tiff.html +111 -0
  221. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadScanline.3tiff.html +157 -0
  222. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFReadTile.3tiff.html +133 -0
  223. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetDirectory.3tiff.html +122 -0
  224. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFSetField.3tiff.html +1865 -0
  225. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWarning.3tiff.html +108 -0
  226. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteDirectory.3tiff.html +176 -0
  227. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedStrip.3tiff.html +153 -0
  228. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteEncodedTile.3tiff.html +147 -0
  229. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawStrip.3tiff.html +144 -0
  230. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteRawTile.3tiff.html +128 -0
  231. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteScanline.3tiff.html +206 -0
  232. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFWriteTile.3tiff.html +115 -0
  233. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFbuffer.3tiff.html +116 -0
  234. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcodec.3tiff.html +116 -0
  235. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFcolor.3tiff.html +975 -0
  236. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFmemory.3tiff.html +110 -0
  237. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFquery.3tiff.html +148 -0
  238. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFsize.3tiff.html +95 -0
  239. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFstrip.3tiff.html +129 -0
  240. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFswab.3tiff.html +110 -0
  241. data/vendor/gitlab.com/libtiff/libtiff/html/man/TIFFtile.3tiff.html +141 -0
  242. data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2ps.1.html +252 -0
  243. data/vendor/gitlab.com/libtiff/libtiff/html/man/fax2tiff.1.html +607 -0
  244. data/vendor/gitlab.com/libtiff/libtiff/html/man/index.html +64 -0
  245. data/vendor/gitlab.com/libtiff/libtiff/html/man/libtiff.3tiff.html +1150 -0
  246. data/vendor/gitlab.com/libtiff/libtiff/html/man/pal2rgb.1.html +189 -0
  247. data/vendor/gitlab.com/libtiff/libtiff/html/man/ppm2tiff.1.html +141 -0
  248. data/vendor/gitlab.com/libtiff/libtiff/html/man/raw2tiff.1.html +510 -0
  249. data/vendor/gitlab.com/libtiff/libtiff/html/man/rgb2ycbcr.1.html +155 -0
  250. data/vendor/gitlab.com/libtiff/libtiff/html/man/thumbnail.1.html +148 -0
  251. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2bw.1.html +161 -0
  252. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2pdf.1.html +609 -0
  253. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2ps.1.html +639 -0
  254. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiff2rgba.1.html +162 -0
  255. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcmp.1.html +156 -0
  256. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcp.1.html +569 -0
  257. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffcrop.1.html +684 -0
  258. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdither.1.html +196 -0
  259. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffdump.1.html +145 -0
  260. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffgt.1.html +551 -0
  261. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffinfo.1.html +196 -0
  262. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffmedian.1.html +183 -0
  263. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffset.1.html +176 -0
  264. data/vendor/gitlab.com/libtiff/libtiff/html/man/tiffsplit.1.html +102 -0
  265. data/vendor/gitlab.com/libtiff/libtiff/html/misc.html +117 -0
  266. data/vendor/gitlab.com/libtiff/libtiff/html/support.html +655 -0
  267. data/vendor/gitlab.com/libtiff/libtiff/html/tools.html +137 -0
  268. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta007.html +112 -0
  269. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta016.html +122 -0
  270. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta018.html +84 -0
  271. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta024.html +139 -0
  272. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta028.html +146 -0
  273. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta029.html +86 -0
  274. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta031.html +94 -0
  275. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta032.html +90 -0
  276. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta033.html +82 -0
  277. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta034.html +68 -0
  278. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta035.html +63 -0
  279. data/vendor/gitlab.com/libtiff/libtiff/html/v3.4beta036.html +117 -0
  280. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.1.html +75 -0
  281. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.2.html +108 -0
  282. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.3.html +132 -0
  283. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.4.html +88 -0
  284. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.5.html +155 -0
  285. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.6-beta.html +185 -0
  286. data/vendor/gitlab.com/libtiff/libtiff/html/v3.5.7.html +259 -0
  287. data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.0.html +434 -0
  288. data/vendor/gitlab.com/libtiff/libtiff/html/v3.6.1.html +199 -0
  289. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0.html +144 -0
  290. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0alpha.html +249 -0
  291. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta.html +162 -0
  292. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.0beta2.html +131 -0
  293. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.1.html +233 -0
  294. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.2.html +222 -0
  295. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.3.html +230 -0
  296. data/vendor/gitlab.com/libtiff/libtiff/html/v3.7.4.html +133 -0
  297. data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.0.html +199 -0
  298. data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.1.html +217 -0
  299. data/vendor/gitlab.com/libtiff/libtiff/html/v3.8.2.html +137 -0
  300. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0.html +261 -0
  301. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.0beta.html +304 -0
  302. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.1.html +115 -0
  303. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.2.html +122 -0
  304. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.3.html +160 -0
  305. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.4.html +125 -0
  306. data/vendor/gitlab.com/libtiff/libtiff/html/v3.9.5.html +270 -0
  307. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.0.html +269 -0
  308. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.1.html +113 -0
  309. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.2.html +118 -0
  310. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.3.html +125 -0
  311. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4.html +274 -0
  312. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.4beta.html +291 -0
  313. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.5.html +148 -0
  314. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.6.html +139 -0
  315. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.7.html +411 -0
  316. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.8.html +445 -0
  317. data/vendor/gitlab.com/libtiff/libtiff/html/v4.0.9.html +373 -0
  318. data/vendor/gitlab.com/libtiff/libtiff/libtiff-4.pc.in +11 -0
  319. data/vendor/gitlab.com/libtiff/libtiff/libtiff/.cvsignore +22 -0
  320. data/vendor/gitlab.com/libtiff/libtiff/libtiff/CMakeLists.txt +165 -0
  321. data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.am +154 -0
  322. data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.in +966 -0
  323. data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.lcc +129 -0
  324. data/vendor/gitlab.com/libtiff/libtiff/libtiff/Makefile.vc +102 -0
  325. data/vendor/gitlab.com/libtiff/libtiff/libtiff/SConstruct +73 -0
  326. data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.def +168 -0
  327. data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiff.map +4 -0
  328. data/vendor/gitlab.com/libtiff/libtiff/libtiff/libtiffxx.map +4 -0
  329. data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkg3states.c +454 -0
  330. data/vendor/gitlab.com/libtiff/libtiff/libtiff/mkspans.c +82 -0
  331. data/vendor/gitlab.com/libtiff/libtiff/libtiff/t4.h +292 -0
  332. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_aux.c +376 -0
  333. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_close.c +140 -0
  334. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_codec.c +165 -0
  335. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_color.c +309 -0
  336. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_compress.c +304 -0
  337. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h-vms +46 -0
  338. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.cmake.in +261 -0
  339. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.h.in +410 -0
  340. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.vc.h +137 -0
  341. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_config.wince.h +71 -0
  342. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.c +1767 -0
  343. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dir.h +309 -0
  344. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirinfo.c +1070 -0
  345. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirread.c +5803 -0
  346. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dirwrite.c +3024 -0
  347. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_dumpmode.c +143 -0
  348. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_error.c +88 -0
  349. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_extension.c +118 -0
  350. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.c +1648 -0
  351. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3.h +540 -0
  352. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_fax3sm.c +1260 -0
  353. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_flush.c +118 -0
  354. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_getimage.c +3048 -0
  355. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jbig.c +214 -0
  356. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg.c +2601 -0
  357. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_jpeg_12.c +69 -0
  358. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_luv.c +1765 -0
  359. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzma.c +495 -0
  360. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_lzw.c +1218 -0
  361. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_next.c +189 -0
  362. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_ojpeg.c +2563 -0
  363. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_open.c +725 -0
  364. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_packbits.c +311 -0
  365. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_pixarlog.c +1485 -0
  366. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.c +881 -0
  367. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_predict.h +79 -0
  368. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_print.c +722 -0
  369. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_read.c +1572 -0
  370. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_stream.cxx +430 -0
  371. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_strip.c +389 -0
  372. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_swab.c +312 -0
  373. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_thunder.c +208 -0
  374. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_tile.c +322 -0
  375. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_unix.c +386 -0
  376. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_version.c +40 -0
  377. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_vms.c +611 -0
  378. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_warning.c +89 -0
  379. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_win32.c +476 -0
  380. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_wince.c +293 -0
  381. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_write.c +834 -0
  382. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tif_zip.c +476 -0
  383. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiff.h +681 -0
  384. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h-vms +99 -0
  385. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.cmake.in +130 -0
  386. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.h.in +127 -0
  387. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.vc.h +161 -0
  388. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffconf.wince.h +121 -0
  389. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.h +560 -0
  390. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffio.hxx +49 -0
  391. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffiop.h +445 -0
  392. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h +9 -0
  393. data/vendor/gitlab.com/libtiff/libtiff/libtiff/tiffvers.h.in +9 -0
  394. data/vendor/gitlab.com/libtiff/libtiff/libtiff/uvcode.h +180 -0
  395. data/vendor/gitlab.com/libtiff/libtiff/m4/acinclude.m4 +851 -0
  396. data/vendor/gitlab.com/libtiff/libtiff/m4/ice_find_athena.m4 +187 -0
  397. data/vendor/gitlab.com/libtiff/libtiff/m4/libtool.m4 +8388 -0
  398. data/vendor/gitlab.com/libtiff/libtiff/m4/ltoptions.m4 +437 -0
  399. data/vendor/gitlab.com/libtiff/libtiff/m4/ltsugar.m4 +124 -0
  400. data/vendor/gitlab.com/libtiff/libtiff/m4/ltversion.m4 +23 -0
  401. data/vendor/gitlab.com/libtiff/libtiff/m4/lt~obsolete.m4 +99 -0
  402. data/vendor/gitlab.com/libtiff/libtiff/man/.cvsignore +3 -0
  403. data/vendor/gitlab.com/libtiff/libtiff/man/CMakeLists.txt +97 -0
  404. data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.am +94 -0
  405. data/vendor/gitlab.com/libtiff/libtiff/man/Makefile.in +684 -0
  406. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFClose.3tiff +53 -0
  407. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFDataWidth.3tiff +74 -0
  408. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFError.3tiff +69 -0
  409. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldDataType.3tiff +53 -0
  410. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldName.3tiff +52 -0
  411. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldPassCount.3tiff +73 -0
  412. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldReadCount.3tiff +77 -0
  413. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldTag.3tiff +56 -0
  414. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFieldWriteCount.3tiff +88 -0
  415. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFFlush.3tiff +64 -0
  416. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFGetField.3tiff +229 -0
  417. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFOpen.3tiff +279 -0
  418. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFPrintDirectory.3tiff +70 -0
  419. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFRGBAImage.3tiff +286 -0
  420. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadDirectory.3tiff +164 -0
  421. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedStrip.3tiff +78 -0
  422. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadEncodedTile.3tiff +76 -0
  423. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAImage.3tiff +218 -0
  424. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBAStrip.3tiff +170 -0
  425. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRGBATile.3tiff +171 -0
  426. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawStrip.3tiff +64 -0
  427. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadRawTile.3tiff +65 -0
  428. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadScanline.3tiff +94 -0
  429. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFReadTile.3tiff +84 -0
  430. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetDirectory.3tiff +79 -0
  431. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFSetField.3tiff +217 -0
  432. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWarning.3tiff +70 -0
  433. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteDirectory.3tiff +138 -0
  434. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedStrip.3tiff +102 -0
  435. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteEncodedTile.3tiff +96 -0
  436. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawStrip.3tiff +96 -0
  437. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteRawTile.3tiff +84 -0
  438. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteScanline.3tiff +154 -0
  439. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFWriteTile.3tiff +77 -0
  440. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFbuffer.3tiff +77 -0
  441. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcodec.3tiff +82 -0
  442. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFcolor.3tiff +268 -0
  443. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFmemory.3tiff +90 -0
  444. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFquery.3tiff +142 -0
  445. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFsize.3tiff +59 -0
  446. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFstrip.3tiff +99 -0
  447. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFswab.3tiff +80 -0
  448. data/vendor/gitlab.com/libtiff/libtiff/man/TIFFtile.3tiff +131 -0
  449. data/vendor/gitlab.com/libtiff/libtiff/man/fax2ps.1 +159 -0
  450. data/vendor/gitlab.com/libtiff/libtiff/man/fax2tiff.1 +286 -0
  451. data/vendor/gitlab.com/libtiff/libtiff/man/libtiff.3tiff +545 -0
  452. data/vendor/gitlab.com/libtiff/libtiff/man/pal2rgb.1 +111 -0
  453. data/vendor/gitlab.com/libtiff/libtiff/man/ppm2tiff.1 +105 -0
  454. data/vendor/gitlab.com/libtiff/libtiff/man/raw2tiff.1 +196 -0
  455. data/vendor/gitlab.com/libtiff/libtiff/man/rgb2ycbcr.1 +99 -0
  456. data/vendor/gitlab.com/libtiff/libtiff/man/thumbnail.1 +90 -0
  457. data/vendor/gitlab.com/libtiff/libtiff/man/tiff2bw.1 +94 -0
  458. data/vendor/gitlab.com/libtiff/libtiff/man/tiff2pdf.1 +254 -0
  459. data/vendor/gitlab.com/libtiff/libtiff/man/tiff2ps.1 +294 -0
  460. data/vendor/gitlab.com/libtiff/libtiff/man/tiff2rgba.1 +97 -0
  461. data/vendor/gitlab.com/libtiff/libtiff/man/tiffcmp.1 +87 -0
  462. data/vendor/gitlab.com/libtiff/libtiff/man/tiffcp.1 +317 -0
  463. data/vendor/gitlab.com/libtiff/libtiff/man/tiffcrop.1 +571 -0
  464. data/vendor/gitlab.com/libtiff/libtiff/man/tiffdither.1 +135 -0
  465. data/vendor/gitlab.com/libtiff/libtiff/man/tiffdump.1 +81 -0
  466. data/vendor/gitlab.com/libtiff/libtiff/man/tiffgt.1 +245 -0
  467. data/vendor/gitlab.com/libtiff/libtiff/man/tiffinfo.1 +88 -0
  468. data/vendor/gitlab.com/libtiff/libtiff/man/tiffmedian.1 +112 -0
  469. data/vendor/gitlab.com/libtiff/libtiff/man/tiffset.1 +99 -0
  470. data/vendor/gitlab.com/libtiff/libtiff/man/tiffsplit.1 +69 -0
  471. data/vendor/gitlab.com/libtiff/libtiff/nmake.opt +229 -0
  472. data/vendor/gitlab.com/libtiff/libtiff/port/.cvsignore +7 -0
  473. data/vendor/gitlab.com/libtiff/libtiff/port/CMakeLists.txt +60 -0
  474. data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.am +35 -0
  475. data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.in +656 -0
  476. data/vendor/gitlab.com/libtiff/libtiff/port/Makefile.vc +44 -0
  477. data/vendor/gitlab.com/libtiff/libtiff/port/dummy.c +12 -0
  478. data/vendor/gitlab.com/libtiff/libtiff/port/getopt.c +125 -0
  479. data/vendor/gitlab.com/libtiff/libtiff/port/lfind.c +62 -0
  480. data/vendor/gitlab.com/libtiff/libtiff/port/libport.h +60 -0
  481. data/vendor/gitlab.com/libtiff/libtiff/port/snprintf.c +38 -0
  482. data/vendor/gitlab.com/libtiff/libtiff/port/strcasecmp.c +51 -0
  483. data/vendor/gitlab.com/libtiff/libtiff/port/strtoul.c +109 -0
  484. data/vendor/gitlab.com/libtiff/libtiff/port/strtoull.c +116 -0
  485. data/vendor/gitlab.com/libtiff/libtiff/test/.cvsignore +12 -0
  486. data/vendor/gitlab.com/libtiff/libtiff/test/CMakeLists.txt +382 -0
  487. data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.am +334 -0
  488. data/vendor/gitlab.com/libtiff/libtiff/test/Makefile.in +1987 -0
  489. data/vendor/gitlab.com/libtiff/libtiff/test/TiffSplitTest.cmake +34 -0
  490. data/vendor/gitlab.com/libtiff/libtiff/test/TiffTest.cmake +63 -0
  491. data/vendor/gitlab.com/libtiff/libtiff/test/TiffTestCommon.cmake +108 -0
  492. data/vendor/gitlab.com/libtiff/libtiff/test/ascii_tag.c +177 -0
  493. data/vendor/gitlab.com/libtiff/libtiff/test/check_tag.c +91 -0
  494. data/vendor/gitlab.com/libtiff/libtiff/test/common.sh +122 -0
  495. data/vendor/gitlab.com/libtiff/libtiff/test/custom_dir.c +247 -0
  496. data/vendor/gitlab.com/libtiff/libtiff/test/images/README.txt +29 -0
  497. data/vendor/gitlab.com/libtiff/libtiff/test/images/logluv-3c-16b.tiff +0 -0
  498. data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-16b.tiff +0 -0
  499. data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.pgm +0 -0
  500. data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-1c-8b.tiff +0 -0
  501. data/vendor/gitlab.com/libtiff/libtiff/test/images/minisblack-2c-8b-alpha.tiff +0 -0
  502. data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.pbm +0 -0
  503. data/vendor/gitlab.com/libtiff/libtiff/test/images/miniswhite-1c-1b.tiff +0 -0
  504. data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-1b.tiff +0 -0
  505. data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-4b.tiff +0 -0
  506. data/vendor/gitlab.com/libtiff/libtiff/test/images/palette-1c-8b.tiff +0 -0
  507. data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-lzw-compat.tiff +0 -0
  508. data/vendor/gitlab.com/libtiff/libtiff/test/images/quad-tile.jpg.tiff +0 -0
  509. data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-16b.tiff +0 -0
  510. data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.ppm +0 -0
  511. data/vendor/gitlab.com/libtiff/libtiff/test/images/rgb-3c-8b.tiff +0 -0
  512. data/vendor/gitlab.com/libtiff/libtiff/test/long_tag.c +156 -0
  513. data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pbm.sh +7 -0
  514. data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_pgm.sh +7 -0
  515. data/vendor/gitlab.com/libtiff/libtiff/test/ppm2tiff_ppm.sh +7 -0
  516. data/vendor/gitlab.com/libtiff/libtiff/test/raw_decode.c +304 -0
  517. data/vendor/gitlab.com/libtiff/libtiff/test/rewrite_tag.c +344 -0
  518. data/vendor/gitlab.com/libtiff/libtiff/test/short_tag.c +205 -0
  519. data/vendor/gitlab.com/libtiff/libtiff/test/strip.c +290 -0
  520. data/vendor/gitlab.com/libtiff/libtiff/test/strip_rw.c +157 -0
  521. data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.c +829 -0
  522. data/vendor/gitlab.com/libtiff/libtiff/test/test_arrays.h +63 -0
  523. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-palette-1c-8b.sh +7 -0
  524. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-quad-lzw-compat.sh +7 -0
  525. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2bw-rgb-3c-8b.sh +7 -0
  526. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2pdf.sh +6 -0
  527. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-EPS1.sh +6 -0
  528. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS1.sh +6 -0
  529. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS2.sh +6 -0
  530. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2ps-PS3.sh +6 -0
  531. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-logluv-3c-16b.sh +7 -0
  532. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-16b.sh +7 -0
  533. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-1c-8b.sh +7 -0
  534. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-minisblack-2c-8b-alpha.sh +7 -0
  535. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-miniswhite-1c-1b.sh +7 -0
  536. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-1b.sh +7 -0
  537. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-4b.sh +7 -0
  538. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-palette-1c-8b.sh +7 -0
  539. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-quad-tile.jpg.sh +7 -0
  540. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-16b.sh +7 -0
  541. data/vendor/gitlab.com/libtiff/libtiff/test/tiff2rgba-rgb-3c-8b.sh +7 -0
  542. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d-fill.sh +7 -0
  543. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-1d.sh +6 -0
  544. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d-fill.sh +7 -0
  545. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3-2d.sh +6 -0
  546. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g3.sh +6 -0
  547. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-g4.sh +6 -0
  548. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-logluv.sh +7 -0
  549. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-lzw-compat.sh +6 -0
  550. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split-join.sh +16 -0
  551. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-split.sh +13 -0
  552. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcp-thumbnail.sh +10 -0
  553. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-logluv-3c-16b.sh +7 -0
  554. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-16b.sh +7 -0
  555. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-1c-8b.sh +7 -0
  556. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-minisblack-2c-8b-alpha.sh +7 -0
  557. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-miniswhite-1c-1b.sh +7 -0
  558. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-1b.sh +7 -0
  559. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-4b.sh +7 -0
  560. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-palette-1c-8b.sh +7 -0
  561. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-quad-tile.jpg.sh +7 -0
  562. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-16b.sh +7 -0
  563. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-R90-rgb-3c-8b.sh +7 -0
  564. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-logluv-3c-16b.sh +7 -0
  565. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-16b.sh +7 -0
  566. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-1c-8b.sh +7 -0
  567. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh +7 -0
  568. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-miniswhite-1c-1b.sh +7 -0
  569. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-1b.sh +7 -0
  570. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-4b.sh +7 -0
  571. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-palette-1c-8b.sh +7 -0
  572. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-quad-tile.jpg.sh +7 -0
  573. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-16b.sh +7 -0
  574. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-doubleflip-rgb-3c-8b.sh +7 -0
  575. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-logluv-3c-16b.sh +7 -0
  576. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-16b.sh +7 -0
  577. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-1c-8b.sh +7 -0
  578. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-minisblack-2c-8b-alpha.sh +7 -0
  579. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-miniswhite-1c-1b.sh +7 -0
  580. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-1b.sh +7 -0
  581. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-4b.sh +7 -0
  582. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-palette-1c-8b.sh +7 -0
  583. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-quad-tile.jpg.sh +7 -0
  584. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-16b.sh +7 -0
  585. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extract-rgb-3c-8b.sh +7 -0
  586. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-logluv-3c-16b.sh +7 -0
  587. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-16b.sh +7 -0
  588. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-1c-8b.sh +7 -0
  589. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-minisblack-2c-8b-alpha.sh +7 -0
  590. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-miniswhite-1c-1b.sh +7 -0
  591. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-1b.sh +7 -0
  592. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-4b.sh +7 -0
  593. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-palette-1c-8b.sh +7 -0
  594. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-quad-tile.jpg.sh +7 -0
  595. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-16b.sh +7 -0
  596. data/vendor/gitlab.com/libtiff/libtiff/test/tiffcrop-extractz14-rgb-3c-8b.sh +7 -0
  597. data/vendor/gitlab.com/libtiff/libtiff/test/tiffdump.sh +6 -0
  598. data/vendor/gitlab.com/libtiff/libtiff/test/tiffinfo.sh +6 -0
  599. data/vendor/gitlab.com/libtiff/libtiff/test/tifftest.h +42 -0
  600. data/vendor/gitlab.com/libtiff/libtiff/tiff.spec +68 -0
  601. data/vendor/gitlab.com/libtiff/libtiff/tools/.cvsignore +27 -0
  602. data/vendor/gitlab.com/libtiff/libtiff/tools/CMakeLists.txt +125 -0
  603. data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.am +138 -0
  604. data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.in +955 -0
  605. data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.lcc +133 -0
  606. data/vendor/gitlab.com/libtiff/libtiff/tools/Makefile.vc +52 -0
  607. data/vendor/gitlab.com/libtiff/libtiff/tools/fax2ps.c +463 -0
  608. data/vendor/gitlab.com/libtiff/libtiff/tools/fax2tiff.c +491 -0
  609. data/vendor/gitlab.com/libtiff/libtiff/tools/pal2rgb.c +438 -0
  610. data/vendor/gitlab.com/libtiff/libtiff/tools/ppm2tiff.c +397 -0
  611. data/vendor/gitlab.com/libtiff/libtiff/tools/raw2tiff.c +690 -0
  612. data/vendor/gitlab.com/libtiff/libtiff/tools/rgb2ycbcr.c +397 -0
  613. data/vendor/gitlab.com/libtiff/libtiff/tools/thumbnail.c +691 -0
  614. data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2bw.c +501 -0
  615. data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2pdf.c +5594 -0
  616. data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2ps.c +3106 -0
  617. data/vendor/gitlab.com/libtiff/libtiff/tools/tiff2rgba.c +569 -0
  618. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcmp.c +659 -0
  619. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcp.c +1913 -0
  620. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffcrop.c +9231 -0
  621. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdither.c +347 -0
  622. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffdump.c +889 -0
  623. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffgt.c +486 -0
  624. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfo.c +488 -0
  625. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffinfoce.c +472 -0
  626. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffmedian.c +918 -0
  627. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffset.c +356 -0
  628. data/vendor/gitlab.com/libtiff/libtiff/tools/tiffsplit.c +305 -0
  629. metadata +692 -0
@@ -0,0 +1,334 @@
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
+ AUTOMAKE_OPTIONS = 1.12 color-tests parallel-tests foreign
27
+
28
+ LIBTIFF = $(top_builddir)/libtiff/libtiff.la
29
+
30
+ # Environment parameters to be used during tests
31
+ TESTS_ENVIRONMENT = \
32
+ MAKE="$(MAKE)" \
33
+ MAKEFLAGS="$(MAKEFLAGS)" \
34
+ MEMCHECK="$(MEMCHECK)"
35
+
36
+ EXTRA_DIST = \
37
+ $(TESTSCRIPTS) \
38
+ $(IMAGES_EXTRA_DIST) \
39
+ CMakeLists.txt \
40
+ common.sh \
41
+ TiffSplitTest.cmake \
42
+ TiffTestCommon.cmake \
43
+ TiffTest.cmake
44
+
45
+ # All of the tests to execute via 'make check'
46
+ TESTS = $(check_PROGRAMS) $(TESTSCRIPTS)
47
+
48
+ # Tests which are expected to fail
49
+ XFAIL_TESTS =
50
+
51
+ # Extra files which should be cleaned by 'make clean'
52
+ CLEANFILES = test_packbits.tif o-*
53
+
54
+ if HAVE_JPEG
55
+ JPEG_DEPENDENT_CHECK_PROG=raw_decode
56
+ JPEG_DEPENDENT_TESTSCRIPTS=\
57
+ tiff2rgba-quad-tile.jpg.sh
58
+ else
59
+ JPEG_DEPENDENT_CHECK_PROG=
60
+ JPEG_DEPENDENT_TESTSCRIPTS=
61
+ endif
62
+
63
+ # Executable programs which need to be built in order to support tests
64
+ check_PROGRAMS = \
65
+ ascii_tag long_tag short_tag strip_rw rewrite custom_dir \
66
+ $(JPEG_DEPENDENT_CHECK_PROG)
67
+
68
+ # Test scripts to execute
69
+ TESTSCRIPTS = \
70
+ ppm2tiff_pbm.sh \
71
+ ppm2tiff_pgm.sh \
72
+ ppm2tiff_ppm.sh \
73
+ tiffcp-g3.sh \
74
+ tiffcp-g3-1d.sh \
75
+ tiffcp-g3-1d-fill.sh \
76
+ tiffcp-g3-2d.sh \
77
+ tiffcp-g3-2d-fill.sh \
78
+ tiffcp-g4.sh \
79
+ tiffcp-logluv.sh \
80
+ tiffcp-thumbnail.sh \
81
+ tiffcp-lzw-compat.sh \
82
+ tiffdump.sh \
83
+ tiffinfo.sh \
84
+ tiffcp-split.sh \
85
+ tiffcp-split-join.sh \
86
+ tiff2ps-PS1.sh \
87
+ tiff2ps-PS2.sh \
88
+ tiff2ps-PS3.sh \
89
+ tiff2ps-EPS1.sh \
90
+ tiff2pdf.sh \
91
+ tiffcrop-doubleflip-logluv-3c-16b.sh \
92
+ tiffcrop-doubleflip-minisblack-1c-16b.sh \
93
+ tiffcrop-doubleflip-minisblack-1c-8b.sh \
94
+ tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh \
95
+ tiffcrop-doubleflip-miniswhite-1c-1b.sh \
96
+ tiffcrop-doubleflip-palette-1c-1b.sh \
97
+ tiffcrop-doubleflip-palette-1c-4b.sh \
98
+ tiffcrop-doubleflip-palette-1c-8b.sh \
99
+ tiffcrop-doubleflip-rgb-3c-16b.sh \
100
+ tiffcrop-doubleflip-rgb-3c-8b.sh \
101
+ tiffcrop-extract-logluv-3c-16b.sh \
102
+ tiffcrop-extract-minisblack-1c-16b.sh \
103
+ tiffcrop-extract-minisblack-1c-8b.sh \
104
+ tiffcrop-extract-minisblack-2c-8b-alpha.sh \
105
+ tiffcrop-extract-miniswhite-1c-1b.sh \
106
+ tiffcrop-extract-palette-1c-1b.sh \
107
+ tiffcrop-extract-palette-1c-4b.sh \
108
+ tiffcrop-extract-palette-1c-8b.sh \
109
+ tiffcrop-extract-rgb-3c-16b.sh \
110
+ tiffcrop-extract-rgb-3c-8b.sh \
111
+ tiffcrop-extractz14-logluv-3c-16b.sh \
112
+ tiffcrop-extractz14-minisblack-1c-16b.sh \
113
+ tiffcrop-extractz14-minisblack-1c-8b.sh \
114
+ tiffcrop-extractz14-minisblack-2c-8b-alpha.sh \
115
+ tiffcrop-extractz14-miniswhite-1c-1b.sh \
116
+ tiffcrop-extractz14-palette-1c-1b.sh \
117
+ tiffcrop-extractz14-palette-1c-4b.sh \
118
+ tiffcrop-extractz14-palette-1c-8b.sh \
119
+ tiffcrop-extractz14-rgb-3c-16b.sh \
120
+ tiffcrop-extractz14-rgb-3c-8b.sh \
121
+ tiffcrop-R90-logluv-3c-16b.sh \
122
+ tiffcrop-R90-minisblack-1c-16b.sh \
123
+ tiffcrop-R90-minisblack-1c-8b.sh \
124
+ tiffcrop-R90-minisblack-2c-8b-alpha.sh \
125
+ tiffcrop-R90-miniswhite-1c-1b.sh \
126
+ tiffcrop-R90-palette-1c-1b.sh \
127
+ tiffcrop-R90-palette-1c-4b.sh \
128
+ tiffcrop-R90-palette-1c-8b.sh \
129
+ tiffcrop-R90-rgb-3c-16b.sh \
130
+ tiffcrop-R90-rgb-3c-8b.sh \
131
+ tiff2bw-palette-1c-8b.sh \
132
+ tiff2bw-quad-lzw-compat.sh \
133
+ tiff2bw-rgb-3c-8b.sh \
134
+ tiff2rgba-logluv-3c-16b.sh \
135
+ tiff2rgba-minisblack-1c-16b.sh \
136
+ tiff2rgba-minisblack-1c-8b.sh \
137
+ tiff2rgba-minisblack-2c-8b-alpha.sh \
138
+ tiff2rgba-miniswhite-1c-1b.sh \
139
+ tiff2rgba-palette-1c-1b.sh \
140
+ tiff2rgba-palette-1c-4b.sh \
141
+ tiff2rgba-palette-1c-8b.sh \
142
+ tiff2rgba-rgb-3c-16b.sh \
143
+ tiff2rgba-rgb-3c-8b.sh \
144
+ $(JPEG_DEPENDENT_TESTSCRIPTS)
145
+
146
+ # This list should contain all of the TIFF files in the 'images'
147
+ # subdirectory which are intended to be used as input images for
148
+ # tests. All of these files should use the extension ".tiff".
149
+ TIFFIMAGES = \
150
+ images/logluv-3c-16b.tiff \
151
+ images/minisblack-1c-16b.tiff \
152
+ images/minisblack-1c-8b.tiff \
153
+ images/minisblack-2c-8b-alpha.tiff \
154
+ images/miniswhite-1c-1b.tiff \
155
+ images/palette-1c-1b.tiff \
156
+ images/palette-1c-4b.tiff \
157
+ images/palette-1c-8b.tiff \
158
+ images/rgb-3c-16b.tiff \
159
+ images/rgb-3c-8b.tiff \
160
+ images/quad-tile.jpg.tiff \
161
+ images/quad-lzw-compat.tiff
162
+
163
+ PNMIMAGES = \
164
+ images/minisblack-1c-8b.pgm \
165
+ images/miniswhite-1c-1b.pbm \
166
+ images/rgb-3c-8b.ppm
167
+
168
+ # This list should include all of the files in the 'images'
169
+ # subdirectory which are intended to be distributed. This may include
170
+ # files which are not currently used by the tests.
171
+ IMAGES_EXTRA_DIST = \
172
+ images/README.txt \
173
+ $(PNMIMAGES) \
174
+ $(TIFFIMAGES)
175
+
176
+ noinst_HEADERS = tifftest.h
177
+
178
+ ascii_tag_SOURCES = ascii_tag.c
179
+ ascii_tag_LDADD = $(LIBTIFF)
180
+ long_tag_SOURCES = long_tag.c check_tag.c
181
+ long_tag_LDADD = $(LIBTIFF)
182
+ short_tag_SOURCES = short_tag.c check_tag.c
183
+ short_tag_LDADD = $(LIBTIFF)
184
+ strip_rw_SOURCES = strip_rw.c strip.c test_arrays.c test_arrays.h
185
+ strip_rw_LDADD = $(LIBTIFF)
186
+ rewrite_SOURCES = rewrite_tag.c
187
+ rewrite_LDADD = $(LIBTIFF)
188
+ raw_decode_SOURCES = raw_decode.c
189
+ raw_decode_LDADD = $(LIBTIFF)
190
+ custom_dir_SOURCES = custom_dir.c
191
+ custom_dir_LDADD = $(LIBTIFF)
192
+
193
+ AM_CPPFLAGS = -I$(top_srcdir)/libtiff
194
+
195
+ # memcheck: valgrind's memory access checker.
196
+ #
197
+ # The suppressions which come with valgrind are sometimes insufficient
198
+ # to handle certain system library aspects which may be reported and
199
+ # which are unrelated to libtiff. When first starting with a new
200
+ # system (or after a major system update), it is good to execute the
201
+ # test suite (known to already be passing!) like 'make memcheck
202
+ # VALGRIND_EXTRA_OPTS=--gen-suppressions=all' to create valgrind
203
+ # suppression entries in the test log. Make sure that none of the
204
+ # suppressions are due to libtiff itself. Tell valgrind about the
205
+ # suppressions by creating a .valgrindrc file with content like:
206
+ # --memcheck:suppressions=mysupp.supp
207
+ memcheck:
208
+ $(MAKE) MEMCHECK='valgrind --tool=memcheck --leak-check=full --read-var-info=yes \
209
+ --error-exitcode=2 --track-origins=yes --num-callers=12 \
210
+ --quiet $(VALGRIND_EXTRA_OPTS)' check
211
+
212
+ # ptrcheck: valgrind's experimental pointer checking tool.
213
+ ptrcheck:
214
+ $(MAKE) MEMCHECK='valgrind --tool=exp-ptrcheck --quiet $(VALGRIND_EXTRA_OPTS)' check
215
+
216
+ # tiff2bw is pretty lame so currently only the generated scripts
217
+ # tiff2bw-palette-1c-8b.sh, tiff2bw-quad-lzw-compat.sh, and
218
+ # tiff2bw-rgb-3c-8b.sh pass tests.
219
+ generate-tiff2bw-tests:
220
+ for file in $(TIFFIMAGES) ; \
221
+ do \
222
+ base=`basename $$file .tiff` ; \
223
+ testscript=$(srcdir)/tiff2bw-$$base.sh ; \
224
+ ( \
225
+ echo "#!/bin/sh" ; \
226
+ echo "# Generated file, master is Makefile.am" ; \
227
+ echo ". \$${srcdir:-.}/common.sh" ; \
228
+ echo "infile=\"\$$srcdir/$$file\"" ; \
229
+ echo "outfile=\"o-tiff2bw-$$base.tiff\"" ; \
230
+ echo "f_test_convert \"\$$TIFF2BW\" \$$infile \$$outfile" ; \
231
+ echo "f_tiffinfo_validate \$$outfile" ; \
232
+ ) > $$testscript ; \
233
+ chmod +x $$testscript ; \
234
+ done
235
+
236
+ generate-tiff2rgba-tests:
237
+ for file in $(TIFFIMAGES) ; \
238
+ do \
239
+ base=`basename $$file .tiff` ; \
240
+ testscript=$(srcdir)/tiff2rgba-$$base.sh ; \
241
+ ( \
242
+ echo "#!/bin/sh" ; \
243
+ echo "# Generated file, master is Makefile.am" ; \
244
+ echo ". \$${srcdir:-.}/common.sh" ; \
245
+ echo "infile=\"\$$srcdir/$$file\"" ; \
246
+ echo "outfile=\"o-tiff2rgba-$$base.tiff\"" ; \
247
+ echo "f_test_convert \"\$$TIFF2RGBA\" \$$infile \$$outfile" ; \
248
+ echo "f_tiffinfo_validate \$$outfile" ; \
249
+ ) > $$testscript ; \
250
+ chmod +x $$testscript ; \
251
+ done
252
+
253
+ # Test rotations
254
+ generate-tiffcrop-R90-tests:
255
+ for file in $(TIFFIMAGES) ; \
256
+ do \
257
+ base=`basename $$file .tiff` ; \
258
+ testscript=$(srcdir)/tiffcrop-R90-$$base.sh ; \
259
+ ( \
260
+ echo "#!/bin/sh" ; \
261
+ echo "# Generated file, master is Makefile.am" ; \
262
+ echo ". \$${srcdir:-.}/common.sh" ; \
263
+ echo "infile=\"\$$srcdir/$$file\"" ; \
264
+ echo "outfile=\"o-tiffcrop-R90-$$base.tiff\"" ; \
265
+ echo "f_test_convert \"\$$TIFFCROP -R90\" \$$infile \$$outfile" ; \
266
+ echo "f_tiffinfo_validate \$$outfile" ; \
267
+ ) > $$testscript ; \
268
+ chmod +x $$testscript ; \
269
+ done
270
+
271
+ # Test flip (mirror)
272
+ generate-tiffcrop-doubleflip-tests:
273
+ for file in $(TIFFIMAGES) ; \
274
+ do \
275
+ base=`basename $$file .tiff` ; \
276
+ testscript=$(srcdir)/tiffcrop-doubleflip-$$base.sh ; \
277
+ ( \
278
+ echo "#!/bin/sh" ; \
279
+ echo "# Generated file, master is Makefile.am" ; \
280
+ echo ". \$${srcdir:-.}/common.sh" ; \
281
+ echo "infile=\"\$$srcdir/$$file\"" ; \
282
+ echo "outfile=\"o-tiffcrop-doubleflip-$$base.tiff\"" ; \
283
+ echo "f_test_convert \"\$$TIFFCROP -F both\" \$$infile \$$outfile" ; \
284
+ echo "f_tiffinfo_validate \$$outfile" ; \
285
+ ) > $$testscript ; \
286
+ chmod +x $$testscript ; \
287
+ done
288
+
289
+ # Test extracting a section 100 pixels wide and 100 pixels high
290
+ generate-tiffcrop-extract-tests:
291
+ for file in $(TIFFIMAGES) ; \
292
+ do \
293
+ base=`basename $$file .tiff` ; \
294
+ testscript=$(srcdir)/tiffcrop-extract-$$base.sh ; \
295
+ ( \
296
+ echo "#!/bin/sh" ; \
297
+ echo "# Generated file, master is Makefile.am" ; \
298
+ echo ". \$${srcdir:-.}/common.sh" ; \
299
+ echo "infile=\"\$$srcdir/$$file\"" ; \
300
+ echo "outfile=\"o-tiffcrop-extract-$$base.tiff\"" ; \
301
+ echo "f_test_convert \"\$$TIFFCROP -U px -E top -X 60 -Y 60\" \$$infile \$$outfile" ; \
302
+ echo "f_tiffinfo_validate \$$outfile" ; \
303
+ ) > $$testscript ; \
304
+ chmod +x $$testscript ; \
305
+ done
306
+
307
+ # Test extracting the first and fourth quarters from the left side.
308
+ generate-tiffcrop-extractz14-tests:
309
+ for file in $(TIFFIMAGES) ; \
310
+ do \
311
+ base=`basename $$file .tiff` ; \
312
+ testscript=$(srcdir)/tiffcrop-extractz14-$$base.sh ; \
313
+ ( \
314
+ echo "#!/bin/sh" ; \
315
+ echo "# Generated file, master is Makefile.am" ; \
316
+ echo ". \$${srcdir:-.}/common.sh" ; \
317
+ echo "infile=\"\$$srcdir/$$file\"" ; \
318
+ echo "outfile=\"o-tiffcrop-extractz14-$$base.tiff\"" ; \
319
+ echo "f_test_convert \"\$$TIFFCROP -E left -Z1:4,2:4\" \$$infile \$$outfile" ; \
320
+ echo "f_tiffinfo_validate \$$outfile" ; \
321
+ ) > $$testscript ; \
322
+ chmod +x $$testscript ; \
323
+ done
324
+
325
+ generate-tiffcrop-tests: \
326
+ generate-tiffcrop-R90-tests \
327
+ generate-tiffcrop-doubleflip-tests \
328
+ generate-tiffcrop-extract-tests \
329
+ generate-tiffcrop-extractz14-tests
330
+
331
+ generate-tests: \
332
+ generate-tiff2bw-tests \
333
+ generate-tiff2rgba-tests \
334
+ generate-tiffcrop-tests
@@ -0,0 +1,1987 @@
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
+ TESTS = $(check_PROGRAMS) $(am__EXEEXT_3)
117
+ XFAIL_TESTS =
118
+ check_PROGRAMS = ascii_tag$(EXEEXT) long_tag$(EXEEXT) \
119
+ short_tag$(EXEEXT) strip_rw$(EXEEXT) rewrite$(EXEEXT) \
120
+ custom_dir$(EXEEXT) $(am__EXEEXT_1)
121
+ subdir = test
122
+ ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
123
+ am__aclocal_m4_deps = $(top_srcdir)/m4/acinclude.m4 \
124
+ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
125
+ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
126
+ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
127
+ am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
128
+ $(ACLOCAL_M4)
129
+ DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \
130
+ $(am__DIST_COMMON)
131
+ mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
132
+ CONFIG_HEADER = $(top_builddir)/libtiff/tif_config.h \
133
+ $(top_builddir)/libtiff/tiffconf.h
134
+ CONFIG_CLEAN_FILES =
135
+ CONFIG_CLEAN_VPATH_FILES =
136
+ @HAVE_JPEG_TRUE@am__EXEEXT_1 = raw_decode$(EXEEXT)
137
+ am_ascii_tag_OBJECTS = ascii_tag.$(OBJEXT)
138
+ ascii_tag_OBJECTS = $(am_ascii_tag_OBJECTS)
139
+ ascii_tag_DEPENDENCIES = $(LIBTIFF)
140
+ AM_V_lt = $(am__v_lt_@AM_V@)
141
+ am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
142
+ am__v_lt_0 = --silent
143
+ am__v_lt_1 =
144
+ am_custom_dir_OBJECTS = custom_dir.$(OBJEXT)
145
+ custom_dir_OBJECTS = $(am_custom_dir_OBJECTS)
146
+ custom_dir_DEPENDENCIES = $(LIBTIFF)
147
+ am_long_tag_OBJECTS = long_tag.$(OBJEXT) check_tag.$(OBJEXT)
148
+ long_tag_OBJECTS = $(am_long_tag_OBJECTS)
149
+ long_tag_DEPENDENCIES = $(LIBTIFF)
150
+ am_raw_decode_OBJECTS = raw_decode.$(OBJEXT)
151
+ raw_decode_OBJECTS = $(am_raw_decode_OBJECTS)
152
+ raw_decode_DEPENDENCIES = $(LIBTIFF)
153
+ am_rewrite_OBJECTS = rewrite_tag.$(OBJEXT)
154
+ rewrite_OBJECTS = $(am_rewrite_OBJECTS)
155
+ rewrite_DEPENDENCIES = $(LIBTIFF)
156
+ am_short_tag_OBJECTS = short_tag.$(OBJEXT) check_tag.$(OBJEXT)
157
+ short_tag_OBJECTS = $(am_short_tag_OBJECTS)
158
+ short_tag_DEPENDENCIES = $(LIBTIFF)
159
+ am_strip_rw_OBJECTS = strip_rw.$(OBJEXT) strip.$(OBJEXT) \
160
+ test_arrays.$(OBJEXT)
161
+ strip_rw_OBJECTS = $(am_strip_rw_OBJECTS)
162
+ strip_rw_DEPENDENCIES = $(LIBTIFF)
163
+ AM_V_P = $(am__v_P_@AM_V@)
164
+ am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
165
+ am__v_P_0 = false
166
+ am__v_P_1 = :
167
+ AM_V_GEN = $(am__v_GEN_@AM_V@)
168
+ am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
169
+ am__v_GEN_0 = @echo " GEN " $@;
170
+ am__v_GEN_1 =
171
+ AM_V_at = $(am__v_at_@AM_V@)
172
+ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
173
+ am__v_at_0 = @
174
+ am__v_at_1 =
175
+ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/libtiff
176
+ depcomp = $(SHELL) $(top_srcdir)/config/depcomp
177
+ am__depfiles_maybe = depfiles
178
+ am__mv = mv -f
179
+ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
180
+ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
181
+ LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
182
+ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
183
+ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
184
+ $(AM_CFLAGS) $(CFLAGS)
185
+ AM_V_CC = $(am__v_CC_@AM_V@)
186
+ am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
187
+ am__v_CC_0 = @echo " CC " $@;
188
+ am__v_CC_1 =
189
+ CCLD = $(CC)
190
+ LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
191
+ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
192
+ $(AM_LDFLAGS) $(LDFLAGS) -o $@
193
+ AM_V_CCLD = $(am__v_CCLD_@AM_V@)
194
+ am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
195
+ am__v_CCLD_0 = @echo " CCLD " $@;
196
+ am__v_CCLD_1 =
197
+ SOURCES = $(ascii_tag_SOURCES) $(custom_dir_SOURCES) \
198
+ $(long_tag_SOURCES) $(raw_decode_SOURCES) $(rewrite_SOURCES) \
199
+ $(short_tag_SOURCES) $(strip_rw_SOURCES)
200
+ DIST_SOURCES = $(ascii_tag_SOURCES) $(custom_dir_SOURCES) \
201
+ $(long_tag_SOURCES) $(raw_decode_SOURCES) $(rewrite_SOURCES) \
202
+ $(short_tag_SOURCES) $(strip_rw_SOURCES)
203
+ am__can_run_installinfo = \
204
+ case $$AM_UPDATE_INFO_DIR in \
205
+ n|no|NO) false;; \
206
+ *) (install-info --version) >/dev/null 2>&1;; \
207
+ esac
208
+ HEADERS = $(noinst_HEADERS)
209
+ am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
210
+ # Read a list of newline-separated strings from the standard input,
211
+ # and print each of them once, without duplicates. Input order is
212
+ # *not* preserved.
213
+ am__uniquify_input = $(AWK) '\
214
+ BEGIN { nonempty = 0; } \
215
+ { items[$$0] = 1; nonempty = 1; } \
216
+ END { if (nonempty) { for (i in items) print i; }; } \
217
+ '
218
+ # Make sure the list of sources is unique. This is necessary because,
219
+ # e.g., the same source file might be shared among _SOURCES variables
220
+ # for different programs/libraries.
221
+ am__define_uniq_tagged_files = \
222
+ list='$(am__tagged_files)'; \
223
+ unique=`for i in $$list; do \
224
+ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
225
+ done | $(am__uniquify_input)`
226
+ ETAGS = etags
227
+ CTAGS = ctags
228
+ am__tty_colors_dummy = \
229
+ mgn= red= grn= lgn= blu= brg= std=; \
230
+ am__color_tests=no
231
+ am__tty_colors = { \
232
+ $(am__tty_colors_dummy); \
233
+ if test "X$(AM_COLOR_TESTS)" = Xno; then \
234
+ am__color_tests=no; \
235
+ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
236
+ am__color_tests=yes; \
237
+ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
238
+ am__color_tests=yes; \
239
+ fi; \
240
+ if test $$am__color_tests = yes; then \
241
+ red=''; \
242
+ grn=''; \
243
+ lgn=''; \
244
+ blu=''; \
245
+ mgn=''; \
246
+ brg=''; \
247
+ std=''; \
248
+ fi; \
249
+ }
250
+ am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
251
+ am__vpath_adj = case $$p in \
252
+ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
253
+ *) f=$$p;; \
254
+ esac;
255
+ am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
256
+ am__install_max = 40
257
+ am__nobase_strip_setup = \
258
+ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
259
+ am__nobase_strip = \
260
+ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
261
+ am__nobase_list = $(am__nobase_strip_setup); \
262
+ for p in $$list; do echo "$$p $$p"; done | \
263
+ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
264
+ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
265
+ if (++n[$$2] == $(am__install_max)) \
266
+ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
267
+ END { for (dir in files) print dir, files[dir] }'
268
+ am__base_list = \
269
+ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
270
+ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
271
+ am__uninstall_files_from_dir = { \
272
+ test -z "$$files" \
273
+ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
274
+ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
275
+ $(am__cd) "$$dir" && rm -f $$files; }; \
276
+ }
277
+ am__recheck_rx = ^[ ]*:recheck:[ ]*
278
+ am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
279
+ am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
280
+ # A command that, given a newline-separated list of test names on the
281
+ # standard input, print the name of the tests that are to be re-run
282
+ # upon "make recheck".
283
+ am__list_recheck_tests = $(AWK) '{ \
284
+ recheck = 1; \
285
+ while ((rc = (getline line < ($$0 ".trs"))) != 0) \
286
+ { \
287
+ if (rc < 0) \
288
+ { \
289
+ if ((getline line2 < ($$0 ".log")) < 0) \
290
+ recheck = 0; \
291
+ break; \
292
+ } \
293
+ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
294
+ { \
295
+ recheck = 0; \
296
+ break; \
297
+ } \
298
+ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
299
+ { \
300
+ break; \
301
+ } \
302
+ }; \
303
+ if (recheck) \
304
+ print $$0; \
305
+ close ($$0 ".trs"); \
306
+ close ($$0 ".log"); \
307
+ }'
308
+ # A command that, given a newline-separated list of test names on the
309
+ # standard input, create the global log from their .trs and .log files.
310
+ am__create_global_log = $(AWK) ' \
311
+ function fatal(msg) \
312
+ { \
313
+ print "fatal: making $@: " msg | "cat >&2"; \
314
+ exit 1; \
315
+ } \
316
+ function rst_section(header) \
317
+ { \
318
+ print header; \
319
+ len = length(header); \
320
+ for (i = 1; i <= len; i = i + 1) \
321
+ printf "="; \
322
+ printf "\n\n"; \
323
+ } \
324
+ { \
325
+ copy_in_global_log = 1; \
326
+ global_test_result = "RUN"; \
327
+ while ((rc = (getline line < ($$0 ".trs"))) != 0) \
328
+ { \
329
+ if (rc < 0) \
330
+ fatal("failed to read from " $$0 ".trs"); \
331
+ if (line ~ /$(am__global_test_result_rx)/) \
332
+ { \
333
+ sub("$(am__global_test_result_rx)", "", line); \
334
+ sub("[ ]*$$", "", line); \
335
+ global_test_result = line; \
336
+ } \
337
+ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
338
+ copy_in_global_log = 0; \
339
+ }; \
340
+ if (copy_in_global_log) \
341
+ { \
342
+ rst_section(global_test_result ": " $$0); \
343
+ while ((rc = (getline line < ($$0 ".log"))) != 0) \
344
+ { \
345
+ if (rc < 0) \
346
+ fatal("failed to read from " $$0 ".log"); \
347
+ print line; \
348
+ }; \
349
+ printf "\n"; \
350
+ }; \
351
+ close ($$0 ".trs"); \
352
+ close ($$0 ".log"); \
353
+ }'
354
+ # Restructured Text title.
355
+ am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
356
+ # Solaris 10 'make', and several other traditional 'make' implementations,
357
+ # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
358
+ # by disabling -e (using the XSI extension "set +e") if it's set.
359
+ am__sh_e_setup = case $$- in *e*) set +e;; esac
360
+ # Default flags passed to test drivers.
361
+ am__common_driver_flags = \
362
+ --color-tests "$$am__color_tests" \
363
+ --enable-hard-errors "$$am__enable_hard_errors" \
364
+ --expect-failure "$$am__expect_failure"
365
+ # To be inserted before the command running the test. Creates the
366
+ # directory for the log if needed. Stores in $dir the directory
367
+ # containing $f, in $tst the test, in $log the log. Executes the
368
+ # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
369
+ # passes TESTS_ENVIRONMENT. Set up options for the wrapper that
370
+ # will run the test scripts (or their associated LOG_COMPILER, if
371
+ # thy have one).
372
+ am__check_pre = \
373
+ $(am__sh_e_setup); \
374
+ $(am__vpath_adj_setup) $(am__vpath_adj) \
375
+ $(am__tty_colors); \
376
+ srcdir=$(srcdir); export srcdir; \
377
+ case "$@" in \
378
+ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
379
+ *) am__odir=.;; \
380
+ esac; \
381
+ test "x$$am__odir" = x"." || test -d "$$am__odir" \
382
+ || $(MKDIR_P) "$$am__odir" || exit $$?; \
383
+ if test -f "./$$f"; then dir=./; \
384
+ elif test -f "$$f"; then dir=; \
385
+ else dir="$(srcdir)/"; fi; \
386
+ tst=$$dir$$f; log='$@'; \
387
+ if test -n '$(DISABLE_HARD_ERRORS)'; then \
388
+ am__enable_hard_errors=no; \
389
+ else \
390
+ am__enable_hard_errors=yes; \
391
+ fi; \
392
+ case " $(XFAIL_TESTS) " in \
393
+ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
394
+ am__expect_failure=yes;; \
395
+ *) \
396
+ am__expect_failure=no;; \
397
+ esac; \
398
+ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
399
+ # A shell command to get the names of the tests scripts with any registered
400
+ # extension removed (i.e., equivalently, the names of the test logs, with
401
+ # the '.log' extension removed). The result is saved in the shell variable
402
+ # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
403
+ # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
404
+ # since that might cause problem with VPATH rewrites for suffix-less tests.
405
+ # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
406
+ am__set_TESTS_bases = \
407
+ bases='$(TEST_LOGS)'; \
408
+ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
409
+ bases=`echo $$bases`
410
+ RECHECK_LOGS = $(TEST_LOGS)
411
+ AM_RECURSIVE_TARGETS = check recheck
412
+ @HAVE_JPEG_TRUE@am__EXEEXT_2 = tiff2rgba-quad-tile.jpg.sh
413
+ am__EXEEXT_3 = ppm2tiff_pbm.sh ppm2tiff_pgm.sh ppm2tiff_ppm.sh \
414
+ tiffcp-g3.sh tiffcp-g3-1d.sh tiffcp-g3-1d-fill.sh \
415
+ tiffcp-g3-2d.sh tiffcp-g3-2d-fill.sh tiffcp-g4.sh \
416
+ tiffcp-logluv.sh tiffcp-thumbnail.sh tiffcp-lzw-compat.sh \
417
+ tiffdump.sh tiffinfo.sh tiffcp-split.sh tiffcp-split-join.sh \
418
+ tiff2ps-PS1.sh tiff2ps-PS2.sh tiff2ps-PS3.sh tiff2ps-EPS1.sh \
419
+ tiff2pdf.sh tiffcrop-doubleflip-logluv-3c-16b.sh \
420
+ tiffcrop-doubleflip-minisblack-1c-16b.sh \
421
+ tiffcrop-doubleflip-minisblack-1c-8b.sh \
422
+ tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh \
423
+ tiffcrop-doubleflip-miniswhite-1c-1b.sh \
424
+ tiffcrop-doubleflip-palette-1c-1b.sh \
425
+ tiffcrop-doubleflip-palette-1c-4b.sh \
426
+ tiffcrop-doubleflip-palette-1c-8b.sh \
427
+ tiffcrop-doubleflip-rgb-3c-16b.sh \
428
+ tiffcrop-doubleflip-rgb-3c-8b.sh \
429
+ tiffcrop-extract-logluv-3c-16b.sh \
430
+ tiffcrop-extract-minisblack-1c-16b.sh \
431
+ tiffcrop-extract-minisblack-1c-8b.sh \
432
+ tiffcrop-extract-minisblack-2c-8b-alpha.sh \
433
+ tiffcrop-extract-miniswhite-1c-1b.sh \
434
+ tiffcrop-extract-palette-1c-1b.sh \
435
+ tiffcrop-extract-palette-1c-4b.sh \
436
+ tiffcrop-extract-palette-1c-8b.sh \
437
+ tiffcrop-extract-rgb-3c-16b.sh tiffcrop-extract-rgb-3c-8b.sh \
438
+ tiffcrop-extractz14-logluv-3c-16b.sh \
439
+ tiffcrop-extractz14-minisblack-1c-16b.sh \
440
+ tiffcrop-extractz14-minisblack-1c-8b.sh \
441
+ tiffcrop-extractz14-minisblack-2c-8b-alpha.sh \
442
+ tiffcrop-extractz14-miniswhite-1c-1b.sh \
443
+ tiffcrop-extractz14-palette-1c-1b.sh \
444
+ tiffcrop-extractz14-palette-1c-4b.sh \
445
+ tiffcrop-extractz14-palette-1c-8b.sh \
446
+ tiffcrop-extractz14-rgb-3c-16b.sh \
447
+ tiffcrop-extractz14-rgb-3c-8b.sh tiffcrop-R90-logluv-3c-16b.sh \
448
+ tiffcrop-R90-minisblack-1c-16b.sh \
449
+ tiffcrop-R90-minisblack-1c-8b.sh \
450
+ tiffcrop-R90-minisblack-2c-8b-alpha.sh \
451
+ tiffcrop-R90-miniswhite-1c-1b.sh tiffcrop-R90-palette-1c-1b.sh \
452
+ tiffcrop-R90-palette-1c-4b.sh tiffcrop-R90-palette-1c-8b.sh \
453
+ tiffcrop-R90-rgb-3c-16b.sh tiffcrop-R90-rgb-3c-8b.sh \
454
+ tiff2bw-palette-1c-8b.sh tiff2bw-quad-lzw-compat.sh \
455
+ tiff2bw-rgb-3c-8b.sh tiff2rgba-logluv-3c-16b.sh \
456
+ tiff2rgba-minisblack-1c-16b.sh tiff2rgba-minisblack-1c-8b.sh \
457
+ tiff2rgba-minisblack-2c-8b-alpha.sh \
458
+ tiff2rgba-miniswhite-1c-1b.sh tiff2rgba-palette-1c-1b.sh \
459
+ tiff2rgba-palette-1c-4b.sh tiff2rgba-palette-1c-8b.sh \
460
+ tiff2rgba-rgb-3c-16b.sh tiff2rgba-rgb-3c-8b.sh $(am__EXEEXT_2)
461
+ TEST_SUITE_LOG = test-suite.log
462
+ TEST_EXTENSIONS = @EXEEXT@ .test
463
+ LOG_DRIVER = $(SHELL) $(top_srcdir)/config/test-driver
464
+ LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
465
+ am__set_b = \
466
+ case '$@' in \
467
+ */*) \
468
+ case '$*' in \
469
+ */*) b='$*';; \
470
+ *) b=`echo '$@' | sed 's/\.log$$//'`; \
471
+ esac;; \
472
+ *) \
473
+ b='$*';; \
474
+ esac
475
+ am__test_logs1 = $(TESTS:=.log)
476
+ am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
477
+ TEST_LOGS = $(am__test_logs2:.test.log=.log)
478
+ TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/config/test-driver
479
+ TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
480
+ $(TEST_LOG_FLAGS)
481
+ am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \
482
+ $(top_srcdir)/config/mkinstalldirs \
483
+ $(top_srcdir)/config/test-driver
484
+ DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
485
+ ACLOCAL = @ACLOCAL@
486
+ AMTAR = @AMTAR@
487
+ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
488
+ AR = @AR@
489
+ AS = @AS@
490
+ AUTOCONF = @AUTOCONF@
491
+ AUTOHEADER = @AUTOHEADER@
492
+ AUTOMAKE = @AUTOMAKE@
493
+ AWK = @AWK@
494
+ CC = @CC@
495
+ CCDEPMODE = @CCDEPMODE@
496
+ CFLAGS = @CFLAGS@
497
+ CMAKE = @CMAKE@
498
+ CPP = @CPP@
499
+ CPPFLAGS = @CPPFLAGS@
500
+ CXX = @CXX@
501
+ CXXCPP = @CXXCPP@
502
+ CXXDEPMODE = @CXXDEPMODE@
503
+ CXXFLAGS = @CXXFLAGS@
504
+ CYGPATH_W = @CYGPATH_W@
505
+ DEFS = @DEFS@
506
+ DEPDIR = @DEPDIR@
507
+ DLLTOOL = @DLLTOOL@
508
+ DSYMUTIL = @DSYMUTIL@
509
+ DUMPBIN = @DUMPBIN@
510
+ ECHO_C = @ECHO_C@
511
+ ECHO_N = @ECHO_N@
512
+ ECHO_T = @ECHO_T@
513
+ EGREP = @EGREP@
514
+ EXEEXT = @EXEEXT@
515
+ FGREP = @FGREP@
516
+ GLUT_CFLAGS = @GLUT_CFLAGS@
517
+ GLUT_LIBS = @GLUT_LIBS@
518
+ GLU_CFLAGS = @GLU_CFLAGS@
519
+ GLU_LIBS = @GLU_LIBS@
520
+ GL_CFLAGS = @GL_CFLAGS@
521
+ GL_LIBS = @GL_LIBS@
522
+ GREP = @GREP@
523
+ INSTALL = @INSTALL@
524
+ INSTALL_DATA = @INSTALL_DATA@
525
+ INSTALL_PROGRAM = @INSTALL_PROGRAM@
526
+ INSTALL_SCRIPT = @INSTALL_SCRIPT@
527
+ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
528
+ LD = @LD@
529
+ LDFLAGS = @LDFLAGS@
530
+ LIBDIR = @LIBDIR@
531
+ LIBOBJS = @LIBOBJS@
532
+ LIBS = @LIBS@
533
+ LIBTIFF_ALPHA_VERSION = @LIBTIFF_ALPHA_VERSION@
534
+ LIBTIFF_DOCDIR = @LIBTIFF_DOCDIR@
535
+ LIBTIFF_MAJOR_VERSION = @LIBTIFF_MAJOR_VERSION@
536
+ LIBTIFF_MICRO_VERSION = @LIBTIFF_MICRO_VERSION@
537
+ LIBTIFF_MINOR_VERSION = @LIBTIFF_MINOR_VERSION@
538
+ LIBTIFF_RELEASE_DATE = @LIBTIFF_RELEASE_DATE@
539
+ LIBTIFF_VERSION = @LIBTIFF_VERSION@
540
+ LIBTIFF_VERSION_INFO = @LIBTIFF_VERSION_INFO@
541
+ LIBTOOL = @LIBTOOL@
542
+ LIPO = @LIPO@
543
+ LN_S = @LN_S@
544
+ LTLIBOBJS = @LTLIBOBJS@
545
+ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
546
+ MAINT = @MAINT@
547
+ MAKEINFO = @MAKEINFO@
548
+ MANIFEST_TOOL = @MANIFEST_TOOL@
549
+ MKDIR_P = @MKDIR_P@
550
+ NM = @NM@
551
+ NMEDIT = @NMEDIT@
552
+ OBJDUMP = @OBJDUMP@
553
+ OBJEXT = @OBJEXT@
554
+ OTOOL = @OTOOL@
555
+ OTOOL64 = @OTOOL64@
556
+ PACKAGE = @PACKAGE@
557
+ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
558
+ PACKAGE_NAME = @PACKAGE_NAME@
559
+ PACKAGE_STRING = @PACKAGE_STRING@
560
+ PACKAGE_TARNAME = @PACKAGE_TARNAME@
561
+ PACKAGE_URL = @PACKAGE_URL@
562
+ PACKAGE_VERSION = @PACKAGE_VERSION@
563
+ PATH_SEPARATOR = @PATH_SEPARATOR@
564
+ PTHREAD_CC = @PTHREAD_CC@
565
+ PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
566
+ PTHREAD_LIBS = @PTHREAD_LIBS@
567
+ RANLIB = @RANLIB@
568
+ SED = @SED@
569
+ SET_MAKE = @SET_MAKE@
570
+ SHELL = @SHELL@
571
+ STRIP = @STRIP@
572
+ VERSION = @VERSION@
573
+ XMKMF = @XMKMF@
574
+ X_CFLAGS = @X_CFLAGS@
575
+ X_EXTRA_LIBS = @X_EXTRA_LIBS@
576
+ X_LIBS = @X_LIBS@
577
+ X_PRE_LIBS = @X_PRE_LIBS@
578
+ abs_builddir = @abs_builddir@
579
+ abs_srcdir = @abs_srcdir@
580
+ abs_top_builddir = @abs_top_builddir@
581
+ abs_top_srcdir = @abs_top_srcdir@
582
+ ac_ct_AR = @ac_ct_AR@
583
+ ac_ct_CC = @ac_ct_CC@
584
+ ac_ct_CXX = @ac_ct_CXX@
585
+ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
586
+ am__include = @am__include@
587
+ am__leading_dot = @am__leading_dot@
588
+ am__quote = @am__quote@
589
+ am__tar = @am__tar@
590
+ am__untar = @am__untar@
591
+ ax_pthread_config = @ax_pthread_config@
592
+ bindir = @bindir@
593
+ build = @build@
594
+ build_alias = @build_alias@
595
+ build_cpu = @build_cpu@
596
+ build_os = @build_os@
597
+ build_vendor = @build_vendor@
598
+ builddir = @builddir@
599
+ datadir = @datadir@
600
+ datarootdir = @datarootdir@
601
+ docdir = @docdir@
602
+ dvidir = @dvidir@
603
+ exec_prefix = @exec_prefix@
604
+ host = @host@
605
+ host_alias = @host_alias@
606
+ host_cpu = @host_cpu@
607
+ host_os = @host_os@
608
+ host_vendor = @host_vendor@
609
+ htmldir = @htmldir@
610
+ includedir = @includedir@
611
+ infodir = @infodir@
612
+ install_sh = @install_sh@
613
+ libdir = @libdir@
614
+ libexecdir = @libexecdir@
615
+ localedir = @localedir@
616
+ localstatedir = @localstatedir@
617
+ mandir = @mandir@
618
+ mkdir_p = @mkdir_p@
619
+ oldincludedir = @oldincludedir@
620
+ pdfdir = @pdfdir@
621
+ prefix = @prefix@
622
+ program_transform_name = @program_transform_name@
623
+ psdir = @psdir@
624
+ sbindir = @sbindir@
625
+ sharedstatedir = @sharedstatedir@
626
+ srcdir = @srcdir@
627
+ sysconfdir = @sysconfdir@
628
+ target_alias = @target_alias@
629
+ tiff_libs_private = @tiff_libs_private@
630
+ top_build_prefix = @top_build_prefix@
631
+ top_builddir = @top_builddir@
632
+ top_srcdir = @top_srcdir@
633
+ AUTOMAKE_OPTIONS = 1.12 color-tests parallel-tests foreign
634
+ LIBTIFF = $(top_builddir)/libtiff/libtiff.la
635
+
636
+ # Environment parameters to be used during tests
637
+ TESTS_ENVIRONMENT = \
638
+ MAKE="$(MAKE)" \
639
+ MAKEFLAGS="$(MAKEFLAGS)" \
640
+ MEMCHECK="$(MEMCHECK)"
641
+
642
+ EXTRA_DIST = \
643
+ $(TESTSCRIPTS) \
644
+ $(IMAGES_EXTRA_DIST) \
645
+ CMakeLists.txt \
646
+ common.sh \
647
+ TiffSplitTest.cmake \
648
+ TiffTestCommon.cmake \
649
+ TiffTest.cmake
650
+
651
+
652
+ # Extra files which should be cleaned by 'make clean'
653
+ CLEANFILES = test_packbits.tif o-*
654
+ @HAVE_JPEG_FALSE@JPEG_DEPENDENT_CHECK_PROG =
655
+ @HAVE_JPEG_TRUE@JPEG_DEPENDENT_CHECK_PROG = raw_decode
656
+ @HAVE_JPEG_FALSE@JPEG_DEPENDENT_TESTSCRIPTS =
657
+ @HAVE_JPEG_TRUE@JPEG_DEPENDENT_TESTSCRIPTS = \
658
+ @HAVE_JPEG_TRUE@ tiff2rgba-quad-tile.jpg.sh
659
+
660
+
661
+ # Test scripts to execute
662
+ TESTSCRIPTS = \
663
+ ppm2tiff_pbm.sh \
664
+ ppm2tiff_pgm.sh \
665
+ ppm2tiff_ppm.sh \
666
+ tiffcp-g3.sh \
667
+ tiffcp-g3-1d.sh \
668
+ tiffcp-g3-1d-fill.sh \
669
+ tiffcp-g3-2d.sh \
670
+ tiffcp-g3-2d-fill.sh \
671
+ tiffcp-g4.sh \
672
+ tiffcp-logluv.sh \
673
+ tiffcp-thumbnail.sh \
674
+ tiffcp-lzw-compat.sh \
675
+ tiffdump.sh \
676
+ tiffinfo.sh \
677
+ tiffcp-split.sh \
678
+ tiffcp-split-join.sh \
679
+ tiff2ps-PS1.sh \
680
+ tiff2ps-PS2.sh \
681
+ tiff2ps-PS3.sh \
682
+ tiff2ps-EPS1.sh \
683
+ tiff2pdf.sh \
684
+ tiffcrop-doubleflip-logluv-3c-16b.sh \
685
+ tiffcrop-doubleflip-minisblack-1c-16b.sh \
686
+ tiffcrop-doubleflip-minisblack-1c-8b.sh \
687
+ tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh \
688
+ tiffcrop-doubleflip-miniswhite-1c-1b.sh \
689
+ tiffcrop-doubleflip-palette-1c-1b.sh \
690
+ tiffcrop-doubleflip-palette-1c-4b.sh \
691
+ tiffcrop-doubleflip-palette-1c-8b.sh \
692
+ tiffcrop-doubleflip-rgb-3c-16b.sh \
693
+ tiffcrop-doubleflip-rgb-3c-8b.sh \
694
+ tiffcrop-extract-logluv-3c-16b.sh \
695
+ tiffcrop-extract-minisblack-1c-16b.sh \
696
+ tiffcrop-extract-minisblack-1c-8b.sh \
697
+ tiffcrop-extract-minisblack-2c-8b-alpha.sh \
698
+ tiffcrop-extract-miniswhite-1c-1b.sh \
699
+ tiffcrop-extract-palette-1c-1b.sh \
700
+ tiffcrop-extract-palette-1c-4b.sh \
701
+ tiffcrop-extract-palette-1c-8b.sh \
702
+ tiffcrop-extract-rgb-3c-16b.sh \
703
+ tiffcrop-extract-rgb-3c-8b.sh \
704
+ tiffcrop-extractz14-logluv-3c-16b.sh \
705
+ tiffcrop-extractz14-minisblack-1c-16b.sh \
706
+ tiffcrop-extractz14-minisblack-1c-8b.sh \
707
+ tiffcrop-extractz14-minisblack-2c-8b-alpha.sh \
708
+ tiffcrop-extractz14-miniswhite-1c-1b.sh \
709
+ tiffcrop-extractz14-palette-1c-1b.sh \
710
+ tiffcrop-extractz14-palette-1c-4b.sh \
711
+ tiffcrop-extractz14-palette-1c-8b.sh \
712
+ tiffcrop-extractz14-rgb-3c-16b.sh \
713
+ tiffcrop-extractz14-rgb-3c-8b.sh \
714
+ tiffcrop-R90-logluv-3c-16b.sh \
715
+ tiffcrop-R90-minisblack-1c-16b.sh \
716
+ tiffcrop-R90-minisblack-1c-8b.sh \
717
+ tiffcrop-R90-minisblack-2c-8b-alpha.sh \
718
+ tiffcrop-R90-miniswhite-1c-1b.sh \
719
+ tiffcrop-R90-palette-1c-1b.sh \
720
+ tiffcrop-R90-palette-1c-4b.sh \
721
+ tiffcrop-R90-palette-1c-8b.sh \
722
+ tiffcrop-R90-rgb-3c-16b.sh \
723
+ tiffcrop-R90-rgb-3c-8b.sh \
724
+ tiff2bw-palette-1c-8b.sh \
725
+ tiff2bw-quad-lzw-compat.sh \
726
+ tiff2bw-rgb-3c-8b.sh \
727
+ tiff2rgba-logluv-3c-16b.sh \
728
+ tiff2rgba-minisblack-1c-16b.sh \
729
+ tiff2rgba-minisblack-1c-8b.sh \
730
+ tiff2rgba-minisblack-2c-8b-alpha.sh \
731
+ tiff2rgba-miniswhite-1c-1b.sh \
732
+ tiff2rgba-palette-1c-1b.sh \
733
+ tiff2rgba-palette-1c-4b.sh \
734
+ tiff2rgba-palette-1c-8b.sh \
735
+ tiff2rgba-rgb-3c-16b.sh \
736
+ tiff2rgba-rgb-3c-8b.sh \
737
+ $(JPEG_DEPENDENT_TESTSCRIPTS)
738
+
739
+
740
+ # This list should contain all of the TIFF files in the 'images'
741
+ # subdirectory which are intended to be used as input images for
742
+ # tests. All of these files should use the extension ".tiff".
743
+ TIFFIMAGES = \
744
+ images/logluv-3c-16b.tiff \
745
+ images/minisblack-1c-16b.tiff \
746
+ images/minisblack-1c-8b.tiff \
747
+ images/minisblack-2c-8b-alpha.tiff \
748
+ images/miniswhite-1c-1b.tiff \
749
+ images/palette-1c-1b.tiff \
750
+ images/palette-1c-4b.tiff \
751
+ images/palette-1c-8b.tiff \
752
+ images/rgb-3c-16b.tiff \
753
+ images/rgb-3c-8b.tiff \
754
+ images/quad-tile.jpg.tiff \
755
+ images/quad-lzw-compat.tiff
756
+
757
+ PNMIMAGES = \
758
+ images/minisblack-1c-8b.pgm \
759
+ images/miniswhite-1c-1b.pbm \
760
+ images/rgb-3c-8b.ppm
761
+
762
+
763
+ # This list should include all of the files in the 'images'
764
+ # subdirectory which are intended to be distributed. This may include
765
+ # files which are not currently used by the tests.
766
+ IMAGES_EXTRA_DIST = \
767
+ images/README.txt \
768
+ $(PNMIMAGES) \
769
+ $(TIFFIMAGES)
770
+
771
+ noinst_HEADERS = tifftest.h
772
+ ascii_tag_SOURCES = ascii_tag.c
773
+ ascii_tag_LDADD = $(LIBTIFF)
774
+ long_tag_SOURCES = long_tag.c check_tag.c
775
+ long_tag_LDADD = $(LIBTIFF)
776
+ short_tag_SOURCES = short_tag.c check_tag.c
777
+ short_tag_LDADD = $(LIBTIFF)
778
+ strip_rw_SOURCES = strip_rw.c strip.c test_arrays.c test_arrays.h
779
+ strip_rw_LDADD = $(LIBTIFF)
780
+ rewrite_SOURCES = rewrite_tag.c
781
+ rewrite_LDADD = $(LIBTIFF)
782
+ raw_decode_SOURCES = raw_decode.c
783
+ raw_decode_LDADD = $(LIBTIFF)
784
+ custom_dir_SOURCES = custom_dir.c
785
+ custom_dir_LDADD = $(LIBTIFF)
786
+ AM_CPPFLAGS = -I$(top_srcdir)/libtiff
787
+ all: all-am
788
+
789
+ .SUFFIXES:
790
+ .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
791
+ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
792
+ @for dep in $?; do \
793
+ case '$(am__configure_deps)' in \
794
+ *$$dep*) \
795
+ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
796
+ && { if test -f $@; then exit 0; else break; fi; }; \
797
+ exit 1;; \
798
+ esac; \
799
+ done; \
800
+ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \
801
+ $(am__cd) $(top_srcdir) && \
802
+ $(AUTOMAKE) --foreign test/Makefile
803
+ Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
804
+ @case '$?' in \
805
+ *config.status*) \
806
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
807
+ *) \
808
+ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
809
+ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
810
+ esac;
811
+
812
+ $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
813
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
814
+
815
+ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
816
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
817
+ $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
818
+ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
819
+ $(am__aclocal_m4_deps):
820
+
821
+ clean-checkPROGRAMS:
822
+ @list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
823
+ echo " rm -f" $$list; \
824
+ rm -f $$list || exit $$?; \
825
+ test -n "$(EXEEXT)" || exit 0; \
826
+ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
827
+ echo " rm -f" $$list; \
828
+ rm -f $$list
829
+
830
+ ascii_tag$(EXEEXT): $(ascii_tag_OBJECTS) $(ascii_tag_DEPENDENCIES) $(EXTRA_ascii_tag_DEPENDENCIES)
831
+ @rm -f ascii_tag$(EXEEXT)
832
+ $(AM_V_CCLD)$(LINK) $(ascii_tag_OBJECTS) $(ascii_tag_LDADD) $(LIBS)
833
+
834
+ custom_dir$(EXEEXT): $(custom_dir_OBJECTS) $(custom_dir_DEPENDENCIES) $(EXTRA_custom_dir_DEPENDENCIES)
835
+ @rm -f custom_dir$(EXEEXT)
836
+ $(AM_V_CCLD)$(LINK) $(custom_dir_OBJECTS) $(custom_dir_LDADD) $(LIBS)
837
+
838
+ long_tag$(EXEEXT): $(long_tag_OBJECTS) $(long_tag_DEPENDENCIES) $(EXTRA_long_tag_DEPENDENCIES)
839
+ @rm -f long_tag$(EXEEXT)
840
+ $(AM_V_CCLD)$(LINK) $(long_tag_OBJECTS) $(long_tag_LDADD) $(LIBS)
841
+
842
+ raw_decode$(EXEEXT): $(raw_decode_OBJECTS) $(raw_decode_DEPENDENCIES) $(EXTRA_raw_decode_DEPENDENCIES)
843
+ @rm -f raw_decode$(EXEEXT)
844
+ $(AM_V_CCLD)$(LINK) $(raw_decode_OBJECTS) $(raw_decode_LDADD) $(LIBS)
845
+
846
+ rewrite$(EXEEXT): $(rewrite_OBJECTS) $(rewrite_DEPENDENCIES) $(EXTRA_rewrite_DEPENDENCIES)
847
+ @rm -f rewrite$(EXEEXT)
848
+ $(AM_V_CCLD)$(LINK) $(rewrite_OBJECTS) $(rewrite_LDADD) $(LIBS)
849
+
850
+ short_tag$(EXEEXT): $(short_tag_OBJECTS) $(short_tag_DEPENDENCIES) $(EXTRA_short_tag_DEPENDENCIES)
851
+ @rm -f short_tag$(EXEEXT)
852
+ $(AM_V_CCLD)$(LINK) $(short_tag_OBJECTS) $(short_tag_LDADD) $(LIBS)
853
+
854
+ strip_rw$(EXEEXT): $(strip_rw_OBJECTS) $(strip_rw_DEPENDENCIES) $(EXTRA_strip_rw_DEPENDENCIES)
855
+ @rm -f strip_rw$(EXEEXT)
856
+ $(AM_V_CCLD)$(LINK) $(strip_rw_OBJECTS) $(strip_rw_LDADD) $(LIBS)
857
+
858
+ mostlyclean-compile:
859
+ -rm -f *.$(OBJEXT)
860
+
861
+ distclean-compile:
862
+ -rm -f *.tab.c
863
+
864
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ascii_tag.Po@am__quote@
865
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_tag.Po@am__quote@
866
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/custom_dir.Po@am__quote@
867
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/long_tag.Po@am__quote@
868
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raw_decode.Po@am__quote@
869
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rewrite_tag.Po@am__quote@
870
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/short_tag.Po@am__quote@
871
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strip.Po@am__quote@
872
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strip_rw.Po@am__quote@
873
+ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_arrays.Po@am__quote@
874
+
875
+ .c.o:
876
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
877
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
878
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
879
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
880
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
881
+
882
+ .c.obj:
883
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
884
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
885
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
886
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
887
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
888
+
889
+ .c.lo:
890
+ @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
891
+ @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
892
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
893
+ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
894
+ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
895
+
896
+ mostlyclean-libtool:
897
+ -rm -f *.lo
898
+
899
+ clean-libtool:
900
+ -rm -rf .libs _libs
901
+
902
+ ID: $(am__tagged_files)
903
+ $(am__define_uniq_tagged_files); mkid -fID $$unique
904
+ tags: tags-am
905
+ TAGS: tags
906
+
907
+ tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
908
+ set x; \
909
+ here=`pwd`; \
910
+ $(am__define_uniq_tagged_files); \
911
+ shift; \
912
+ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
913
+ test -n "$$unique" || unique=$$empty_fix; \
914
+ if test $$# -gt 0; then \
915
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
916
+ "$$@" $$unique; \
917
+ else \
918
+ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
919
+ $$unique; \
920
+ fi; \
921
+ fi
922
+ ctags: ctags-am
923
+
924
+ CTAGS: ctags
925
+ ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
926
+ $(am__define_uniq_tagged_files); \
927
+ test -z "$(CTAGS_ARGS)$$unique" \
928
+ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
929
+ $$unique
930
+
931
+ GTAGS:
932
+ here=`$(am__cd) $(top_builddir) && pwd` \
933
+ && $(am__cd) $(top_srcdir) \
934
+ && gtags -i $(GTAGS_ARGS) "$$here"
935
+ cscopelist: cscopelist-am
936
+
937
+ cscopelist-am: $(am__tagged_files)
938
+ list='$(am__tagged_files)'; \
939
+ case "$(srcdir)" in \
940
+ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
941
+ *) sdir=$(subdir)/$(srcdir) ;; \
942
+ esac; \
943
+ for i in $$list; do \
944
+ if test -f "$$i"; then \
945
+ echo "$(subdir)/$$i"; \
946
+ else \
947
+ echo "$$sdir/$$i"; \
948
+ fi; \
949
+ done >> $(top_builddir)/cscope.files
950
+
951
+ distclean-tags:
952
+ -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
953
+
954
+ # Recover from deleted '.trs' file; this should ensure that
955
+ # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
956
+ # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
957
+ # to avoid problems with "make -n".
958
+ .log.trs:
959
+ rm -f $< $@
960
+ $(MAKE) $(AM_MAKEFLAGS) $<
961
+
962
+ # Leading 'am--fnord' is there to ensure the list of targets does not
963
+ # expand to empty, as could happen e.g. with make check TESTS=''.
964
+ am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
965
+ am--force-recheck:
966
+ @:
967
+
968
+ $(TEST_SUITE_LOG): $(TEST_LOGS)
969
+ @$(am__set_TESTS_bases); \
970
+ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
971
+ redo_bases=`for i in $$bases; do \
972
+ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
973
+ done`; \
974
+ if test -n "$$redo_bases"; then \
975
+ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
976
+ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
977
+ if $(am__make_dryrun); then :; else \
978
+ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
979
+ fi; \
980
+ fi; \
981
+ if test -n "$$am__remaking_logs"; then \
982
+ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
983
+ "recursion detected" >&2; \
984
+ elif test -n "$$redo_logs"; then \
985
+ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
986
+ fi; \
987
+ if $(am__make_dryrun); then :; else \
988
+ st=0; \
989
+ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
990
+ for i in $$redo_bases; do \
991
+ test -f $$i.trs && test -r $$i.trs \
992
+ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \
993
+ test -f $$i.log && test -r $$i.log \
994
+ || { echo "$$errmsg $$i.log" >&2; st=1; }; \
995
+ done; \
996
+ test $$st -eq 0 || exit 1; \
997
+ fi
998
+ @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
999
+ ws='[ ]'; \
1000
+ results=`for b in $$bases; do echo $$b.trs; done`; \
1001
+ test -n "$$results" || results=/dev/null; \
1002
+ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
1003
+ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
1004
+ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
1005
+ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
1006
+ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
1007
+ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
1008
+ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
1009
+ if test `expr $$fail + $$xpass + $$error` -eq 0; then \
1010
+ success=true; \
1011
+ else \
1012
+ success=false; \
1013
+ fi; \
1014
+ br='==================='; br=$$br$$br$$br$$br; \
1015
+ result_count () \
1016
+ { \
1017
+ if test x"$$1" = x"--maybe-color"; then \
1018
+ maybe_colorize=yes; \
1019
+ elif test x"$$1" = x"--no-color"; then \
1020
+ maybe_colorize=no; \
1021
+ else \
1022
+ echo "$@: invalid 'result_count' usage" >&2; exit 4; \
1023
+ fi; \
1024
+ shift; \
1025
+ desc=$$1 count=$$2; \
1026
+ if test $$maybe_colorize = yes && test $$count -gt 0; then \
1027
+ color_start=$$3 color_end=$$std; \
1028
+ else \
1029
+ color_start= color_end=; \
1030
+ fi; \
1031
+ echo "$${color_start}# $$desc $$count$${color_end}"; \
1032
+ }; \
1033
+ create_testsuite_report () \
1034
+ { \
1035
+ result_count $$1 "TOTAL:" $$all "$$brg"; \
1036
+ result_count $$1 "PASS: " $$pass "$$grn"; \
1037
+ result_count $$1 "SKIP: " $$skip "$$blu"; \
1038
+ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
1039
+ result_count $$1 "FAIL: " $$fail "$$red"; \
1040
+ result_count $$1 "XPASS:" $$xpass "$$red"; \
1041
+ result_count $$1 "ERROR:" $$error "$$mgn"; \
1042
+ }; \
1043
+ { \
1044
+ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
1045
+ $(am__rst_title); \
1046
+ create_testsuite_report --no-color; \
1047
+ echo; \
1048
+ echo ".. contents:: :depth: 2"; \
1049
+ echo; \
1050
+ for b in $$bases; do echo $$b; done \
1051
+ | $(am__create_global_log); \
1052
+ } >$(TEST_SUITE_LOG).tmp || exit 1; \
1053
+ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
1054
+ if $$success; then \
1055
+ col="$$grn"; \
1056
+ else \
1057
+ col="$$red"; \
1058
+ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
1059
+ fi; \
1060
+ echo "$${col}$$br$${std}"; \
1061
+ echo "$${col}Testsuite summary for $(PACKAGE_STRING)$${std}"; \
1062
+ echo "$${col}$$br$${std}"; \
1063
+ create_testsuite_report --maybe-color; \
1064
+ echo "$$col$$br$$std"; \
1065
+ if $$success; then :; else \
1066
+ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
1067
+ if test -n "$(PACKAGE_BUGREPORT)"; then \
1068
+ echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
1069
+ fi; \
1070
+ echo "$$col$$br$$std"; \
1071
+ fi; \
1072
+ $$success || exit 1
1073
+
1074
+ check-TESTS:
1075
+ @list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
1076
+ @list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
1077
+ @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1078
+ @set +e; $(am__set_TESTS_bases); \
1079
+ log_list=`for i in $$bases; do echo $$i.log; done`; \
1080
+ trs_list=`for i in $$bases; do echo $$i.trs; done`; \
1081
+ log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
1082
+ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
1083
+ exit $$?;
1084
+ recheck: all $(check_PROGRAMS)
1085
+ @test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1086
+ @set +e; $(am__set_TESTS_bases); \
1087
+ bases=`for i in $$bases; do echo $$i; done \
1088
+ | $(am__list_recheck_tests)` || exit 1; \
1089
+ log_list=`for i in $$bases; do echo $$i.log; done`; \
1090
+ log_list=`echo $$log_list`; \
1091
+ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
1092
+ am__force_recheck=am--force-recheck \
1093
+ TEST_LOGS="$$log_list"; \
1094
+ exit $$?
1095
+ ascii_tag.log: ascii_tag$(EXEEXT)
1096
+ @p='ascii_tag$(EXEEXT)'; \
1097
+ b='ascii_tag'; \
1098
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1099
+ --log-file $$b.log --trs-file $$b.trs \
1100
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1101
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1102
+ long_tag.log: long_tag$(EXEEXT)
1103
+ @p='long_tag$(EXEEXT)'; \
1104
+ b='long_tag'; \
1105
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1106
+ --log-file $$b.log --trs-file $$b.trs \
1107
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1108
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1109
+ short_tag.log: short_tag$(EXEEXT)
1110
+ @p='short_tag$(EXEEXT)'; \
1111
+ b='short_tag'; \
1112
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1113
+ --log-file $$b.log --trs-file $$b.trs \
1114
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1115
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1116
+ strip_rw.log: strip_rw$(EXEEXT)
1117
+ @p='strip_rw$(EXEEXT)'; \
1118
+ b='strip_rw'; \
1119
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1120
+ --log-file $$b.log --trs-file $$b.trs \
1121
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1122
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1123
+ rewrite.log: rewrite$(EXEEXT)
1124
+ @p='rewrite$(EXEEXT)'; \
1125
+ b='rewrite'; \
1126
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1127
+ --log-file $$b.log --trs-file $$b.trs \
1128
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1129
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1130
+ custom_dir.log: custom_dir$(EXEEXT)
1131
+ @p='custom_dir$(EXEEXT)'; \
1132
+ b='custom_dir'; \
1133
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1134
+ --log-file $$b.log --trs-file $$b.trs \
1135
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1136
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1137
+ raw_decode.log: raw_decode$(EXEEXT)
1138
+ @p='raw_decode$(EXEEXT)'; \
1139
+ b='raw_decode'; \
1140
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1141
+ --log-file $$b.log --trs-file $$b.trs \
1142
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1143
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1144
+ ppm2tiff_pbm.sh.log: ppm2tiff_pbm.sh
1145
+ @p='ppm2tiff_pbm.sh'; \
1146
+ b='ppm2tiff_pbm.sh'; \
1147
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1148
+ --log-file $$b.log --trs-file $$b.trs \
1149
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1150
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1151
+ ppm2tiff_pgm.sh.log: ppm2tiff_pgm.sh
1152
+ @p='ppm2tiff_pgm.sh'; \
1153
+ b='ppm2tiff_pgm.sh'; \
1154
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1155
+ --log-file $$b.log --trs-file $$b.trs \
1156
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1157
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1158
+ ppm2tiff_ppm.sh.log: ppm2tiff_ppm.sh
1159
+ @p='ppm2tiff_ppm.sh'; \
1160
+ b='ppm2tiff_ppm.sh'; \
1161
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1162
+ --log-file $$b.log --trs-file $$b.trs \
1163
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1164
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1165
+ tiffcp-g3.sh.log: tiffcp-g3.sh
1166
+ @p='tiffcp-g3.sh'; \
1167
+ b='tiffcp-g3.sh'; \
1168
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1169
+ --log-file $$b.log --trs-file $$b.trs \
1170
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1171
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1172
+ tiffcp-g3-1d.sh.log: tiffcp-g3-1d.sh
1173
+ @p='tiffcp-g3-1d.sh'; \
1174
+ b='tiffcp-g3-1d.sh'; \
1175
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1176
+ --log-file $$b.log --trs-file $$b.trs \
1177
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1178
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1179
+ tiffcp-g3-1d-fill.sh.log: tiffcp-g3-1d-fill.sh
1180
+ @p='tiffcp-g3-1d-fill.sh'; \
1181
+ b='tiffcp-g3-1d-fill.sh'; \
1182
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1183
+ --log-file $$b.log --trs-file $$b.trs \
1184
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1185
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1186
+ tiffcp-g3-2d.sh.log: tiffcp-g3-2d.sh
1187
+ @p='tiffcp-g3-2d.sh'; \
1188
+ b='tiffcp-g3-2d.sh'; \
1189
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1190
+ --log-file $$b.log --trs-file $$b.trs \
1191
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1192
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1193
+ tiffcp-g3-2d-fill.sh.log: tiffcp-g3-2d-fill.sh
1194
+ @p='tiffcp-g3-2d-fill.sh'; \
1195
+ b='tiffcp-g3-2d-fill.sh'; \
1196
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1197
+ --log-file $$b.log --trs-file $$b.trs \
1198
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1199
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1200
+ tiffcp-g4.sh.log: tiffcp-g4.sh
1201
+ @p='tiffcp-g4.sh'; \
1202
+ b='tiffcp-g4.sh'; \
1203
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1204
+ --log-file $$b.log --trs-file $$b.trs \
1205
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1206
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1207
+ tiffcp-logluv.sh.log: tiffcp-logluv.sh
1208
+ @p='tiffcp-logluv.sh'; \
1209
+ b='tiffcp-logluv.sh'; \
1210
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1211
+ --log-file $$b.log --trs-file $$b.trs \
1212
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1213
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1214
+ tiffcp-thumbnail.sh.log: tiffcp-thumbnail.sh
1215
+ @p='tiffcp-thumbnail.sh'; \
1216
+ b='tiffcp-thumbnail.sh'; \
1217
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1218
+ --log-file $$b.log --trs-file $$b.trs \
1219
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1220
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1221
+ tiffcp-lzw-compat.sh.log: tiffcp-lzw-compat.sh
1222
+ @p='tiffcp-lzw-compat.sh'; \
1223
+ b='tiffcp-lzw-compat.sh'; \
1224
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1225
+ --log-file $$b.log --trs-file $$b.trs \
1226
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1227
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1228
+ tiffdump.sh.log: tiffdump.sh
1229
+ @p='tiffdump.sh'; \
1230
+ b='tiffdump.sh'; \
1231
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1232
+ --log-file $$b.log --trs-file $$b.trs \
1233
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1234
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1235
+ tiffinfo.sh.log: tiffinfo.sh
1236
+ @p='tiffinfo.sh'; \
1237
+ b='tiffinfo.sh'; \
1238
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1239
+ --log-file $$b.log --trs-file $$b.trs \
1240
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1241
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1242
+ tiffcp-split.sh.log: tiffcp-split.sh
1243
+ @p='tiffcp-split.sh'; \
1244
+ b='tiffcp-split.sh'; \
1245
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1246
+ --log-file $$b.log --trs-file $$b.trs \
1247
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1248
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1249
+ tiffcp-split-join.sh.log: tiffcp-split-join.sh
1250
+ @p='tiffcp-split-join.sh'; \
1251
+ b='tiffcp-split-join.sh'; \
1252
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1253
+ --log-file $$b.log --trs-file $$b.trs \
1254
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1255
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1256
+ tiff2ps-PS1.sh.log: tiff2ps-PS1.sh
1257
+ @p='tiff2ps-PS1.sh'; \
1258
+ b='tiff2ps-PS1.sh'; \
1259
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1260
+ --log-file $$b.log --trs-file $$b.trs \
1261
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1262
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1263
+ tiff2ps-PS2.sh.log: tiff2ps-PS2.sh
1264
+ @p='tiff2ps-PS2.sh'; \
1265
+ b='tiff2ps-PS2.sh'; \
1266
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1267
+ --log-file $$b.log --trs-file $$b.trs \
1268
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1269
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1270
+ tiff2ps-PS3.sh.log: tiff2ps-PS3.sh
1271
+ @p='tiff2ps-PS3.sh'; \
1272
+ b='tiff2ps-PS3.sh'; \
1273
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1274
+ --log-file $$b.log --trs-file $$b.trs \
1275
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1276
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1277
+ tiff2ps-EPS1.sh.log: tiff2ps-EPS1.sh
1278
+ @p='tiff2ps-EPS1.sh'; \
1279
+ b='tiff2ps-EPS1.sh'; \
1280
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1281
+ --log-file $$b.log --trs-file $$b.trs \
1282
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1283
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1284
+ tiff2pdf.sh.log: tiff2pdf.sh
1285
+ @p='tiff2pdf.sh'; \
1286
+ b='tiff2pdf.sh'; \
1287
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1288
+ --log-file $$b.log --trs-file $$b.trs \
1289
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1290
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1291
+ tiffcrop-doubleflip-logluv-3c-16b.sh.log: tiffcrop-doubleflip-logluv-3c-16b.sh
1292
+ @p='tiffcrop-doubleflip-logluv-3c-16b.sh'; \
1293
+ b='tiffcrop-doubleflip-logluv-3c-16b.sh'; \
1294
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1295
+ --log-file $$b.log --trs-file $$b.trs \
1296
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1297
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1298
+ tiffcrop-doubleflip-minisblack-1c-16b.sh.log: tiffcrop-doubleflip-minisblack-1c-16b.sh
1299
+ @p='tiffcrop-doubleflip-minisblack-1c-16b.sh'; \
1300
+ b='tiffcrop-doubleflip-minisblack-1c-16b.sh'; \
1301
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1302
+ --log-file $$b.log --trs-file $$b.trs \
1303
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1304
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1305
+ tiffcrop-doubleflip-minisblack-1c-8b.sh.log: tiffcrop-doubleflip-minisblack-1c-8b.sh
1306
+ @p='tiffcrop-doubleflip-minisblack-1c-8b.sh'; \
1307
+ b='tiffcrop-doubleflip-minisblack-1c-8b.sh'; \
1308
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1309
+ --log-file $$b.log --trs-file $$b.trs \
1310
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1311
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1312
+ tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh.log: tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh
1313
+ @p='tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh'; \
1314
+ b='tiffcrop-doubleflip-minisblack-2c-8b-alpha.sh'; \
1315
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1316
+ --log-file $$b.log --trs-file $$b.trs \
1317
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1318
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1319
+ tiffcrop-doubleflip-miniswhite-1c-1b.sh.log: tiffcrop-doubleflip-miniswhite-1c-1b.sh
1320
+ @p='tiffcrop-doubleflip-miniswhite-1c-1b.sh'; \
1321
+ b='tiffcrop-doubleflip-miniswhite-1c-1b.sh'; \
1322
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1323
+ --log-file $$b.log --trs-file $$b.trs \
1324
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1325
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1326
+ tiffcrop-doubleflip-palette-1c-1b.sh.log: tiffcrop-doubleflip-palette-1c-1b.sh
1327
+ @p='tiffcrop-doubleflip-palette-1c-1b.sh'; \
1328
+ b='tiffcrop-doubleflip-palette-1c-1b.sh'; \
1329
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1330
+ --log-file $$b.log --trs-file $$b.trs \
1331
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1332
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1333
+ tiffcrop-doubleflip-palette-1c-4b.sh.log: tiffcrop-doubleflip-palette-1c-4b.sh
1334
+ @p='tiffcrop-doubleflip-palette-1c-4b.sh'; \
1335
+ b='tiffcrop-doubleflip-palette-1c-4b.sh'; \
1336
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1337
+ --log-file $$b.log --trs-file $$b.trs \
1338
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1339
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1340
+ tiffcrop-doubleflip-palette-1c-8b.sh.log: tiffcrop-doubleflip-palette-1c-8b.sh
1341
+ @p='tiffcrop-doubleflip-palette-1c-8b.sh'; \
1342
+ b='tiffcrop-doubleflip-palette-1c-8b.sh'; \
1343
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1344
+ --log-file $$b.log --trs-file $$b.trs \
1345
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1346
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1347
+ tiffcrop-doubleflip-rgb-3c-16b.sh.log: tiffcrop-doubleflip-rgb-3c-16b.sh
1348
+ @p='tiffcrop-doubleflip-rgb-3c-16b.sh'; \
1349
+ b='tiffcrop-doubleflip-rgb-3c-16b.sh'; \
1350
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1351
+ --log-file $$b.log --trs-file $$b.trs \
1352
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1353
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1354
+ tiffcrop-doubleflip-rgb-3c-8b.sh.log: tiffcrop-doubleflip-rgb-3c-8b.sh
1355
+ @p='tiffcrop-doubleflip-rgb-3c-8b.sh'; \
1356
+ b='tiffcrop-doubleflip-rgb-3c-8b.sh'; \
1357
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1358
+ --log-file $$b.log --trs-file $$b.trs \
1359
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1360
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1361
+ tiffcrop-extract-logluv-3c-16b.sh.log: tiffcrop-extract-logluv-3c-16b.sh
1362
+ @p='tiffcrop-extract-logluv-3c-16b.sh'; \
1363
+ b='tiffcrop-extract-logluv-3c-16b.sh'; \
1364
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1365
+ --log-file $$b.log --trs-file $$b.trs \
1366
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1367
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1368
+ tiffcrop-extract-minisblack-1c-16b.sh.log: tiffcrop-extract-minisblack-1c-16b.sh
1369
+ @p='tiffcrop-extract-minisblack-1c-16b.sh'; \
1370
+ b='tiffcrop-extract-minisblack-1c-16b.sh'; \
1371
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1372
+ --log-file $$b.log --trs-file $$b.trs \
1373
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1374
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1375
+ tiffcrop-extract-minisblack-1c-8b.sh.log: tiffcrop-extract-minisblack-1c-8b.sh
1376
+ @p='tiffcrop-extract-minisblack-1c-8b.sh'; \
1377
+ b='tiffcrop-extract-minisblack-1c-8b.sh'; \
1378
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1379
+ --log-file $$b.log --trs-file $$b.trs \
1380
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1381
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1382
+ tiffcrop-extract-minisblack-2c-8b-alpha.sh.log: tiffcrop-extract-minisblack-2c-8b-alpha.sh
1383
+ @p='tiffcrop-extract-minisblack-2c-8b-alpha.sh'; \
1384
+ b='tiffcrop-extract-minisblack-2c-8b-alpha.sh'; \
1385
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1386
+ --log-file $$b.log --trs-file $$b.trs \
1387
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1388
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1389
+ tiffcrop-extract-miniswhite-1c-1b.sh.log: tiffcrop-extract-miniswhite-1c-1b.sh
1390
+ @p='tiffcrop-extract-miniswhite-1c-1b.sh'; \
1391
+ b='tiffcrop-extract-miniswhite-1c-1b.sh'; \
1392
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1393
+ --log-file $$b.log --trs-file $$b.trs \
1394
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1395
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1396
+ tiffcrop-extract-palette-1c-1b.sh.log: tiffcrop-extract-palette-1c-1b.sh
1397
+ @p='tiffcrop-extract-palette-1c-1b.sh'; \
1398
+ b='tiffcrop-extract-palette-1c-1b.sh'; \
1399
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1400
+ --log-file $$b.log --trs-file $$b.trs \
1401
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1402
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1403
+ tiffcrop-extract-palette-1c-4b.sh.log: tiffcrop-extract-palette-1c-4b.sh
1404
+ @p='tiffcrop-extract-palette-1c-4b.sh'; \
1405
+ b='tiffcrop-extract-palette-1c-4b.sh'; \
1406
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1407
+ --log-file $$b.log --trs-file $$b.trs \
1408
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1409
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1410
+ tiffcrop-extract-palette-1c-8b.sh.log: tiffcrop-extract-palette-1c-8b.sh
1411
+ @p='tiffcrop-extract-palette-1c-8b.sh'; \
1412
+ b='tiffcrop-extract-palette-1c-8b.sh'; \
1413
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1414
+ --log-file $$b.log --trs-file $$b.trs \
1415
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1416
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1417
+ tiffcrop-extract-rgb-3c-16b.sh.log: tiffcrop-extract-rgb-3c-16b.sh
1418
+ @p='tiffcrop-extract-rgb-3c-16b.sh'; \
1419
+ b='tiffcrop-extract-rgb-3c-16b.sh'; \
1420
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1421
+ --log-file $$b.log --trs-file $$b.trs \
1422
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1423
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1424
+ tiffcrop-extract-rgb-3c-8b.sh.log: tiffcrop-extract-rgb-3c-8b.sh
1425
+ @p='tiffcrop-extract-rgb-3c-8b.sh'; \
1426
+ b='tiffcrop-extract-rgb-3c-8b.sh'; \
1427
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1428
+ --log-file $$b.log --trs-file $$b.trs \
1429
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1430
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1431
+ tiffcrop-extractz14-logluv-3c-16b.sh.log: tiffcrop-extractz14-logluv-3c-16b.sh
1432
+ @p='tiffcrop-extractz14-logluv-3c-16b.sh'; \
1433
+ b='tiffcrop-extractz14-logluv-3c-16b.sh'; \
1434
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1435
+ --log-file $$b.log --trs-file $$b.trs \
1436
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1437
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1438
+ tiffcrop-extractz14-minisblack-1c-16b.sh.log: tiffcrop-extractz14-minisblack-1c-16b.sh
1439
+ @p='tiffcrop-extractz14-minisblack-1c-16b.sh'; \
1440
+ b='tiffcrop-extractz14-minisblack-1c-16b.sh'; \
1441
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1442
+ --log-file $$b.log --trs-file $$b.trs \
1443
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1444
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1445
+ tiffcrop-extractz14-minisblack-1c-8b.sh.log: tiffcrop-extractz14-minisblack-1c-8b.sh
1446
+ @p='tiffcrop-extractz14-minisblack-1c-8b.sh'; \
1447
+ b='tiffcrop-extractz14-minisblack-1c-8b.sh'; \
1448
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1449
+ --log-file $$b.log --trs-file $$b.trs \
1450
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1451
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1452
+ tiffcrop-extractz14-minisblack-2c-8b-alpha.sh.log: tiffcrop-extractz14-minisblack-2c-8b-alpha.sh
1453
+ @p='tiffcrop-extractz14-minisblack-2c-8b-alpha.sh'; \
1454
+ b='tiffcrop-extractz14-minisblack-2c-8b-alpha.sh'; \
1455
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1456
+ --log-file $$b.log --trs-file $$b.trs \
1457
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1458
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1459
+ tiffcrop-extractz14-miniswhite-1c-1b.sh.log: tiffcrop-extractz14-miniswhite-1c-1b.sh
1460
+ @p='tiffcrop-extractz14-miniswhite-1c-1b.sh'; \
1461
+ b='tiffcrop-extractz14-miniswhite-1c-1b.sh'; \
1462
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1463
+ --log-file $$b.log --trs-file $$b.trs \
1464
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1465
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1466
+ tiffcrop-extractz14-palette-1c-1b.sh.log: tiffcrop-extractz14-palette-1c-1b.sh
1467
+ @p='tiffcrop-extractz14-palette-1c-1b.sh'; \
1468
+ b='tiffcrop-extractz14-palette-1c-1b.sh'; \
1469
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1470
+ --log-file $$b.log --trs-file $$b.trs \
1471
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1472
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1473
+ tiffcrop-extractz14-palette-1c-4b.sh.log: tiffcrop-extractz14-palette-1c-4b.sh
1474
+ @p='tiffcrop-extractz14-palette-1c-4b.sh'; \
1475
+ b='tiffcrop-extractz14-palette-1c-4b.sh'; \
1476
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1477
+ --log-file $$b.log --trs-file $$b.trs \
1478
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1479
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1480
+ tiffcrop-extractz14-palette-1c-8b.sh.log: tiffcrop-extractz14-palette-1c-8b.sh
1481
+ @p='tiffcrop-extractz14-palette-1c-8b.sh'; \
1482
+ b='tiffcrop-extractz14-palette-1c-8b.sh'; \
1483
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1484
+ --log-file $$b.log --trs-file $$b.trs \
1485
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1486
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1487
+ tiffcrop-extractz14-rgb-3c-16b.sh.log: tiffcrop-extractz14-rgb-3c-16b.sh
1488
+ @p='tiffcrop-extractz14-rgb-3c-16b.sh'; \
1489
+ b='tiffcrop-extractz14-rgb-3c-16b.sh'; \
1490
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1491
+ --log-file $$b.log --trs-file $$b.trs \
1492
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1493
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1494
+ tiffcrop-extractz14-rgb-3c-8b.sh.log: tiffcrop-extractz14-rgb-3c-8b.sh
1495
+ @p='tiffcrop-extractz14-rgb-3c-8b.sh'; \
1496
+ b='tiffcrop-extractz14-rgb-3c-8b.sh'; \
1497
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1498
+ --log-file $$b.log --trs-file $$b.trs \
1499
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1500
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1501
+ tiffcrop-R90-logluv-3c-16b.sh.log: tiffcrop-R90-logluv-3c-16b.sh
1502
+ @p='tiffcrop-R90-logluv-3c-16b.sh'; \
1503
+ b='tiffcrop-R90-logluv-3c-16b.sh'; \
1504
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1505
+ --log-file $$b.log --trs-file $$b.trs \
1506
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1507
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1508
+ tiffcrop-R90-minisblack-1c-16b.sh.log: tiffcrop-R90-minisblack-1c-16b.sh
1509
+ @p='tiffcrop-R90-minisblack-1c-16b.sh'; \
1510
+ b='tiffcrop-R90-minisblack-1c-16b.sh'; \
1511
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1512
+ --log-file $$b.log --trs-file $$b.trs \
1513
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1514
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1515
+ tiffcrop-R90-minisblack-1c-8b.sh.log: tiffcrop-R90-minisblack-1c-8b.sh
1516
+ @p='tiffcrop-R90-minisblack-1c-8b.sh'; \
1517
+ b='tiffcrop-R90-minisblack-1c-8b.sh'; \
1518
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1519
+ --log-file $$b.log --trs-file $$b.trs \
1520
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1521
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1522
+ tiffcrop-R90-minisblack-2c-8b-alpha.sh.log: tiffcrop-R90-minisblack-2c-8b-alpha.sh
1523
+ @p='tiffcrop-R90-minisblack-2c-8b-alpha.sh'; \
1524
+ b='tiffcrop-R90-minisblack-2c-8b-alpha.sh'; \
1525
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1526
+ --log-file $$b.log --trs-file $$b.trs \
1527
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1528
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1529
+ tiffcrop-R90-miniswhite-1c-1b.sh.log: tiffcrop-R90-miniswhite-1c-1b.sh
1530
+ @p='tiffcrop-R90-miniswhite-1c-1b.sh'; \
1531
+ b='tiffcrop-R90-miniswhite-1c-1b.sh'; \
1532
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1533
+ --log-file $$b.log --trs-file $$b.trs \
1534
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1535
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1536
+ tiffcrop-R90-palette-1c-1b.sh.log: tiffcrop-R90-palette-1c-1b.sh
1537
+ @p='tiffcrop-R90-palette-1c-1b.sh'; \
1538
+ b='tiffcrop-R90-palette-1c-1b.sh'; \
1539
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1540
+ --log-file $$b.log --trs-file $$b.trs \
1541
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1542
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1543
+ tiffcrop-R90-palette-1c-4b.sh.log: tiffcrop-R90-palette-1c-4b.sh
1544
+ @p='tiffcrop-R90-palette-1c-4b.sh'; \
1545
+ b='tiffcrop-R90-palette-1c-4b.sh'; \
1546
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1547
+ --log-file $$b.log --trs-file $$b.trs \
1548
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1549
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1550
+ tiffcrop-R90-palette-1c-8b.sh.log: tiffcrop-R90-palette-1c-8b.sh
1551
+ @p='tiffcrop-R90-palette-1c-8b.sh'; \
1552
+ b='tiffcrop-R90-palette-1c-8b.sh'; \
1553
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1554
+ --log-file $$b.log --trs-file $$b.trs \
1555
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1556
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1557
+ tiffcrop-R90-rgb-3c-16b.sh.log: tiffcrop-R90-rgb-3c-16b.sh
1558
+ @p='tiffcrop-R90-rgb-3c-16b.sh'; \
1559
+ b='tiffcrop-R90-rgb-3c-16b.sh'; \
1560
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1561
+ --log-file $$b.log --trs-file $$b.trs \
1562
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1563
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1564
+ tiffcrop-R90-rgb-3c-8b.sh.log: tiffcrop-R90-rgb-3c-8b.sh
1565
+ @p='tiffcrop-R90-rgb-3c-8b.sh'; \
1566
+ b='tiffcrop-R90-rgb-3c-8b.sh'; \
1567
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1568
+ --log-file $$b.log --trs-file $$b.trs \
1569
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1570
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1571
+ tiff2bw-palette-1c-8b.sh.log: tiff2bw-palette-1c-8b.sh
1572
+ @p='tiff2bw-palette-1c-8b.sh'; \
1573
+ b='tiff2bw-palette-1c-8b.sh'; \
1574
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1575
+ --log-file $$b.log --trs-file $$b.trs \
1576
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1577
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1578
+ tiff2bw-quad-lzw-compat.sh.log: tiff2bw-quad-lzw-compat.sh
1579
+ @p='tiff2bw-quad-lzw-compat.sh'; \
1580
+ b='tiff2bw-quad-lzw-compat.sh'; \
1581
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1582
+ --log-file $$b.log --trs-file $$b.trs \
1583
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1584
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1585
+ tiff2bw-rgb-3c-8b.sh.log: tiff2bw-rgb-3c-8b.sh
1586
+ @p='tiff2bw-rgb-3c-8b.sh'; \
1587
+ b='tiff2bw-rgb-3c-8b.sh'; \
1588
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1589
+ --log-file $$b.log --trs-file $$b.trs \
1590
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1591
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1592
+ tiff2rgba-logluv-3c-16b.sh.log: tiff2rgba-logluv-3c-16b.sh
1593
+ @p='tiff2rgba-logluv-3c-16b.sh'; \
1594
+ b='tiff2rgba-logluv-3c-16b.sh'; \
1595
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1596
+ --log-file $$b.log --trs-file $$b.trs \
1597
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1598
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1599
+ tiff2rgba-minisblack-1c-16b.sh.log: tiff2rgba-minisblack-1c-16b.sh
1600
+ @p='tiff2rgba-minisblack-1c-16b.sh'; \
1601
+ b='tiff2rgba-minisblack-1c-16b.sh'; \
1602
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1603
+ --log-file $$b.log --trs-file $$b.trs \
1604
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1605
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1606
+ tiff2rgba-minisblack-1c-8b.sh.log: tiff2rgba-minisblack-1c-8b.sh
1607
+ @p='tiff2rgba-minisblack-1c-8b.sh'; \
1608
+ b='tiff2rgba-minisblack-1c-8b.sh'; \
1609
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1610
+ --log-file $$b.log --trs-file $$b.trs \
1611
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1612
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1613
+ tiff2rgba-minisblack-2c-8b-alpha.sh.log: tiff2rgba-minisblack-2c-8b-alpha.sh
1614
+ @p='tiff2rgba-minisblack-2c-8b-alpha.sh'; \
1615
+ b='tiff2rgba-minisblack-2c-8b-alpha.sh'; \
1616
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1617
+ --log-file $$b.log --trs-file $$b.trs \
1618
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1619
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1620
+ tiff2rgba-miniswhite-1c-1b.sh.log: tiff2rgba-miniswhite-1c-1b.sh
1621
+ @p='tiff2rgba-miniswhite-1c-1b.sh'; \
1622
+ b='tiff2rgba-miniswhite-1c-1b.sh'; \
1623
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1624
+ --log-file $$b.log --trs-file $$b.trs \
1625
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1626
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1627
+ tiff2rgba-palette-1c-1b.sh.log: tiff2rgba-palette-1c-1b.sh
1628
+ @p='tiff2rgba-palette-1c-1b.sh'; \
1629
+ b='tiff2rgba-palette-1c-1b.sh'; \
1630
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1631
+ --log-file $$b.log --trs-file $$b.trs \
1632
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1633
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1634
+ tiff2rgba-palette-1c-4b.sh.log: tiff2rgba-palette-1c-4b.sh
1635
+ @p='tiff2rgba-palette-1c-4b.sh'; \
1636
+ b='tiff2rgba-palette-1c-4b.sh'; \
1637
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1638
+ --log-file $$b.log --trs-file $$b.trs \
1639
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1640
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1641
+ tiff2rgba-palette-1c-8b.sh.log: tiff2rgba-palette-1c-8b.sh
1642
+ @p='tiff2rgba-palette-1c-8b.sh'; \
1643
+ b='tiff2rgba-palette-1c-8b.sh'; \
1644
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1645
+ --log-file $$b.log --trs-file $$b.trs \
1646
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1647
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1648
+ tiff2rgba-rgb-3c-16b.sh.log: tiff2rgba-rgb-3c-16b.sh
1649
+ @p='tiff2rgba-rgb-3c-16b.sh'; \
1650
+ b='tiff2rgba-rgb-3c-16b.sh'; \
1651
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1652
+ --log-file $$b.log --trs-file $$b.trs \
1653
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1654
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1655
+ tiff2rgba-rgb-3c-8b.sh.log: tiff2rgba-rgb-3c-8b.sh
1656
+ @p='tiff2rgba-rgb-3c-8b.sh'; \
1657
+ b='tiff2rgba-rgb-3c-8b.sh'; \
1658
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1659
+ --log-file $$b.log --trs-file $$b.trs \
1660
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1661
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1662
+ tiff2rgba-quad-tile.jpg.sh.log: tiff2rgba-quad-tile.jpg.sh
1663
+ @p='tiff2rgba-quad-tile.jpg.sh'; \
1664
+ b='tiff2rgba-quad-tile.jpg.sh'; \
1665
+ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
1666
+ --log-file $$b.log --trs-file $$b.trs \
1667
+ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
1668
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1669
+ .test.log:
1670
+ @p='$<'; \
1671
+ $(am__set_b); \
1672
+ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1673
+ --log-file $$b.log --trs-file $$b.trs \
1674
+ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1675
+ "$$tst" $(AM_TESTS_FD_REDIRECT)
1676
+ @am__EXEEXT_TRUE@.test$(EXEEXT).log:
1677
+ @am__EXEEXT_TRUE@ @p='$<'; \
1678
+ @am__EXEEXT_TRUE@ $(am__set_b); \
1679
+ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
1680
+ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
1681
+ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
1682
+ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
1683
+
1684
+ distdir: $(DISTFILES)
1685
+ @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1686
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
1687
+ list='$(DISTFILES)'; \
1688
+ dist_files=`for file in $$list; do echo $$file; done | \
1689
+ sed -e "s|^$$srcdirstrip/||;t" \
1690
+ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
1691
+ case $$dist_files in \
1692
+ */*) $(MKDIR_P) `echo "$$dist_files" | \
1693
+ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
1694
+ sort -u` ;; \
1695
+ esac; \
1696
+ for file in $$dist_files; do \
1697
+ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
1698
+ if test -d $$d/$$file; then \
1699
+ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
1700
+ if test -d "$(distdir)/$$file"; then \
1701
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1702
+ fi; \
1703
+ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
1704
+ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
1705
+ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
1706
+ fi; \
1707
+ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
1708
+ else \
1709
+ test -f "$(distdir)/$$file" \
1710
+ || cp -p $$d/$$file "$(distdir)/$$file" \
1711
+ || exit 1; \
1712
+ fi; \
1713
+ done
1714
+ check-am: all-am
1715
+ $(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
1716
+ $(MAKE) $(AM_MAKEFLAGS) check-TESTS
1717
+ check: check-am
1718
+ all-am: Makefile $(HEADERS)
1719
+ installdirs:
1720
+ install: install-am
1721
+ install-exec: install-exec-am
1722
+ install-data: install-data-am
1723
+ uninstall: uninstall-am
1724
+
1725
+ install-am: all-am
1726
+ @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
1727
+
1728
+ installcheck: installcheck-am
1729
+ install-strip:
1730
+ if test -z '$(STRIP)'; then \
1731
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1732
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1733
+ install; \
1734
+ else \
1735
+ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
1736
+ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
1737
+ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
1738
+ fi
1739
+ mostlyclean-generic:
1740
+ -test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
1741
+ -test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
1742
+ -test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
1743
+
1744
+ clean-generic:
1745
+ -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
1746
+
1747
+ distclean-generic:
1748
+ -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
1749
+ -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
1750
+
1751
+ maintainer-clean-generic:
1752
+ @echo "This command is intended for maintainers to use"
1753
+ @echo "it deletes files that may require special tools to rebuild."
1754
+ clean: clean-am
1755
+
1756
+ clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
1757
+ mostlyclean-am
1758
+
1759
+ distclean: distclean-am
1760
+ -rm -rf ./$(DEPDIR)
1761
+ -rm -f Makefile
1762
+ distclean-am: clean-am distclean-compile distclean-generic \
1763
+ distclean-tags
1764
+
1765
+ dvi: dvi-am
1766
+
1767
+ dvi-am:
1768
+
1769
+ html: html-am
1770
+
1771
+ html-am:
1772
+
1773
+ info: info-am
1774
+
1775
+ info-am:
1776
+
1777
+ install-data-am:
1778
+
1779
+ install-dvi: install-dvi-am
1780
+
1781
+ install-dvi-am:
1782
+
1783
+ install-exec-am:
1784
+
1785
+ install-html: install-html-am
1786
+
1787
+ install-html-am:
1788
+
1789
+ install-info: install-info-am
1790
+
1791
+ install-info-am:
1792
+
1793
+ install-man:
1794
+
1795
+ install-pdf: install-pdf-am
1796
+
1797
+ install-pdf-am:
1798
+
1799
+ install-ps: install-ps-am
1800
+
1801
+ install-ps-am:
1802
+
1803
+ installcheck-am:
1804
+
1805
+ maintainer-clean: maintainer-clean-am
1806
+ -rm -rf ./$(DEPDIR)
1807
+ -rm -f Makefile
1808
+ maintainer-clean-am: distclean-am maintainer-clean-generic
1809
+
1810
+ mostlyclean: mostlyclean-am
1811
+
1812
+ mostlyclean-am: mostlyclean-compile mostlyclean-generic \
1813
+ mostlyclean-libtool
1814
+
1815
+ pdf: pdf-am
1816
+
1817
+ pdf-am:
1818
+
1819
+ ps: ps-am
1820
+
1821
+ ps-am:
1822
+
1823
+ uninstall-am:
1824
+
1825
+ .MAKE: check-am install-am install-strip
1826
+
1827
+ .PHONY: CTAGS GTAGS TAGS all all-am check check-TESTS check-am clean \
1828
+ clean-checkPROGRAMS clean-generic clean-libtool cscopelist-am \
1829
+ ctags ctags-am distclean distclean-compile distclean-generic \
1830
+ distclean-libtool distclean-tags distdir dvi dvi-am html \
1831
+ html-am info info-am install install-am install-data \
1832
+ install-data-am install-dvi install-dvi-am install-exec \
1833
+ install-exec-am install-html install-html-am install-info \
1834
+ install-info-am install-man install-pdf install-pdf-am \
1835
+ install-ps install-ps-am install-strip installcheck \
1836
+ installcheck-am installdirs maintainer-clean \
1837
+ maintainer-clean-generic mostlyclean mostlyclean-compile \
1838
+ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
1839
+ recheck tags tags-am uninstall uninstall-am
1840
+
1841
+ .PRECIOUS: Makefile
1842
+
1843
+
1844
+ # memcheck: valgrind's memory access checker.
1845
+ #
1846
+ # The suppressions which come with valgrind are sometimes insufficient
1847
+ # to handle certain system library aspects which may be reported and
1848
+ # which are unrelated to libtiff. When first starting with a new
1849
+ # system (or after a major system update), it is good to execute the
1850
+ # test suite (known to already be passing!) like 'make memcheck
1851
+ # VALGRIND_EXTRA_OPTS=--gen-suppressions=all' to create valgrind
1852
+ # suppression entries in the test log. Make sure that none of the
1853
+ # suppressions are due to libtiff itself. Tell valgrind about the
1854
+ # suppressions by creating a .valgrindrc file with content like:
1855
+ # --memcheck:suppressions=mysupp.supp
1856
+ memcheck:
1857
+ $(MAKE) MEMCHECK='valgrind --tool=memcheck --leak-check=full --read-var-info=yes \
1858
+ --error-exitcode=2 --track-origins=yes --num-callers=12 \
1859
+ --quiet $(VALGRIND_EXTRA_OPTS)' check
1860
+
1861
+ # ptrcheck: valgrind's experimental pointer checking tool.
1862
+ ptrcheck:
1863
+ $(MAKE) MEMCHECK='valgrind --tool=exp-ptrcheck --quiet $(VALGRIND_EXTRA_OPTS)' check
1864
+
1865
+ # tiff2bw is pretty lame so currently only the generated scripts
1866
+ # tiff2bw-palette-1c-8b.sh, tiff2bw-quad-lzw-compat.sh, and
1867
+ # tiff2bw-rgb-3c-8b.sh pass tests.
1868
+ generate-tiff2bw-tests:
1869
+ for file in $(TIFFIMAGES) ; \
1870
+ do \
1871
+ base=`basename $$file .tiff` ; \
1872
+ testscript=$(srcdir)/tiff2bw-$$base.sh ; \
1873
+ ( \
1874
+ echo "#!/bin/sh" ; \
1875
+ echo "# Generated file, master is Makefile.am" ; \
1876
+ echo ". \$${srcdir:-.}/common.sh" ; \
1877
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1878
+ echo "outfile=\"o-tiff2bw-$$base.tiff\"" ; \
1879
+ echo "f_test_convert \"\$$TIFF2BW\" \$$infile \$$outfile" ; \
1880
+ echo "f_tiffinfo_validate \$$outfile" ; \
1881
+ ) > $$testscript ; \
1882
+ chmod +x $$testscript ; \
1883
+ done
1884
+
1885
+ generate-tiff2rgba-tests:
1886
+ for file in $(TIFFIMAGES) ; \
1887
+ do \
1888
+ base=`basename $$file .tiff` ; \
1889
+ testscript=$(srcdir)/tiff2rgba-$$base.sh ; \
1890
+ ( \
1891
+ echo "#!/bin/sh" ; \
1892
+ echo "# Generated file, master is Makefile.am" ; \
1893
+ echo ". \$${srcdir:-.}/common.sh" ; \
1894
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1895
+ echo "outfile=\"o-tiff2rgba-$$base.tiff\"" ; \
1896
+ echo "f_test_convert \"\$$TIFF2RGBA\" \$$infile \$$outfile" ; \
1897
+ echo "f_tiffinfo_validate \$$outfile" ; \
1898
+ ) > $$testscript ; \
1899
+ chmod +x $$testscript ; \
1900
+ done
1901
+
1902
+ # Test rotations
1903
+ generate-tiffcrop-R90-tests:
1904
+ for file in $(TIFFIMAGES) ; \
1905
+ do \
1906
+ base=`basename $$file .tiff` ; \
1907
+ testscript=$(srcdir)/tiffcrop-R90-$$base.sh ; \
1908
+ ( \
1909
+ echo "#!/bin/sh" ; \
1910
+ echo "# Generated file, master is Makefile.am" ; \
1911
+ echo ". \$${srcdir:-.}/common.sh" ; \
1912
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1913
+ echo "outfile=\"o-tiffcrop-R90-$$base.tiff\"" ; \
1914
+ echo "f_test_convert \"\$$TIFFCROP -R90\" \$$infile \$$outfile" ; \
1915
+ echo "f_tiffinfo_validate \$$outfile" ; \
1916
+ ) > $$testscript ; \
1917
+ chmod +x $$testscript ; \
1918
+ done
1919
+
1920
+ # Test flip (mirror)
1921
+ generate-tiffcrop-doubleflip-tests:
1922
+ for file in $(TIFFIMAGES) ; \
1923
+ do \
1924
+ base=`basename $$file .tiff` ; \
1925
+ testscript=$(srcdir)/tiffcrop-doubleflip-$$base.sh ; \
1926
+ ( \
1927
+ echo "#!/bin/sh" ; \
1928
+ echo "# Generated file, master is Makefile.am" ; \
1929
+ echo ". \$${srcdir:-.}/common.sh" ; \
1930
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1931
+ echo "outfile=\"o-tiffcrop-doubleflip-$$base.tiff\"" ; \
1932
+ echo "f_test_convert \"\$$TIFFCROP -F both\" \$$infile \$$outfile" ; \
1933
+ echo "f_tiffinfo_validate \$$outfile" ; \
1934
+ ) > $$testscript ; \
1935
+ chmod +x $$testscript ; \
1936
+ done
1937
+
1938
+ # Test extracting a section 100 pixels wide and 100 pixels high
1939
+ generate-tiffcrop-extract-tests:
1940
+ for file in $(TIFFIMAGES) ; \
1941
+ do \
1942
+ base=`basename $$file .tiff` ; \
1943
+ testscript=$(srcdir)/tiffcrop-extract-$$base.sh ; \
1944
+ ( \
1945
+ echo "#!/bin/sh" ; \
1946
+ echo "# Generated file, master is Makefile.am" ; \
1947
+ echo ". \$${srcdir:-.}/common.sh" ; \
1948
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1949
+ echo "outfile=\"o-tiffcrop-extract-$$base.tiff\"" ; \
1950
+ echo "f_test_convert \"\$$TIFFCROP -U px -E top -X 60 -Y 60\" \$$infile \$$outfile" ; \
1951
+ echo "f_tiffinfo_validate \$$outfile" ; \
1952
+ ) > $$testscript ; \
1953
+ chmod +x $$testscript ; \
1954
+ done
1955
+
1956
+ # Test extracting the first and fourth quarters from the left side.
1957
+ generate-tiffcrop-extractz14-tests:
1958
+ for file in $(TIFFIMAGES) ; \
1959
+ do \
1960
+ base=`basename $$file .tiff` ; \
1961
+ testscript=$(srcdir)/tiffcrop-extractz14-$$base.sh ; \
1962
+ ( \
1963
+ echo "#!/bin/sh" ; \
1964
+ echo "# Generated file, master is Makefile.am" ; \
1965
+ echo ". \$${srcdir:-.}/common.sh" ; \
1966
+ echo "infile=\"\$$srcdir/$$file\"" ; \
1967
+ echo "outfile=\"o-tiffcrop-extractz14-$$base.tiff\"" ; \
1968
+ echo "f_test_convert \"\$$TIFFCROP -E left -Z1:4,2:4\" \$$infile \$$outfile" ; \
1969
+ echo "f_tiffinfo_validate \$$outfile" ; \
1970
+ ) > $$testscript ; \
1971
+ chmod +x $$testscript ; \
1972
+ done
1973
+
1974
+ generate-tiffcrop-tests: \
1975
+ generate-tiffcrop-R90-tests \
1976
+ generate-tiffcrop-doubleflip-tests \
1977
+ generate-tiffcrop-extract-tests \
1978
+ generate-tiffcrop-extractz14-tests
1979
+
1980
+ generate-tests: \
1981
+ generate-tiff2bw-tests \
1982
+ generate-tiff2rgba-tests \
1983
+ generate-tiffcrop-tests
1984
+
1985
+ # Tell versions [3.59,3.63) of GNU make to not export all variables.
1986
+ # Otherwise a system limit (for SysV at least) may be exceeded.
1987
+ .NOEXPORT: