harfbuzz/Makefile.am

115 lines
3.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 \
2019-05-25 18:16:28 +02:00
README.md \
2019-05-25 17:18:40 +02:00
README.mingw.md \
2019-05-25 18:16:28 +02:00
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 \
CMakeLists.txt \
replace-enum-strings.cmake \
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 \
2020-03-12 11:11:10 +01:00
meson-cc-tests/intel-atomic-primitives-test.c \
meson-cc-tests/solaris-atomic-operations.c \
2019-05-25 18:16:28 +02:00
mingw-configure.sh \
mingw-ldd.py \
mingw32.sh \
mingw64.sh \
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)
2019-05-24 21:56:15 +02:00
tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.xz
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)
dist-win:
@case $(host_triplet) in *-w64-mingw32) ;; *) echo "Error: Requires mingw build. See README.mingw.md.">&2; exit 1 ;; esac
@DIR=$(PACKAGE_TARNAME)-$(VERSION)-win`case $(host_triplet) in i686-*) echo 32 ;; x86_64-*) echo 64 ;; esac`; \
$(RM) -r $$DIR; $(MKDIR_P) $$DIR || exit 1; \
cp util/.libs/hb-{shape,view,subset}.exe $$DIR && \
$(top_srcdir)/mingw-ldd.py $$DIR/hb-view.exe | grep -v 'not found' | cut -d '>' -f 2 | xargs cp -t $$DIR && \
cp src/.libs/libharfbuzz{,-subset}-0.dll $$DIR && \
chmod a+x $$DIR/*.{exe,dll} && \
$(STRIP) $$DIR/*.{exe,dll} && \
zip -r $$DIR.zip $$DIR && \
$(RM) -r $$DIR && \
echo "$$DIR.zip is ready."
2009-11-02 22:28:39 +01:00
-include $(top_srcdir)/git.mk