harfbuzz/Makefile.am

97 lines
2.4 KiB
Makefile
Raw Normal View History

# Process this file with automake to produce Makefile.in
2011-05-10 23:55:40 +02:00
NULL =
2012-10-02 20:44:47 +02:00
ACLOCAL_AMFLAGS = -I m4
2017-10-12 10:41:47 +02:00
SUBDIRS = src util test docs
2009-11-02 22:28:39 +01:00
2009-12-15 09:53:45 +01:00
EXTRA_DIST = \
2011-05-10 23:55:40 +02:00
autogen.sh \
harfbuzz.doap \
2019-05-25 18:16:28 +02:00
README.md \
README.python.md \
2015-10-20 20:39:41 +02:00
BUILD.md \
CONFIG.md \
2017-10-01 18:06:00 +02:00
RELEASING.md \
2019-05-25 18:16:28 +02:00
TESTING.md \
meson.build \
2020-03-12 11:11:10 +01:00
meson_options.txt \
subprojects/expat.wrap \
subprojects/fontconfig.wrap \
subprojects/freetype2.wrap \
subprojects/glib.wrap \
subprojects/libffi.wrap \
subprojects/proxy-libintl.wrap \
subprojects/zlib.wrap \
subprojects/google-benchmark.wrap \
perf/meson.build \
perf/perf-draw.hh \
perf/perf-extents.hh \
perf/perf-shaping.hh \
perf/perf.cc \
perf/fonts/Amiri-Regular.ttf \
perf/fonts/NotoNastaliqUrdu-Regular.ttf \
perf/fonts/NotoSansDevanagari-Regular.ttf \
perf/fonts/Roboto-Regular.ttf \
perf/texts/en-thelittleprince.txt \
perf/texts/en-words.txt \
perf/texts/fa-monologue.txt \
perf/texts/fa-thelittleprince.txt \
2020-03-12 11:11:10 +01:00
meson-cc-tests/intel-atomic-primitives-test.c \
meson-cc-tests/solaris-atomic-operations.c \
2011-05-10 23:55:40 +02:00
$(NULL)
2009-12-15 09:53:45 +01:00
2009-11-02 22:38:41 +01:00
MAINTAINERCLEANFILES = \
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
$(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
2009-11-02 22:38:41 +01:00
$(srcdir)/INSTALL \
$(srcdir)/ChangeLog \
2015-02-26 22:55:34 +01:00
$(srcdir)/gtk-doc.make \
2016-02-22 07:37:18 +01:00
$(srcdir)/m4/gtk-doc.m4 \
$(NULL)
2009-11-02 22:38:41 +01:00
#
# ChangeLog generation
#
CHANGELOG_RANGE =
2013-05-31 00:04:24 +02:00
ChangeLog: $(srcdir)/ChangeLog
$(srcdir)/ChangeLog:
$(AM_V_GEN) if test -d "$(top_srcdir)/.git"; then \
2014-03-04 22:03:51 +01:00
(GIT_DIR=$(top_srcdir)/.git \
$(GIT) log $(CHANGELOG_RANGE) --stat) > $@.tmp \
2012-08-18 19:56:10 +02:00
&& mv -f $@.tmp "$(srcdir)/ChangeLog" \
2009-11-02 22:38:41 +01:00
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
(test -f $@ || echo git-log is required to generate this file >> "$(srcdir)/$@")); \
2009-11-02 22:38:41 +01:00
else \
test -f $@ || \
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
echo A git checkout and git-log is required to generate this file >> "$(srcdir)/$@"); \
2009-11-02 22:38:41 +01:00
fi
2013-05-31 00:04:24 +02:00
.PHONY: ChangeLog $(srcdir)/ChangeLog
2009-11-02 22:38:41 +01:00
#
# Release engineering
#
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--disable-doc-cross-references \
--with-gobject \
--enable-introspection \
$(NULL)
2013-09-04 02:09:14 +02:00
# TAR_OPTIONS is not set as env var for 'make dist'. How to fix that?
TAR_OPTIONS = --owner=0 --group=0
2013-09-04 02:09:14 +02:00
dist-hook: dist-clear-sticky-bits
# Clean up any sticky bits we may inherit from parent dir
dist-clear-sticky-bits:
chmod -R a-s $(distdir)
2009-11-02 22:28:39 +01:00
-include $(top_srcdir)/git.mk