Built SDL2_image and _mixer static
This commit is contained in:
138
libsdl2_image/external/tiff-4.0.9/tools/Makefile.am
vendored
Normal file
138
libsdl2_image/external/tiff-4.0.9/tools/Makefile.am
vendored
Normal file
@ -0,0 +1,138 @@
|
||||
# Tag Image File Format (TIFF) Software
|
||||
#
|
||||
# Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
|
||||
#
|
||||
# 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 = $(top_builddir)/port/libport.la
|
||||
LIBTIFF = $(top_builddir)/libtiff/libtiff.la
|
||||
|
||||
EXTRA_DIST = \
|
||||
CMakeLists.txt \
|
||||
Makefile.vc
|
||||
|
||||
bin_PROGRAMS = \
|
||||
fax2ps \
|
||||
fax2tiff \
|
||||
pal2rgb \
|
||||
ppm2tiff \
|
||||
raw2tiff \
|
||||
tiff2bw \
|
||||
tiff2pdf \
|
||||
tiff2ps \
|
||||
tiff2rgba \
|
||||
tiffcmp \
|
||||
tiffcp \
|
||||
tiffcrop \
|
||||
tiffdither \
|
||||
tiffdump \
|
||||
tiffinfo \
|
||||
tiffmedian \
|
||||
tiffset \
|
||||
tiffsplit
|
||||
if HAVE_OPENGL
|
||||
bin_PROGRAMS += tiffgt
|
||||
endif
|
||||
|
||||
EXTRA_PROGRAMS = rgb2ycbcr thumbnail
|
||||
|
||||
# Executable programs which need to be built in order to support tests
|
||||
check_PROGRAMS = \
|
||||
rgb2ycbcr \
|
||||
thumbnail
|
||||
|
||||
if HAVE_RPATH
|
||||
AM_LDFLAGS = $(LIBDIR)
|
||||
endif
|
||||
|
||||
fax2ps_SOURCES = fax2ps.c
|
||||
fax2ps_LDADD = $(LIBTIFF) $(LIBPORT)
|
||||
|
||||
fax2tiff_SOURCES = fax2tiff.c
|
||||
fax2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
|
||||
|
||||
pal2rgb_SOURCES = pal2rgb.c
|
||||
pal2rgb_LDADD = $(LIBTIFF) $(LIBPORT)
|
||||
|
||||
ppm2tiff_SOURCES = ppm2tiff.c
|
||||
ppm2tiff_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)
|
||||
|
||||
tiffcrop_SOURCES = tiffcrop.c
|
||||
tiffcrop_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_CFLAGS = $(CFLAGS) $(GLUT_CFLAGS) $(AM_CFLAGS)
|
||||
tiffgt_LDADD = $(LIBTIFF) $(LIBPORT) $(X_LIBS) $(GLUT_LIBS)
|
||||
|
||||
AM_CPPFLAGS = -I$(top_srcdir)/libtiff
|
||||
|
||||
echo:
|
||||
(echo $(CFLAGS))
|
||||
(echo $(tiffgt_CFLAGS))
|
||||
(echo $(GL_CFLAGS))
|
||||
(echo $(GLU_CFLAGS))
|
||||
(echo $(GLUT_CFLAGS))
|
Reference in New Issue
Block a user