3 # Copyright 2009, Red Hat, Inc.
4 # Written by Behdad Esfahbod
6 # Copying and distribution of this file, with or without modification,
7 # are permitted in any medium without royalty provided the copyright
8 # notice and this notice are preserved.
10 # The canonical source for this file is pango/git.mk, or whereever the
11 # header of pango/git.mk suggests in the future.
13 # To use in your project, import this file in your git repo's toplevel,
14 # then do "make -f git.mk". This modifies all Makefile.am files in
15 # your project to include git.mk.
17 # This enables automatic .gitignore generation. If you need to ignore
18 # more files, add them to the GITIGNOREFILES variable in your Makefile.am.
19 # But think twice before doing that. If a file has to be in .gitignore,
20 # chances are very high that it's a generated file and should be in one
21 # of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
23 # The only case that you need to manually add a file to GITIGNOREFILES is
24 # when remove files in one of mostlyclean-local, clean-local, distclean-local,
25 # or maintainer-clean-local.
27 # Note that for files like editor backup, etc, there are better places to
28 # ignore them. See "man gitignore".
30 # If "make maintainer-clean" removes the files but they are not recognized
31 # by this script (that is, if "git status" shows untracked files still), send
32 # me the output of "git status" as well as your Makefile.am and Makefile for
33 # the directories involved.
35 # For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
38 # Don't EXTRA_DIST this file. It is supposed to only live in git clones,
39 # not tarballs. It serves no useful purpose in tarballs and clutters the
42 # This file knows how to handle autoconf, automake, libtool, gtk-doc,
43 # gnome-doc-utils, mallard, intltool, gsettings.
48 # - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
49 # submodule doesn't find us. If you have configure.{in,ac} files in
50 # subdirs, add a proxy git.mk file in those dirs that simply does:
51 # "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
52 # And add those files to git. See vte/gnome-pty-helper/git.mk for
57 # - 2010-12-06 Add support for Mallard docs
58 # - 2010-12-06 Start this change log
60 git-all: git-mk-install
63 @echo Installing git makefile
64 @any_failed=; find $(top_srcdir) -name Makefile.am | while read x; do \
65 if grep 'include .*/git.mk' $$x >/dev/null; then \
66 echo $$x already includes git.mk; \
69 echo "Updating $$x"; \
72 echo '-include $$(top_srcdir)/git.mk'; \
73 } > $$x.tmp || failed=1; \
74 if test x$$failed = x; then \
75 mv $$x.tmp $$x || failed=1; \
77 if test x$$failed = x; then : else \
78 echo Failed updating $$x; >&2 \
81 fi; done; test -z "$$any_failed"
83 .PHONY: git-all git-mk-install
86 ### .gitignore generation
88 $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
91 if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
93 $(DOC_MODULE)-decl-list.txt \
94 $(DOC_MODULE)-decl.txt \
95 tmpl/$(DOC_MODULE)-unused.sgml \
98 ; do echo /$$x; done; \
100 if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
112 ; do echo /$$x; done; \
114 if test "x$(gsettings_SCHEMAS)" = x; then :; else \
116 $(gsettings_SCHEMAS:.xml=.valid) \
117 $(gsettings__enum_file) \
118 ; do echo /$$x; done; \
120 if test -f $(srcdir)/po/Makefile.in.in; then \
127 po/.intltool-merge-cache \
130 po/$(GETTEXT_PACKAGE).pot \
131 intltool-extract.in \
134 ; do echo /$$x; done; \
136 if test -f $(srcdir)/configure; then \
144 ; do echo /$$x; done; \
156 $(MOSTLYCLEANFILES) \
160 $(am__CONFIG_DISTCLEAN_FILES) \
161 $(CONFIG_CLEAN_FILES) \
162 TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
164 $(MAINTAINERCLEANFILES) \
175 ; do echo /$$x; done; \
177 sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
178 sed 's@/[.]/@/@g' | \
179 LC_ALL=C sort | uniq > $@.tmp && \
182 all: $(srcdir)/.gitignore gitignore-recurse-maybe
183 gitignore-recurse-maybe:
184 @if test "x$(SUBDIRS)" = "x$(DIST_SUBDIRS)"; then :; else \
185 $(MAKE) $(AM_MAKEFLAGS) gitignore-recurse; \
188 @for subdir in $(DIST_SUBDIRS); do \
189 case " $(SUBDIRS) " in \
190 *" $$subdir "*) :;; \
191 *) test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse || echo "Skipping $$subdir");; \
194 gitignore: $(srcdir)/.gitignore gitignore-recurse
196 maintainer-clean: gitignore-clean
198 -rm -f $(srcdir)/.gitignore
200 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe