]> git.saurik.com Git - wxWidgets.git/blame - src/tiff/tools/Makefile.am
Fixed tab removal bug, and empty text element
[wxWidgets.git] / src / tiff / tools / Makefile.am
CommitLineData
8414a40c
VZ
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
26LIBPORT = $(top_builddir)/port/libport.la
27LIBTIFF = $(top_builddir)/libtiff/libtiff.la
28
29EXTRA_DIST = Makefile.vc
30
31bin_PROGRAMS = \
32 bmp2tiff \
33 fax2ps \
34 fax2tiff \
35 gif2tiff \
36 pal2rgb \
37 ppm2tiff \
38 ras2tiff \
39 raw2tiff \
40 rgb2ycbcr \
41 thumbnail \
42 tiff2bw \
43 tiff2pdf \
44 tiff2ps \
45 tiff2rgba \
46 tiffcmp \
47 tiffcp \
48 tiffdither \
49 tiffdump \
50 tiffinfo \
51 tiffmedian \
52 tiffset \
53 tiffsplit
54if HAVE_OPENGL
55bin_PROGRAMS += tiffgt
56endif
57
58EXTRA_PROGRAMS = sgi2tiff sgisv ycbcr
59
60if HAVE_RPATH
61AM_LDFLAGS = $(LIBDIR)
62endif
63
64bmp2tiff_SOURCES = bmp2tiff.c
65bmp2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
66
67fax2ps_SOURCES = fax2ps.c
68fax2ps_LDADD = $(LIBTIFF) $(LIBPORT)
69
70fax2tiff_SOURCES = fax2tiff.c
71fax2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
72
73gif2tiff_SOURCES = gif2tiff.c
74gif2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
75
76pal2rgb_SOURCES = pal2rgb.c
77pal2rgb_LDADD = $(LIBTIFF) $(LIBPORT)
78
79ppm2tiff_SOURCES = ppm2tiff.c
80ppm2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
81
82ras2tiff_SOURCES = ras2tiff.c rasterfile.h
83ras2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
84
85raw2tiff_SOURCES = raw2tiff.c
86raw2tiff_LDADD = $(LIBTIFF) $(LIBPORT)
87
88rgb2ycbcr_SOURCES = rgb2ycbcr.c
89rgb2ycbcr_LDADD = $(LIBTIFF) $(LIBPORT)
90
91thumbnail_SOURCES = thumbnail.c
92thumbnail_LDADD = $(LIBTIFF) $(LIBPORT)
93
94tiff2bw_SOURCES = tiff2bw.c
95tiff2bw_LDADD = $(LIBTIFF) $(LIBPORT)
96
97tiff2pdf_SOURCES = tiff2pdf.c
98tiff2pdf_LDADD = $(LIBTIFF) $(LIBPORT)
99
100tiff2ps_SOURCES = tiff2ps.c
101tiff2ps_LDADD = $(LIBTIFF) $(LIBPORT)
102
103tiff2rgba_SOURCES = tiff2rgba.c
104tiff2rgba_LDADD = $(LIBTIFF) $(LIBPORT)
105
106tiffcmp_SOURCES = tiffcmp.c
107tiffcmp_LDADD = $(LIBTIFF) $(LIBPORT)
108
109tiffcp_SOURCES = tiffcp.c
110tiffcp_LDADD = $(LIBTIFF) $(LIBPORT)
111
112tiffdither_SOURCES = tiffdither.c
113tiffdither_LDADD = $(LIBTIFF) $(LIBPORT)
114
115tiffdump_SOURCES = tiffdump.c
116tiffdump_LDADD = $(LIBTIFF) $(LIBPORT)
117
118tiffinfo_SOURCES = tiffinfo.c
119tiffinfo_LDADD = $(LIBTIFF) $(LIBPORT)
120
121tiffmedian_SOURCES = tiffmedian.c
122tiffmedian_LDADD = $(LIBTIFF) $(LIBPORT)
123
124tiffset_SOURCES = tiffset.c
125tiffset_LDADD = $(LIBTIFF) $(LIBPORT)
126
127tiffsplit_SOURCES = tiffsplit.c
128tiffsplit_LDADD = $(LIBTIFF) $(LIBPORT)
129
130tiffgt_SOURCES = tiffgt.c
131tiffgt_CFLAGS = $(CFLAGS) $(GLUT_CFLAGS) $(AM_CFLAGS)
132tiffgt_LDADD = $(LIBTIFF) $(LIBPORT) $(X_LIBS) $(GLUT_LIBS)
133
134INCLUDES = -I$(top_srcdir)/libtiff
135
136echo:
137 (echo $(CFLAGS))
138 (echo $(tiffgt_CFLAGS))
139 (echo $(GL_CFLAGS))
140 (echo $(GLU_CFLAGS))
141 (echo $(GLUT_CFLAGS))