diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-11 21:02:13 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-08-11 21:35:43 +0800 |
commit | d08822afde2a8688ffccb97caff56bc0c39f94be (patch) | |
tree | 899ecb81444a41775c7abc33c7c1a7b42b53915a /git.mk | |
parent | 23b38d5c4573636f6c42e65e266d6aa238a9ea26 (diff) | |
download | gsoc2013-evolution-d08822afde2a8688ffccb97caff56bc0c39f94be.tar.gz gsoc2013-evolution-d08822afde2a8688ffccb97caff56bc0c39f94be.tar.zst gsoc2013-evolution-d08822afde2a8688ffccb97caff56bc0c39f94be.zip |
git.mk: Add support for mallard.
Copied from Pango module.
Diffstat (limited to 'git.mk')
-rw-r--r-- | git.mk | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -40,7 +40,7 @@ # build dir. # # This file knows how to handle autoconf, automake, libtool, gtk-doc, -# gnome-doc-utils, intltool. +# gnome-doc-utils, mallard, intltool, gsettings. # # # KNOWN ISSUES: @@ -52,6 +52,10 @@ # And add those files to git. See vte/gnome-pty-helper/git.mk for # example. # +# ChangeLog +# +# - 2010-12-06 Add support for Mallard docs +# - 2010-12-06 Start this change log git-all: git-mk-install @@ -93,18 +97,26 @@ $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk xml html \ ; do echo /$$x; done; \ fi; \ - if test "x$(DOC_MODULE)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \ + if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \ for x in \ $(_DOC_C_DOCS) \ $(_DOC_LC_DOCS) \ $(_DOC_OMF_ALL) \ $(_DOC_DSK_ALL) \ $(_DOC_HTML_ALL) \ + $(_DOC_MOFILES) \ $(_DOC_POFILES) \ + $(DOC_H_FILE) \ "*/.xml2po.mo" \ "*/*.omf.out" \ ; do echo /$$x; done; \ fi; \ + if test "x$(gsettings_SCHEMAS)" = x; then :; else \ + for x in \ + $(gsettings_SCHEMAS:.xml=.valid) \ + $(gsettings__enum_file) \ + ; do echo /$$x; done; \ + fi; \ if test -f $(srcdir)/po/Makefile.in.in; then \ for x in \ po/Makefile.in.in \ @@ -159,6 +171,7 @@ $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk "*.bak" \ "*~" \ ".*.sw[nop]" \ + ".dirstamp" \ ; do echo /$$x; done; \ } | \ sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \ |