Imported Upstream version 1.2.7
[platform/upstream/harfbuzz.git] / test / shaping / Makefile.am
1 # Process this file with automake to produce Makefile.in
2
3 NULL =
4 EXTRA_DIST =
5 CLEANFILES =
6 DISTCLEANFILES =
7 MAINTAINERCLEANFILES =
8
9 # Convenience targets:
10 lib:
11         @$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
12
13 manifests:
14         @$(srcdir)/hb-manifest-update "$(srcdir)/texts" "$(srcdir)/fonts" "$(srcdir)/tests"
15
16 EXTRA_DIST += \
17         README.md \
18         hb-diff \
19         hb-diff-colorize \
20         hb-diff-filter-failures \
21         hb-diff-ngrams \
22         hb-diff-stat \
23         hb-manifest-read \
24         hb-manifest-update \
25         hb-unicode-decode \
26         hb-unicode-encode \
27         hb-unicode-prettyname \
28         record-test.sh \
29         run-tests.sh \
30         texts/in-tree \
31         fonts/sha1sum \
32         $(TESTS) \
33         $(NULL)
34
35 # TODO Figure out Python stuff
36 EXTRA_DIST += \
37         hb_test_tools.py \
38         $(NULL)
39 CLEANFILES += \
40         hb_test_tools.py[co] \
41         $(NULL)
42
43 TESTS = \
44         tests/arabic-fallback-shaping.tests \
45         tests/arabic-feature-order.tests \
46         tests/cluster.tests \
47         tests/context-matching.tests \
48         tests/cursive-positioning.tests \
49         tests/default-ignorables.tests \
50         tests/fallback-positioning.tests \
51         tests/fuzzed.tests \
52         tests/hangul-jamo.tests \
53         tests/hyphens.tests \
54         tests/indic-joiner-candrabindu.tests \
55         tests/indic-old-spec.tests \
56         tests/indic-pref-blocking.tests \
57         tests/ligature-id.tests \
58         tests/mark-filtering-sets.tests \
59         tests/mongolian-variation-selector.tests \
60         tests/spaces.tests \
61         tests/simple.tests \
62         tests/use.tests \
63         tests/vertical.tests \
64         tests/zero-width-marks.tests \
65         $(NULL)
66
67 TEST_EXTENSIONS = \
68         .tests \
69         $(NULL)
70
71 AM_TESTS_ENVIRONMENT = \
72         EXEEXT="$(EXEEXT)"; \
73         export EXEEXT; \
74         srcdir="$(srcdir)"; \
75         export srcdir; \
76         builddir="$(builddir)"; \
77         export builddir; \
78         $(NULL)
79
80 if AUTOMAKE_OLDER_THAN_1_13
81 TESTS_ENVIRONMENT = \
82         $(AM_TESTS_ENVIRONMENT) \
83         $(TESTS_LOG_COMPILER) \
84         $(NULL)
85 endif
86
87 TESTS_LOG_COMPILER = sh $(srcdir)/run-tests.sh
88
89 .PHONY: manifests
90
91 -include $(top_srcdir)/git.mk