blob: 18c07f68436ee4ac9d9190f8ee5c5126c1be61f7 [file] [log] [blame]
Behdad Esfahbod29aa4002009-11-02 16:28:39 -05001# git.mk
2#
3# Copyright 2009, Red Hat, Inc.
Behdad Esfahbod22c625a2013-03-04 20:56:15 -05004# Copyright 2010,2011,2012,2013 Behdad Esfahbod
Behdad Esfahbod29aa4002009-11-02 16:28:39 -05005# Written by Behdad Esfahbod
6#
7# Copying and distribution of this file, with or without modification,
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -04008# is permitted in any medium without royalty provided the copyright
Behdad Esfahbod29aa4002009-11-02 16:28:39 -05009# notice and this notice are preserved.
10#
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050011# The latest version of this file can be downloaded from:
12# https://raw.github.com/behdad/git.mk/master/git.mk
13# Bugs, etc, should be reported upstream at:
14# https://github.com/behdad/git.mk
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050015#
16# To use in your project, import this file in your git repo's toplevel,
17# then do "make -f git.mk". This modifies all Makefile.am files in
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050018# your project to -include git.mk. Remember to add that line to new
19# Makefile.am files you create in your project, or just rerun the
20# "make -f git.mk".
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050021#
22# This enables automatic .gitignore generation. If you need to ignore
23# more files, add them to the GITIGNOREFILES variable in your Makefile.am.
24# But think twice before doing that. If a file has to be in .gitignore,
25# chances are very high that it's a generated file and should be in one
26# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
27#
28# The only case that you need to manually add a file to GITIGNOREFILES is
29# when remove files in one of mostlyclean-local, clean-local, distclean-local,
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050030# or maintainer-clean-local make targets.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050031#
32# Note that for files like editor backup, etc, there are better places to
33# ignore them. See "man gitignore".
34#
35# If "make maintainer-clean" removes the files but they are not recognized
36# by this script (that is, if "git status" shows untracked files still), send
37# me the output of "git status" as well as your Makefile.am and Makefile for
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050038# the directories involved and I'll diagnose.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050039#
40# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050041# Makefile.am.sample in the git.mk git repo.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050042#
43# Don't EXTRA_DIST this file. It is supposed to only live in git clones,
44# not tarballs. It serves no useful purpose in tarballs and clutters the
45# build dir.
46#
47# This file knows how to handle autoconf, automake, libtool, gtk-doc,
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -040048# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050049#
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -040050# This makefile provides the following targets:
51#
52# - all: "make all" will build all gitignore files.
53# - gitignore: makes all gitignore files in the current dir and subdirs.
54# - .gitignore: make gitignore file for the current dir.
55# - gitignore-recurse: makes all gitignore files in the subdirs.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050056#
57# KNOWN ISSUES:
58#
59# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
60# submodule doesn't find us. If you have configure.{in,ac} files in
61# subdirs, add a proxy git.mk file in those dirs that simply does:
62# "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
63# And add those files to git. See vte/gnome-pty-helper/git.mk for
64# example.
65#
66
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050067
68
69###############################################################################
70# Variables user modules may want to add to toplevel MAINTAINERCLEANFILES:
71###############################################################################
72
73#
74# Most autotools-using modules should be fine including this variable in their
75# toplevel MAINTAINERCLEANFILES:
76GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL = \
77 $(srcdir)/aclocal.m4 \
78 $(srcdir)/autoscan.log \
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050079 $(srcdir)/configure.scan \
Behdad Esfahboddddf9902013-08-26 17:58:25 -040080 `AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \
Behdad Esfahbod627af692013-08-06 16:53:56 -040081 test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \
82 for x in \
Behdad Esfahbod72225272013-08-06 15:19:23 -040083 ar-lib \
84 compile \
85 config.guess \
86 config.sub \
87 depcomp \
88 install-sh \
89 ltmain.sh \
90 missing \
91 mkinstalldirs \
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -040092 test-driver \
Behdad Esfahbod72225272013-08-06 15:19:23 -040093 ; do echo "$$AUX_DIR/$$x"; done` \
Behdad Esfahboddddf9902013-08-26 17:58:25 -040094 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \
Behdad Esfahbod72225272013-08-06 15:19:23 -040095 head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done`
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050096#
97# All modules should also be fine including the following variable, which
98# removes automake-generated Makefile.in files:
99GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400100 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500101 while read f; do \
102 case $$f in Makefile|*/Makefile) \
103 test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \
104 done`
105#
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -0400106# Modules that use libtool and use AC_CONFIG_MACRO_DIR() may also include this,
107# though it's harmless to include regardless.
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500108GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -0400109 `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \
110 if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \
111 for x in \
112 libtool.m4 \
113 ltoptions.m4 \
114 ltsugar.m4 \
115 ltversion.m4 \
116 lt~obsolete.m4 \
117 ; do echo "$$MACRO_DIR/$$x"; done; \
118 fi`
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500119
120
121
122###############################################################################
123# Default rule is to install ourselves in all Makefile.am files:
124###############################################################################
125
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500126git-all: git-mk-install
127
128git-mk-install:
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400129 @echo "Installing git makefile"
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500130 @any_failed=; \
131 find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500132 if grep 'include .*/git.mk' $$x >/dev/null; then \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400133 echo "$$x already includes git.mk"; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500134 else \
135 failed=; \
136 echo "Updating $$x"; \
137 { cat $$x; \
138 echo ''; \
139 echo '-include $$(top_srcdir)/git.mk'; \
140 } > $$x.tmp || failed=1; \
141 if test x$$failed = x; then \
142 mv $$x.tmp $$x || failed=1; \
143 fi; \
144 if test x$$failed = x; then : else \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400145 echo "Failed updating $$x"; >&2 \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500146 any_failed=1; \
147 fi; \
148 fi; done; test -z "$$any_failed"
149
150.PHONY: git-all git-mk-install
151
152
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500153
154###############################################################################
155# Actual .gitignore generation:
156###############################################################################
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500157
158$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
Behdad Esfahbod72225272013-08-06 15:19:23 -0400159 @echo "git.mk: Generating $@"
160 @{ \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500161 if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
162 for x in \
163 $(DOC_MODULE)-decl-list.txt \
164 $(DOC_MODULE)-decl.txt \
165 tmpl/$(DOC_MODULE)-unused.sgml \
166 "tmpl/*.bak" \
167 xml html \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400168 ; do echo "/$$x"; done; \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400169 FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \
170 case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500171 fi; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500172 if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400173 for lc in $(DOC_LINGUAS); do \
174 for x in \
175 $(if $(DOC_MODULE),$(DOC_MODULE).xml) \
176 $(DOC_PAGES) \
177 $(DOC_INCLUDES) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400178 ; do echo "/$$lc/$$x"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400179 done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500180 for x in \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500181 $(_DOC_OMF_ALL) \
182 $(_DOC_DSK_ALL) \
183 $(_DOC_HTML_ALL) \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500184 $(_DOC_MOFILES) \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500185 $(DOC_H_FILE) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500186 "*/.xml2po.mo" \
187 "*/*.omf.out" \
188 ; do echo /$$x; done; \
189 fi; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500190 if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400191 for lc in $(HELP_LINGUAS); do \
192 for x in \
193 $(HELP_FILES) \
194 "$$lc.stamp" \
195 "$$lc.mo" \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400196 ; do echo "/$$lc/$$x"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400197 done; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500198 fi; \
199 if test "x$(gsettings_SCHEMAS)" = x; then :; else \
200 for x in \
201 $(gsettings_SCHEMAS:.xml=.valid) \
202 $(gsettings__enum_file) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400203 ; do echo "/$$x"; done; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500204 fi; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500205 if test -f $(srcdir)/po/Makefile.in.in; then \
206 for x in \
207 po/Makefile.in.in \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400208 po/Makefile.in.in~ \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500209 po/Makefile.in \
210 po/Makefile \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400211 po/Makevars.template \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500212 po/POTFILES \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400213 po/Rules-quot \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500214 po/stamp-it \
215 po/.intltool-merge-cache \
216 "po/*.gmo" \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400217 "po/*.header" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500218 "po/*.mo" \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400219 "po/*.sed" \
220 "po/*.sin" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500221 po/$(GETTEXT_PACKAGE).pot \
222 intltool-extract.in \
223 intltool-merge.in \
224 intltool-update.in \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400225 ; do echo "/$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500226 fi; \
227 if test -f $(srcdir)/configure; then \
228 for x in \
229 autom4te.cache \
230 configure \
231 config.h \
232 stamp-h1 \
233 libtool \
234 config.lt \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400235 ; do echo "/$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500236 fi; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400237 if test "x$(DEJATOOL)" = x; then :; else \
238 for x in \
239 $(DEJATOOL) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400240 ; do echo "/$$x.sum"; echo "/$$x.log"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400241 echo /site.exp; \
242 fi; \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400243 if test "x$(am__dirstamp)" = x; then :; else \
244 echo "$(am__dirstamp)"; \
245 fi; \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400246 if test "x$(LTCOMPILE)" = x -a "x$(GTKDOC_RUN)" = x; then :; else \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400247 for x in \
248 "*.lo" \
249 ".libs" "_libs" \
250 ; do echo "$$x"; done; \
251 fi; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500252 for x in \
253 .gitignore \
254 $(GITIGNOREFILES) \
255 $(CLEANFILES) \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400256 $(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
257 $(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
258 $(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500259 so_locations \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500260 $(MOSTLYCLEANFILES) \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400261 $(TEST_LOGS) \
262 $(TEST_LOGS:.log=.trs) \
263 $(TEST_SUITE_LOG) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500264 "*.$(OBJEXT)" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500265 $(DISTCLEANFILES) \
266 $(am__CONFIG_DISTCLEAN_FILES) \
267 $(CONFIG_CLEAN_FILES) \
268 TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
269 "*.tab.c" \
270 $(MAINTAINERCLEANFILES) \
271 $(BUILT_SOURCES) \
272 $(DEPDIR) \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400273 $(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \
274 $(filter %_vala.stamp,$(DIST_COMMON)) \
275 $(filter %.vapi,$(DIST_COMMON)) \
Behdad Esfahbod95d18a72013-12-04 20:01:22 -0500276 $(filter %$(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))),$(DIST_COMMON)) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500277 Makefile \
278 Makefile.in \
279 "*.orig" \
280 "*.rej" \
281 "*.bak" \
282 "*~" \
283 ".*.sw[nop]" \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500284 ".dirstamp" \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400285 ; do echo "/$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500286 } | \
287 sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
288 sed 's@/[.]/@/@g' | \
289 LC_ALL=C sort | uniq > $@.tmp && \
290 mv $@.tmp $@;
291
292all: $(srcdir)/.gitignore gitignore-recurse-maybe
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400293gitignore: $(srcdir)/.gitignore gitignore-recurse
294
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500295gitignore-recurse-maybe:
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500296 @for subdir in $(DIST_SUBDIRS); do \
297 case " $(SUBDIRS) " in \
298 *" $$subdir "*) :;; \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400299 *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500300 esac; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500301 done
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400302gitignore-recurse:
303 @for subdir in $(DIST_SUBDIRS); do \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400304 test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400305 done
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500306
307maintainer-clean: gitignore-clean
308gitignore-clean:
309 -rm -f $(srcdir)/.gitignore
310
311.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe