Mercurial > hgrepos > Python2 > PyMuPDF
comparison mupdf-source/thirdparty/harfbuzz/Makefile.am @ 2:b50eed0cc0ef upstream
ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4.
The directory name has changed: no version number in the expanded directory now.
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Mon, 15 Sep 2025 11:43:07 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1:1d09e1dec1d9 | 2:b50eed0cc0ef |
|---|---|
| 1 # Process this file with automake to produce Makefile.in | |
| 2 | |
| 3 NULL = | |
| 4 | |
| 5 ACLOCAL_AMFLAGS = -I m4 | |
| 6 | |
| 7 SUBDIRS = src util test perf docs | |
| 8 | |
| 9 EXTRA_DIST = \ | |
| 10 autogen.sh \ | |
| 11 harfbuzz.doap \ | |
| 12 README.md \ | |
| 13 README.python.md \ | |
| 14 BUILD.md \ | |
| 15 CONFIG.md \ | |
| 16 RELEASING.md \ | |
| 17 TESTING.md \ | |
| 18 CMakeLists.txt \ | |
| 19 replace-enum-strings.cmake \ | |
| 20 meson.build \ | |
| 21 meson_options.txt \ | |
| 22 subprojects/cairo.wrap \ | |
| 23 subprojects/freetype2.wrap \ | |
| 24 subprojects/glib.wrap \ | |
| 25 subprojects/google-benchmark.wrap \ | |
| 26 subprojects/ragel.wrap \ | |
| 27 subprojects/packagefiles/ragel/meson.build \ | |
| 28 mingw-configure.sh \ | |
| 29 $(NULL) | |
| 30 | |
| 31 MAINTAINERCLEANFILES = \ | |
| 32 $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ | |
| 33 $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \ | |
| 34 $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ | |
| 35 $(srcdir)/INSTALL \ | |
| 36 $(srcdir)/ChangeLog \ | |
| 37 $(srcdir)/gtk-doc.make \ | |
| 38 $(srcdir)/m4/gtk-doc.m4 \ | |
| 39 $(NULL) | |
| 40 | |
| 41 | |
| 42 # | |
| 43 # ChangeLog generation | |
| 44 # | |
| 45 CHANGELOG_RANGE = | |
| 46 ChangeLog: $(srcdir)/ChangeLog | |
| 47 $(srcdir)/ChangeLog: | |
| 48 $(AM_V_GEN) if test -d "$(top_srcdir)/.git"; then \ | |
| 49 (GIT_DIR=$(top_srcdir)/.git \ | |
| 50 $(GIT) log $(CHANGELOG_RANGE) --stat) > $@.tmp \ | |
| 51 && mv -f $@.tmp "$(srcdir)/ChangeLog" \ | |
| 52 || ($(RM) $@.tmp; \ | |
| 53 echo Failed to generate ChangeLog, your ChangeLog may be outdated >&2; \ | |
| 54 (test -f $@ || echo git-log is required to generate this file >> "$(srcdir)/$@")); \ | |
| 55 else \ | |
| 56 test -f $@ || \ | |
| 57 (echo A git checkout and git-log is required to generate ChangeLog >&2 && \ | |
| 58 echo A git checkout and git-log is required to generate this file >> "$(srcdir)/$@"); \ | |
| 59 fi | |
| 60 .PHONY: ChangeLog $(srcdir)/ChangeLog | |
| 61 | |
| 62 | |
| 63 # | |
| 64 # Release engineering | |
| 65 # | |
| 66 | |
| 67 DISTCHECK_CONFIGURE_FLAGS = \ | |
| 68 --enable-gtk-doc \ | |
| 69 --disable-doc-cross-references \ | |
| 70 --with-gobject \ | |
| 71 --enable-introspection \ | |
| 72 $(NULL) | |
| 73 | |
| 74 # TAR_OPTIONS is not set as env var for 'make dist'. How to fix that? | |
| 75 TAR_OPTIONS = --owner=0 --group=0 | |
| 76 | |
| 77 dist-hook: dist-clear-sticky-bits | |
| 78 # Clean up any sticky bits we may inherit from parent dir | |
| 79 dist-clear-sticky-bits: | |
| 80 chmod -R a-s $(distdir) | |
| 81 | |
| 82 -include $(top_srcdir)/git.mk |
