# Tag Image File Format (TIFF) Software # # Copyright (C) 2004, Andrey Kiselev # # Permission to use, copy, modify, distribute, and sell this software and # its documentation for any purpose is hereby granted without fee, provided # that (i) the above copyright notices and this permission notice appear in # all copies of the software and related documentation, and (ii) the names of # Sam Leffler and Silicon Graphics may not be used in any advertising or # publicity relating to the software without the specific, prior written # permission of Sam Leffler and Silicon Graphics. # # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. # # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE # OF THIS SOFTWARE. # Process this file with automake to produce Makefile.in. LIBPORT = -L$(top_builddir)/port -lport LIBTIFF = -L$(top_builddir)/libtiff -ltiff EXTRA_DIST = Makefile.vc if HAVE_OPENGL BIN_TIFFGT = tiffgt else BIN_TIFFGT = endif bin_PROGRAMS = \ fax2ps \ fax2tiff \ gif2tiff \ pal2rgb \ ppm2tiff \ ras2tiff \ raw2tiff \ rgb2ycbcr \ thumbnail \ tiff2bw \ tiff2pdf \ tiff2ps \ tiff2rgba \ tiffcmp \ tiffcp \ tiffdither \ tiffdump \ tiffinfo \ tiffmedian \ tiffset \ tiffsplit \ $(BIN_TIFFGT) EXTRA_PROGRAMS = $(BIN_TIFFGT) sgi2tiff sgisv ycbcr fax2ps_SOURCES = fax2ps.c fax2ps_LDADD = $(LIBTIFF) $(LIBPORT) fax2tiff_SOURCES = fax2tiff.c fax2tiff_LDADD = $(LIBTIFF) $(LIBPORT) gif2tiff_SOURCES = gif2tiff.c gif2tiff_LDADD = $(LIBTIFF) $(LIBPORT) pal2rgb_SOURCES = pal2rgb.c pal2rgb_LDADD = $(LIBTIFF) $(LIBPORT) ppm2tiff_SOURCES = ppm2tiff.c ppm2tiff_LDADD = $(LIBTIFF) $(LIBPORT) ras2tiff_SOURCES = ras2tiff.c ras2tiff_LDADD = $(LIBTIFF) $(LIBPORT) raw2tiff_SOURCES = raw2tiff.c raw2tiff_LDADD = $(LIBTIFF) $(LIBPORT) rgb2ycbcr_SOURCES = rgb2ycbcr.c rgb2ycbcr_LDADD = $(LIBTIFF) $(LIBPORT) thumbnail_SOURCES = thumbnail.c thumbnail_LDADD = $(LIBTIFF) $(LIBPORT) tiff2bw_SOURCES = tiff2bw.c tiff2bw_LDADD = $(LIBTIFF) $(LIBPORT) tiff2pdf_SOURCES = tiff2pdf.c tiff2pdf_LDADD = $(LIBTIFF) $(LIBPORT) tiff2ps_SOURCES = tiff2ps.c tiff2ps_LDADD = $(LIBTIFF) $(LIBPORT) tiff2rgba_SOURCES = tiff2rgba.c tiff2rgba_LDADD = $(LIBTIFF) $(LIBPORT) tiffcmp_SOURCES = tiffcmp.c tiffcmp_LDADD = $(LIBTIFF) $(LIBPORT) tiffcp_SOURCES = tiffcp.c tiffcp_LDADD = $(LIBTIFF) $(LIBPORT) tiffdither_SOURCES = tiffdither.c tiffdither_LDADD = $(LIBTIFF) $(LIBPORT) tiffdump_SOURCES = tiffdump.c tiffdump_LDADD = $(LIBTIFF) $(LIBPORT) tiffinfo_SOURCES = tiffinfo.c tiffinfo_LDADD = $(LIBTIFF) $(LIBPORT) tiffmedian_SOURCES = tiffmedian.c tiffmedian_LDADD = $(LIBTIFF) $(LIBPORT) tiffset_SOURCES = tiffset.c tiffset_LDADD = $(LIBTIFF) $(LIBPORT) tiffsplit_SOURCES = tiffsplit.c tiffsplit_LDADD = $(LIBTIFF) $(LIBPORT) tiffgt_SOURCES = tiffgt.c tiffgt_LDADD = $(LIBTIFF) $(LIBPORT) @OPENGL_LIBS@ INCLUDES = -I$(top_srcdir)/libtiff