diff options
author | Vincent Untz <vuntz@gnome.org> | 2010-10-09 11:49:09 +0200 |
---|---|---|
committer | Vincent Untz <vuntz@gnome.org> | 2010-10-09 11:49:09 +0200 |
commit | b123a26be1caac35860a8d7085566a8fba14e67b (patch) | |
tree | 6f2c675b828a2920f94e4b7cb2bfc2348c5cc597 | |
parent | 465abba0ff50b660fd7e90f048daf4af279a790c (diff) |
build: Update git.mk from pango
-rw-r--r-- | git.mk | 11 |
1 files changed, 10 insertions, 1 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, intltool, gsettings. # # # KNOWN ISSUES: @@ -100,11 +100,19 @@ $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk $(_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 +167,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'`/@/@" | \ |