89578e10b7f06d5a932c562281b56e4d165c6ca2
[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/arabic-like-joining.tests \
47         tests/automatic-fractions.tests \
48         tests/cluster.tests \
49         tests/color-fonts.tests \
50         tests/context-matching.tests \
51         tests/cursive-positioning.tests \
52         tests/default-ignorables.tests \
53         tests/fallback-positioning.tests \
54         tests/fuzzed.tests \
55         tests/hangul-jamo.tests \
56         tests/hyphens.tests \
57         tests/indic-joiner-candrabindu.tests \
58         tests/indic-old-spec.tests \
59         tests/indic-pref-blocking.tests \
60         tests/language-tags.tests \
61         tests/ligature-id.tests \
62         tests/mark-filtering-sets.tests \
63         tests/mongolian-variation-selector.tests \
64         tests/spaces.tests \
65         tests/simple.tests \
66         tests/use.tests \
67         tests/use-marchen.tests \
68         tests/vertical.tests \
69         tests/zero-width-marks.tests \
70         $(NULL)
71
72 TEST_EXTENSIONS = \
73         .tests \
74         $(NULL)
75
76 AM_TESTS_ENVIRONMENT = \
77         EXEEXT="$(EXEEXT)"; \
78         export EXEEXT; \
79         srcdir="$(srcdir)"; \
80         export srcdir; \
81         builddir="$(builddir)"; \
82         export builddir; \
83         $(NULL)
84
85 if AUTOMAKE_OLDER_THAN_1_13
86 TESTS_ENVIRONMENT = \
87         $(AM_TESTS_ENVIRONMENT) \
88         $(TESTS_LOG_COMPILER) \
89         $(NULL)
90 endif
91
92 TESTS_LOG_COMPILER = sh $(srcdir)/run-tests.sh
93
94 .PHONY: manifests
95
96 -include $(top_srcdir)/git.mk