2016-05-10 14:48:03 +01:00
|
|
|
# don't run test_thumbnail.sh by default, it takes ages
|
2017-09-13 17:45:29 +01:00
|
|
|
TESTS = \
|
2019-12-29 21:40:21 +00:00
|
|
|
test_connections.sh \
|
2019-10-06 07:25:09 +01:00
|
|
|
test_descriptors.sh \
|
2016-05-10 14:48:03 +01:00
|
|
|
test_cli.sh \
|
|
|
|
test_formats.sh \
|
|
|
|
test_seq.sh \
|
2019-12-18 14:41:35 +00:00
|
|
|
test_stall.sh \
|
2016-05-10 14:48:03 +01:00
|
|
|
test_threading.sh
|
2014-11-19 15:01:28 +00:00
|
|
|
|
2018-07-25 17:17:13 +01:00
|
|
|
SUBDIRS = \
|
|
|
|
test-suite
|
|
|
|
|
2019-10-06 07:25:09 +01:00
|
|
|
noinst_PROGRAMS = \
|
2019-11-24 18:22:43 +00:00
|
|
|
test_descriptors \
|
2019-12-29 21:40:21 +00:00
|
|
|
test_connections
|
2019-10-06 07:25:09 +01:00
|
|
|
|
|
|
|
test_descriptors_SOURCES = \
|
|
|
|
test_descriptors.c
|
|
|
|
|
2019-12-29 21:40:21 +00:00
|
|
|
test_connections_SOURCES = \
|
|
|
|
test_connections.c
|
2019-11-24 18:22:43 +00:00
|
|
|
|
2019-10-06 07:25:09 +01: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 15:01:28 +00:00
|
|
|
EXTRA_DIST = \
|
2014-11-20 14:36:04 +00:00
|
|
|
variables.sh.in \
|
|
|
|
test_cli.sh \
|
2019-11-24 18:22:43 +00:00
|
|
|
test_descriptors.sh \
|
2019-12-29 21:40:21 +00:00
|
|
|
test_connections.sh \
|
2014-11-20 14:36:04 +00:00
|
|
|
test_formats.sh \
|
|
|
|
test_seq.sh \
|
|
|
|
test_thumbnail.sh \
|
2019-12-18 14:41:35 +00:00
|
|
|
test_stall.sh \
|
2017-09-13 17:45:29 +01:00
|
|
|
test_threading.sh
|
2014-11-19 15:01:28 +00:00
|
|
|
|
2014-11-20 14:36:04 +00:00
|
|
|
clean-local:
|
2014-12-20 22:25:19 +00:00
|
|
|
-rm -rf tmp-*
|
2014-11-20 14:36:04 +00:00
|
|
|
|