Merge branch 'upstream' into tizen
[platform/upstream/harfbuzz.git] / Makefile.am
index ecaffd4..2bbd3c5 100644 (file)
@@ -2,42 +2,48 @@
 
 NULL =
 
-SUBDIRS = src util test
+ACLOCAL_AMFLAGS = -I m4
 
-pkgconfigdir = $(libdir)/pkgconfig
-pkgconfig_DATA = harfbuzz.pc
+SUBDIRS = src util test docs
 
 EXTRA_DIST = \
        autogen.sh \
        harfbuzz.doap \
+       README.md \
+       README.mingw.md \
+       README.python.md \
+       BUILD.md \
+       CONFIG.md \
+       RELEASING.md \
+       TESTING.md \
+       CMakeLists.txt \
+       replace-enum-strings.cmake \
+       mingw-configure.sh \
+       mingw-ldd.py \
+       mingw32.sh \
+       mingw64.sh \
        $(NULL)
 
 MAINTAINERCLEANFILES = \
+       $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
+       $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \
+       $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \
        $(srcdir)/INSTALL \
-       $(srcdir)/aclocal.m4 \
-       $(srcdir)/autoscan.log \
-       $(srcdir)/compile \
-       $(srcdir)/config.guess \
-       $(srcdir)/config.h.in \
-       $(srcdir)/config.sub \
-       $(srcdir)/configure.scan \
-       $(srcdir)/depcomp \
-       $(srcdir)/install-sh \
-       $(srcdir)/ltmain.sh \
-       $(srcdir)/missing \
-       $(srcdir)/mkinstalldirs \
        $(srcdir)/ChangeLog \
-       `find "$(srcdir)" -type f -name Makefile.in -print`
+       $(srcdir)/gtk-doc.make \
+       $(srcdir)/m4/gtk-doc.m4 \
+       $(NULL)
 
 
 #
 # ChangeLog generation
 #
 CHANGELOG_RANGE =
-ChangeLog:
+ChangeLog: $(srcdir)/ChangeLog
+$(srcdir)/ChangeLog:
        $(AM_V_GEN) if test -d "$(top_srcdir)/.git"; then \
-         (GIT_DIR=$(top_srcdir)/.git $(top_srcdir)/missing --run \
-          git log $(CHANGELOG_RANGE) --stat) | fmt --split-only > $@.tmp \
+         (GIT_DIR=$(top_srcdir)/.git \
+          $(GIT) log $(CHANGELOG_RANGE) --stat) > $@.tmp \
          && mv -f $@.tmp "$(srcdir)/ChangeLog" \
          || ($(RM) $@.tmp; \
              echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \
@@ -47,23 +53,29 @@ ChangeLog:
          (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)/$@"); \
        fi
-.PHONY: $(srcdir)/ChangeLog
+.PHONY: ChangeLog $(srcdir)/ChangeLog
 
 
 #
 # Release engineering
 #
 
-# TODO: Copy infrastructure from cairo
+DISTCHECK_CONFIGURE_FLAGS = \
+       --enable-gtk-doc \
+       --disable-doc-cross-references \
+       --with-gobject \
+       --enable-introspection \
+       $(NULL)
 
+# TAR_OPTIONS is not set as env var for 'make dist'.  How to fix that?
 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
+tar_file = $(PACKAGE_TARNAME)-$(VERSION).tar.xz
 sha256_file = $(tar_file).sha256
 gpg_file = $(sha256_file).asc
 $(sha256_file): $(tar_file)
@@ -74,5 +86,18 @@ $(gpg_file): $(sha256_file)
 
 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."
+
 
 -include $(top_srcdir)/git.mk