harfbuzz/Makefile.am

87 lines
2.1 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 \
README.python.md \
README.wine.md \
2015-10-20 20:39:41 +02:00
BUILD.md \
2017-10-01 18:06:00 +02:00
RELEASING.md \
2017-04-04 12:33:51 +02:00
CMakeLists.txt \
replace-enum-strings.cmake \
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) | fmt --split-only > $@.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)
2011-05-27 21:59:33 +02:00
# TODO: Copy infrastructure from cairo
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)
tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.bz2
sha256_file = $(tar_file).sha256
gpg_file = $(sha256_file).asc
$(sha256_file): $(tar_file)
sha256sum $^ > $@
$(gpg_file): $(sha256_file)
@echo "Please enter your GPG password to sign the checksum."
gpg --armor --sign $^
release-files: $(tar_file) $(sha256_file) $(gpg_file)
2009-11-02 22:28:39 +01:00
-include $(top_srcdir)/git.mk