2016-05-10 15:48:03 +02:00
|
|
|
# don't run test_thumbnail.sh by default, it takes ages
|
2017-09-13 18:45:29 +02:00
|
|
|
TESTS = \
|
2019-12-29 22:40:21 +01:00
|
|
|
test_connections.sh \
|
2019-10-06 08:25:09 +02:00
|
|
|
test_descriptors.sh \
|
2016-05-10 15:48:03 +02:00
|
|
|
test_cli.sh \
|
|
|
|
test_formats.sh \
|
|
|
|
test_seq.sh \
|
2019-12-18 15:41:35 +01:00
|
|
|
test_stall.sh \
|
2016-05-10 15:48:03 +02:00
|
|
|
test_threading.sh
|
2014-11-19 16:01:28 +01:00
|
|
|
|
2018-07-25 18:17:13 +02:00
|
|
|
SUBDIRS = \
|
|
|
|
test-suite
|
|
|
|
|
2019-10-06 08:25:09 +02:00
|
|
|
noinst_PROGRAMS = \
|
2019-11-24 19:22:43 +01:00
|
|
|
test_descriptors \
|
2019-12-29 22:40:21 +01:00
|
|
|
test_connections
|
2019-10-06 08:25:09 +02:00
|
|
|
|
|
|
|
test_descriptors_SOURCES = \
|
|
|
|
test_descriptors.c
|
|
|
|
|
2019-12-29 22:40:21 +01:00
|
|
|
test_connections_SOURCES = \
|
|
|
|
test_connections.c
|
2019-11-24 19:22:43 +01:00
|
|
|
|
2019-10-06 08:25:09 +02:00
|
|
|
AM_CPPFLAGS = -I${top_srcdir}/libvips/include @VIPS_CFLAGS@ @VIPS_INCLUDES@
|
|
|
|
AM_LDFLAGS = @LDFLAGS@
|
|
|
|
LDADD = @VIPS_CFLAGS@ ${top_builddir}/libvips/libvips.la @VIPS_LIBS@
|
|
|
|
|
2014-11-19 16:01:28 +01:00
|
|
|
EXTRA_DIST = \
|
2014-11-20 15:36:04 +01:00
|
|
|
variables.sh.in \
|
|
|
|
test_cli.sh \
|
2019-11-24 19:22:43 +01:00
|
|
|
test_descriptors.sh \
|
2019-12-29 22:40:21 +01:00
|
|
|
test_connections.sh \
|
2014-11-20 15:36:04 +01:00
|
|
|
test_formats.sh \
|
|
|
|
test_seq.sh \
|
|
|
|
test_thumbnail.sh \
|
2019-12-18 15:41:35 +01:00
|
|
|
test_stall.sh \
|
2017-09-13 18:45:29 +02:00
|
|
|
test_threading.sh
|
2014-11-19 16:01:28 +01:00
|
|
|
|
2014-11-20 15:36:04 +01:00
|
|
|
clean-local:
|
2014-12-20 23:25:19 +01:00
|
|
|
-rm -rf tmp-*
|
2014-11-20 15:36:04 +01:00
|
|
|
|