~ubuntu-branches/ubuntu/vivid/tiff/vivid-proposed

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Jay Berkenbilt
  • Date: 2012-06-24 13:45:42 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120624134542-2xxi2i0ytrcddfdx
Tags: 4.0.2-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
CLEANFILES = test_packbits.tif o-*
49
49
 
50
50
# Executable programs which need to be built in order to support tests
51
 
check_PROGRAMS = ascii_tag long_tag short_tag strip_rw rewrite
 
51
check_PROGRAMS = ascii_tag long_tag short_tag strip_rw rewrite raw_decode custom_dir
52
52
 
53
53
# Test scripts to execute
54
54
TESTSCRIPTS = \
124
124
        tiff2rgba-palette-1c-4b.sh \
125
125
        tiff2rgba-palette-1c-8b.sh \
126
126
        tiff2rgba-rgb-3c-16b.sh \
127
 
        tiff2rgba-rgb-3c-8b.sh
 
127
        tiff2rgba-rgb-3c-8b.sh \
 
128
        tiff2rgba-quad-tile.jpg.sh
128
129
 
129
130
# This list should contain all of the TIFF files in the 'images'
130
131
# subdirectory which are intended to be used as input images for
139
140
        images/palette-1c-4b.tiff \
140
141
        images/palette-1c-8b.tiff \
141
142
        images/rgb-3c-16b.tiff \
142
 
        images/rgb-3c-8b.tiff
 
143
        images/rgb-3c-8b.tiff \
 
144
        images/quad-tile.jpg.tiff
143
145
 
144
146
BMPIMAGES = \
145
147
        images/palette-1c-8b.bmp \
175
177
strip_rw_LDADD = $(LIBTIFF)
176
178
rewrite_SOURCES = rewrite_tag.c
177
179
rewrite_LDADD = $(LIBTIFF)
 
180
raw_decode_SOURCES = raw_decode.c
 
181
raw_decode_LDADD = $(LIBTIFF)
 
182
custom_dir_SOURCES = custom_dir.c
 
183
custom_dir_LDADD = $(LIBTIFF)
178
184
 
179
185
INCLUDES = -I$(top_srcdir)/libtiff
180
186