diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /src/3rdparty/libcroco/tests/Makefile.am | |
parent | Initial commit. (diff) | |
download | inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/3rdparty/libcroco/tests/Makefile.am')
-rw-r--r-- | src/3rdparty/libcroco/tests/Makefile.am | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/src/3rdparty/libcroco/tests/Makefile.am b/src/3rdparty/libcroco/tests/Makefile.am new file mode 100644 index 0000000..666eff8 --- /dev/null +++ b/src/3rdparty/libcroco/tests/Makefile.am @@ -0,0 +1,36 @@ +SUBDIRS = test-inputs test-output-refs +EXTRA_DIST = testctl vg.supp global-vars.sh.in valgrind-version.sh \ +test-prop-ident.sh test-unknown-at-rule.sh test-unknown-at-rule2.sh \ +test-several-media.sh + + +#the list of all possible tests goes here. + +EXTRALDFLAGS = $(CROCO_LIBS) +testprogs=test0 test1 test2 test3 test4 test5 test6 test7 test8 +noinst_PROGRAMS = $(testprogs) +test0_SOURCES = test0-main.c +test0_LDFLAGS = $(EXTRALDFLAGS) +test1_SOURCES = test1-main.c +test1_LDFLAGS = $(EXTRALDFLAGS) +test2_SOURCES = test2-main.c cr-test-utils.c cr-test-utils.h +test2_LDFLAGS = $(EXTRALDFLAGS) +test3_SOURCES = test3-main.c cr-test-utils.c cr-test-utils.h +test3_LDFLAGS = $(EXTRALDFLAGS) +test4_SOURCES = test4-main.c cr-test-utils.c cr-test-utils.h +test4_LDFLAGS = $(EXTRALDFLAGS) +test5_SOURCES = test5-main.c cr-test-utils.c cr-test-utils.h +test5_LDFLAGS = $(EXTRALDFLAGS) +test6_SOURCES = test6-main.c cr-test-utils.c cr-test-utils.h +test6_LDFLAGS = $(EXTRALDFLAGS) +test7_SOURCES = test7-main.c cr-test-utils.c cr-test-utils.h +test7_LDFLAGS = $(EXTRALDFLAGS) +test8_SOURCES = test8-main.c +test8_LDFLAGS = $(EXTRALDFLAGS) + +croco_lib = $(top_builddir)/src/@CROCO_LIB@ +LDADD = $(croco_lib) + +AM_CPPFLAGS = -I$(top_srcdir)/intl -I$(top_srcdir)/src -I$(top_builddir)/src + +AM_CFLAGS = -I. $(CROCO_CFLAGS) |