Imported Upstream version 0.19.7
[platform/upstream/fribidi.git] / Makefile.am
index 31e3747..66f4a4e 100644 (file)
@@ -8,6 +8,8 @@
 ## $Source: /home/behdad/src/fdo/fribidi/togit/git/../fribidi/fribidi2/Makefile.am,v $
 ##############################################################################
 
+ACLOCAL_AMFLAGS = -I m4
+
 ## The order of subdirs is important, don't change without a reason.
 SUBDIRS = gen.tab charset lib bin doc test
 
@@ -70,4 +72,27 @@ ChangeLog:
        fi
 .PHONY: $(srcdir)/ChangeLog
 
+#
+# Release engineering
+#
+
+TAR_OPTIONS = --owner=0 --group=0
+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