tenfourfox/gfx/harfbuzz/Makefile.am

84 lines
2.0 KiB
Makefile
Raw Permalink Normal View History

2017-04-19 07:56:45 +00:00
# Process this file with automake to produce Makefile.in
NULL =
2017-10-07 00:24:08 +00:00
ACLOCAL_AMFLAGS = -I m4
2017-04-19 07:56:45 +00:00
2017-10-07 00:24:08 +00:00
SUBDIRS = src util test docs win32
2017-04-19 07:56:45 +00:00
EXTRA_DIST = \
autogen.sh \
harfbuzz.doap \
2017-10-07 00:24:08 +00:00
README.python \
BUILD.md \
CMakeLists.txt \
2017-04-19 07:56:45 +00:00
$(NULL)
MAINTAINERCLEANFILES = \
2017-10-07 00:24:08 +00:00
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
$(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
$(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
2017-04-19 07:56:45 +00:00
$(srcdir)/INSTALL \
$(srcdir)/ChangeLog \
2017-10-07 00:24:08 +00:00
$(srcdir)/gtk-doc.make \
$(srcdir)/m4/gtk-doc.m4 \
$(NULL)
2017-04-19 07:56:45 +00:00
#
# ChangeLog generation
#
CHANGELOG_RANGE =
ChangeLog: $(srcdir)/ChangeLog
$(srcdir)/ChangeLog:
2017-10-07 00:24:08 +00:00
$(AM_V_GEN) if test -d "$(top_srcdir)/.git"; then \
(GIT_DIR=$(top_srcdir)/.git \
$(GIT) log $(CHANGELOG_RANGE) --stat) | fmt --split-only > $@.tmp \
&& mv -f $@.tmp "$(srcdir)/ChangeLog" \
2017-04-19 07:56:45 +00:00
|| ($(RM) $@.tmp; \
echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
2017-10-07 00:24:08 +00:00
(test -f $@ || echo git-log is required to generate this file >> "$(srcdir)/$@")); \
2017-04-19 07:56:45 +00:00
else \
test -f $@ || \
(echo A git checkout and git-log is required to generate ChangeLog >&2 && \
2017-10-07 00:24:08 +00:00
echo A git checkout and git-log is required to generate this file >> "$(srcdir)/$@"); \
2017-04-19 07:56:45 +00:00
fi
2017-10-07 00:24:08 +00:00
.PHONY: ChangeLog $(srcdir)/ChangeLog
2017-04-19 07:56:45 +00:00
#
# Release engineering
#
2017-10-07 00:24:08 +00:00
DISTCHECK_CONFIGURE_FLAGS = \
--enable-gtk-doc \
--disable-doc-cross-references \
--with-gobject \
--enable-introspection \
$(NULL)
2017-04-19 07:56:45 +00:00
# TODO: Copy infrastructure from cairo
2017-10-07 00:24:08 +00:00
# TAR_OPTIONS is not set as env var for 'make dist'. How to fix that?
2017-04-19 07:56:45 +00:00
TAR_OPTIONS = --owner=0 --group=0
2017-10-07 00:24:08 +00:00
2017-04-19 07:56:45 +00: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)
-include $(top_srcdir)/git.mk