harfbuzz/test/shaping/Makefile.am

83 lines
1.6 KiB
Makefile
Raw Normal View History

# Process this file with automake to produce Makefile.in
2012-01-22 00:43:58 +00:00
NULL =
EXTRA_DIST =
CLEANFILES =
DISTCLEANFILES =
MAINTAINERCLEANFILES =
2015-09-01 13:45:46 +00:00
# Convenience targets:
lib:
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
manifests:
@$(srcdir)/hb-manifest-update "$(srcdir)/texts" "$(srcdir)/fonts" "$(srcdir)/tests"
2012-01-19 20:43:48 +00:00
2012-01-22 00:43:58 +00:00
EXTRA_DIST += \
hb-diff \
hb-diff-colorize \
2012-01-22 00:43:58 +00:00
hb-diff-filter-failures \
2012-05-09 07:54:54 +00:00
hb-diff-ngrams \
2012-05-09 05:45:17 +00:00
hb-diff-stat \
2012-01-22 00:43:58 +00:00
hb-manifest-read \
hb-manifest-update \
hb-unicode-decode \
hb-unicode-encode \
hb-unicode-prettyname \
2014-07-16 17:32:51 +00:00
record-test.sh \
run-tests.sh \
2013-10-28 19:23:07 +00:00
texts/in-tree \
fonts/sha1sum \
$(TESTS) \
2012-01-22 00:43:58 +00:00
$(NULL)
# TODO Figure out Python stuff
EXTRA_DIST += \
hb_test_tools.py \
$(NULL)
CLEANFILES += \
hb_test_tools.py[co] \
$(NULL)
TESTS = \
tests/arabic-fallback-shaping.tests \
tests/arabic-feature-order.tests \
tests/cluster.tests \
tests/context-matching.tests \
tests/cursive-positioning.tests \
2015-07-23 11:49:09 +00:00
tests/default-ignorables.tests \
tests/hangul-jamo.tests \
tests/indic-joiner-candrabindu.tests \
tests/indic-old-spec.tests \
tests/indic-pref-blocking.tests \
tests/mongolian-variation-selector.tests \
tests/vertical.tests \
tests/zero-width-marks.tests \
$(NULL)
TEST_EXTENSIONS = \
.tests \
$(NULL)
AM_TESTS_ENVIRONMENT = \
EXEEXT="$(EXEEXT)"; \
2014-07-22 22:01:46 +00:00
export EXEEXT; \
srcdir="$(srcdir)"; \
export srcdir; \
builddir="$(builddir)"; \
export builddir; \
$(NULL)
if AUTOMAKE_OLDER_THAN_1_13
TESTS_ENVIRONMENT = \
$(AM_TESTS_ENVIRONMENT) \
$(TESTS_LOG_COMPILER) \
$(NULL)
endif
TESTS_LOG_COMPILER = sh $(srcdir)/run-tests.sh
.PHONY: manifests
-include $(top_srcdir)/git.mk