Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSami Liedes <sami.liedes@iki.fi>2022-05-01 12:25:35 +0300
committerSami Liedes <sami.liedes@iki.fi>2022-05-01 12:25:35 +0300
commit2fadcd053f156345d46ec0689ee8f7eaf99c9e19 (patch)
tree99d1f8678623c4b43b375da51dde24a03325b888 /plugins
parentab226404f7fc4cb48e398ccfe4613f7d1c75acae (diff)
Fix out-of-tree build. Requires rerunning autoconf.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/fast_float/testbed/Makefile.am11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/fast_float/testbed/Makefile.am b/plugins/fast_float/testbed/Makefile.am
index 5133be0..a74ac32 100644
--- a/plugins/fast_float/testbed/Makefile.am
+++ b/plugins/fast_float/testbed/Makefile.am
@@ -6,17 +6,16 @@
AUTOMAKE_OPTIONS = 1.7 foreign
AM_CPPFLAGS = -I$(builddir)/../include -I$(srcdir)/../include -I$(srcdir)/../src \
- -I$(top_builddir)/include
+ -I$(top_builddir)/include
check_PROGRAMS = fast_float_testbed
-fast_float_testbed_LDADD = $(srcdir)/../src/liblcms2_fast_float.la $(LCMS_LIB_DEPLIBS)
+fast_float_testbed_LDADD = $(builddir)/../src/liblcms2_fast_float.la $(LCMS_LIB_DEPLIBS)
fast_float_testbed_LDFLAGS = -static @LDFLAGS@
-fast_float_testbed_SOURCES = fast_float_testbed.c
+fast_float_testbed_SOURCES = fast_float_testbed.c
-EXTRA_DIST = test0.icc test1.icc test2.icc test3.icc test5.icc
+EXTRA_DIST = test0.icc test1.icc test2.icc test3.icc test5.icc
check:
+ cp $(srcdir)/test?.icc .
./fast_float_testbed
-
-