mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
These texts were never hooked into the test suite, they however represent a good collection of test texts, but one can always access them from git history. Fixes https://github.com/harfbuzz/harfbuzz/issues/3123
38 lines
674 B
Makefile
38 lines
674 B
Makefile
# Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
|
EXTRA_DIST =
|
|
CLEANFILES =
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
SUBDIRS = data
|
|
|
|
# Convenience targets:
|
|
lib:
|
|
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src lib
|
|
libs:
|
|
@$(MAKE) $(AM_MAKEFLAGS) -C $(top_builddir)/src libs
|
|
|
|
EXTRA_DIST += \
|
|
README.md \
|
|
meson.build \
|
|
hb-diff \
|
|
hb-diff-colorize \
|
|
hb-diff-filter-failures \
|
|
hb-diff-stat \
|
|
hb-unicode-decode \
|
|
hb-unicode-encode \
|
|
hb-unicode-prettyname \
|
|
record-test.sh \
|
|
run-tests.py \
|
|
$(NULL)
|
|
|
|
# TODO Figure out Python stuff
|
|
EXTRA_DIST += \
|
|
hb_test_tools.py \
|
|
$(NULL)
|
|
CLEANFILES += \
|
|
hb_test_tools.py[co] \
|
|
$(NULL)
|
|
|
|
-include $(top_srcdir)/git.mk
|