3 # Copyright 2009, Red Hat, Inc.
4 # Copyright 2010,2011 Behdad Esfahbod
5 # Written by Behdad Esfahbod
7 # Copying and distribution of this file, with or without modification,
8 # is permitted in any medium without royalty provided the copyright
9 # notice and this notice are preserved.
11 # The canonical source for this file is https://github.com/behdad/git.mk.
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. Remember to add that line to new
16 # Makefile.am files you create in your project, or just rerun the
19 # This enables automatic .gitignore generation. If you need to ignore
20 # more files, add them to the GITIGNOREFILES variable in your Makefile.am.
21 # But think twice before doing that. If a file has to be in .gitignore,
22 # chances are very high that it's a generated file and should be in one
23 # of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
25 # The only case that you need to manually add a file to GITIGNOREFILES is
26 # when remove files in one of mostlyclean-local, clean-local, distclean-local,
27 # or maintainer-clean-local make targets.
29 # Note that for files like editor backup, etc, there are better places to
30 # ignore them. See "man gitignore".
32 # If "make maintainer-clean" removes the files but they are not recognized
33 # by this script (that is, if "git status" shows untracked files still), send
34 # me the output of "git status" as well as your Makefile.am and Makefile for
35 # the directories involved and I'll diagnose.
37 # For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
38 # Makefile.am.sample in the git.mk git repo.
40 # Don't EXTRA_DIST this file. It is supposed to only live in git clones,
41 # not tarballs. It serves no useful purpose in tarballs and clutters the
44 # This file knows how to handle autoconf, automake, libtool, gtk-doc,
45 # gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu.
47 # This makefile provides the following targets:
49 # - all: "make all" will build all gitignore files.
50 # - gitignore: makes all gitignore files in the current dir and subdirs.
51 # - .gitignore: make gitignore file for the current dir.
52 # - gitignore-recurse: makes all gitignore files in the subdirs.
56 # - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
57 # submodule doesn't find us. If you have configure.{in,ac} files in
58 # subdirs, add a proxy git.mk file in those dirs that simply does:
59 # "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
60 # And add those files to git. See vte/gnome-pty-helper/git.mk for
64 git-all: git-mk-install
67 @echo Installing git makefile
69 find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
70 if grep 'include .*/git.mk' $$x >/dev/null; then \
71 echo $$x already includes git.mk; \
74 echo "Updating $$x"; \
77 echo '-include $$(top_srcdir)/git.mk'; \
78 } > $$x.tmp || failed=1; \
79 if test x$$failed = x; then \
80 mv $$x.tmp $$x || failed=1; \
82 if test x$$failed = x; then : else \
83 echo Failed updating $$x; >&2 \
86 fi; done; test -z "$$any_failed"
88 .PHONY: git-all git-mk-install
91 ### .gitignore generation
93 $(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
96 if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
98 $(DOC_MODULE)-decl-list.txt \
99 $(DOC_MODULE)-decl.txt \
100 tmpl/$(DOC_MODULE)-unused.sgml \
103 ; do echo /$$x; done; \
105 if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
106 for lc in $(DOC_LINGUAS); do \
108 $(if $(DOC_MODULE),$(DOC_MODULE).xml) \
111 ; do echo /$$lc/$$x; done; \
121 ; do echo /$$x; done; \
123 if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
124 for lc in $(HELP_LINGUAS); do \
129 ; do echo /$$lc/$$x; done; \
132 if test "x$(gsettings_SCHEMAS)" = x; then :; else \
134 $(gsettings_SCHEMAS:.xml=.valid) \
135 $(gsettings__enum_file) \
136 ; do echo /$$x; done; \
138 if test -f $(srcdir)/po/Makefile.in.in; then \
145 po/.intltool-merge-cache \
148 po/$(GETTEXT_PACKAGE).pot \
149 intltool-extract.in \
152 ; do echo /$$x; done; \
154 if test -f $(srcdir)/configure; then \
162 ; do echo /$$x; done; \
164 if test "x$(DEJATOOL)" = x; then :; else \
167 ; do echo /$$x.sum; echo /$$x.log; done; \
174 $(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
175 $(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
176 $(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
179 $(MOSTLYCLEANFILES) \
183 $(am__CONFIG_DISTCLEAN_FILES) \
184 $(CONFIG_CLEAN_FILES) \
185 TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
187 $(MAINTAINERCLEANFILES) \
198 ; do echo /$$x; done; \
200 sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
201 sed 's@/[.]/@/@g' | \
202 LC_ALL=C sort | uniq > $@.tmp && \
205 all: $(srcdir)/.gitignore gitignore-recurse-maybe
206 gitignore: $(srcdir)/.gitignore gitignore-recurse
208 gitignore-recurse-maybe:
209 @for subdir in $(DIST_SUBDIRS); do \
210 case " $(SUBDIRS) " in \
211 *" $$subdir "*) :;; \
212 *) test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse-maybe || echo "Skipping $$subdir");; \
216 @for subdir in $(DIST_SUBDIRS); do \
217 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse || echo "Skipping $$subdir"); \
220 maintainer-clean: gitignore-clean
222 -rm -f $(srcdir)/.gitignore
224 .PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe