blob: 091d7ec770abd12a69a59e01c20fb5fb12dfa25e [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:
Behdad Esfahbodd1466782015-02-26 13:52:50 -080012GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk
13#
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050014# Bugs, etc, should be reported upstream at:
15# https://github.com/behdad/git.mk
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050016#
17# To use in your project, import this file in your git repo's toplevel,
18# then do "make -f git.mk". This modifies all Makefile.am files in
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050019# your project to -include git.mk. Remember to add that line to new
20# Makefile.am files you create in your project, or just rerun the
21# "make -f git.mk".
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050022#
23# This enables automatic .gitignore generation. If you need to ignore
24# more files, add them to the GITIGNOREFILES variable in your Makefile.am.
25# But think twice before doing that. If a file has to be in .gitignore,
26# chances are very high that it's a generated file and should be in one
27# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
28#
29# The only case that you need to manually add a file to GITIGNOREFILES is
30# when remove files in one of mostlyclean-local, clean-local, distclean-local,
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050031# or maintainer-clean-local make targets.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050032#
33# Note that for files like editor backup, etc, there are better places to
34# ignore them. See "man gitignore".
35#
36# If "make maintainer-clean" removes the files but they are not recognized
37# by this script (that is, if "git status" shows untracked files still), send
38# me the output of "git status" as well as your Makefile.am and Makefile for
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050039# the directories involved and I'll diagnose.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050040#
41# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -050042# Makefile.am.sample in the git.mk git repo.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050043#
44# Don't EXTRA_DIST this file. It is supposed to only live in git clones,
45# not tarballs. It serves no useful purpose in tarballs and clutters the
46# build dir.
47#
48# This file knows how to handle autoconf, automake, libtool, gtk-doc,
Behdad Esfahbodd1466782015-02-26 13:52:50 -080049# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu, appdata,
50# appstream.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050051#
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -040052# This makefile provides the following targets:
53#
54# - all: "make all" will build all gitignore files.
55# - gitignore: makes all gitignore files in the current dir and subdirs.
56# - .gitignore: make gitignore file for the current dir.
57# - gitignore-recurse: makes all gitignore files in the subdirs.
Behdad Esfahbod29aa4002009-11-02 16:28:39 -050058#
59# KNOWN ISSUES:
60#
61# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
62# submodule doesn't find us. If you have configure.{in,ac} files in
63# subdirs, add a proxy git.mk file in those dirs that simply does:
64# "include $(top_srcdir)/../git.mk". Add more ..'s to your taste.
65# And add those files to git. See vte/gnome-pty-helper/git.mk for
66# example.
67#
68
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050069
70
71###############################################################################
72# Variables user modules may want to add to toplevel MAINTAINERCLEANFILES:
73###############################################################################
74
75#
76# Most autotools-using modules should be fine including this variable in their
77# toplevel MAINTAINERCLEANFILES:
78GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL = \
79 $(srcdir)/aclocal.m4 \
80 $(srcdir)/autoscan.log \
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050081 $(srcdir)/configure.scan \
Behdad Esfahboddddf9902013-08-26 17:58:25 -040082 `AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \
Behdad Esfahbod627af692013-08-06 16:53:56 -040083 test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \
84 for x in \
Behdad Esfahbod72225272013-08-06 15:19:23 -040085 ar-lib \
86 compile \
87 config.guess \
88 config.sub \
89 depcomp \
90 install-sh \
91 ltmain.sh \
92 missing \
93 mkinstalldirs \
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -040094 test-driver \
Behdad Esfahbodd1466782015-02-26 13:52:50 -080095 ylwrap \
Behdad Esfahbod72225272013-08-06 15:19:23 -040096 ; do echo "$$AUX_DIR/$$x"; done` \
Behdad Esfahboddddf9902013-08-26 17:58:25 -040097 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \
Behdad Esfahbod72225272013-08-06 15:19:23 -040098 head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done`
Behdad Esfahbod22c625a2013-03-04 20:56:15 -050099#
100# All modules should also be fine including the following variable, which
101# removes automake-generated Makefile.in files:
102GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400103 `cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500104 while read f; do \
105 case $$f in Makefile|*/Makefile) \
106 test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \
107 done`
108#
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -0400109# Modules that use libtool and use AC_CONFIG_MACRO_DIR() may also include this,
110# though it's harmless to include regardless.
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500111GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \
Behdad Esfahbod6b4fdde2013-09-30 13:48:19 -0400112 `MACRO_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_MACRO_DIR:$$1' ./configure.ac); \
113 if test "x$$MACRO_DIR" != "x$(srcdir)/"; then \
114 for x in \
115 libtool.m4 \
116 ltoptions.m4 \
117 ltsugar.m4 \
118 ltversion.m4 \
119 lt~obsolete.m4 \
120 ; do echo "$$MACRO_DIR/$$x"; done; \
121 fi`
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500122
123
124
125###############################################################################
126# Default rule is to install ourselves in all Makefile.am files:
127###############################################################################
128
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500129git-all: git-mk-install
130
131git-mk-install:
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400132 @echo "Installing git makefile"
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500133 @any_failed=; \
134 find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500135 if grep 'include .*/git.mk' $$x >/dev/null; then \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400136 echo "$$x already includes git.mk"; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500137 else \
138 failed=; \
139 echo "Updating $$x"; \
140 { cat $$x; \
141 echo ''; \
142 echo '-include $$(top_srcdir)/git.mk'; \
143 } > $$x.tmp || failed=1; \
144 if test x$$failed = x; then \
145 mv $$x.tmp $$x || failed=1; \
146 fi; \
147 if test x$$failed = x; then : else \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400148 echo "Failed updating $$x"; >&2 \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500149 any_failed=1; \
150 fi; \
151 fi; done; test -z "$$any_failed"
152
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800153git-mk-update:
154 wget $(GIT_MK_URL) -O $(top_srcdir)/git.mk
155
156.PHONY: git-all git-mk-install git-mk-update
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500157
158
Behdad Esfahbod22c625a2013-03-04 20:56:15 -0500159
160###############################################################################
161# Actual .gitignore generation:
162###############################################################################
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500163
164$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
Behdad Esfahbod72225272013-08-06 15:19:23 -0400165 @echo "git.mk: Generating $@"
166 @{ \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500167 if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
168 for x in \
169 $(DOC_MODULE)-decl-list.txt \
170 $(DOC_MODULE)-decl.txt \
171 tmpl/$(DOC_MODULE)-unused.sgml \
172 "tmpl/*.bak" \
173 xml html \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400174 ; do echo "/$$x"; done; \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400175 FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \
176 case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500177 fi; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500178 if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400179 for lc in $(DOC_LINGUAS); do \
180 for x in \
181 $(if $(DOC_MODULE),$(DOC_MODULE).xml) \
182 $(DOC_PAGES) \
183 $(DOC_INCLUDES) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400184 ; do echo "/$$lc/$$x"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400185 done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500186 for x in \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500187 $(_DOC_OMF_ALL) \
188 $(_DOC_DSK_ALL) \
189 $(_DOC_HTML_ALL) \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500190 $(_DOC_MOFILES) \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500191 $(DOC_H_FILE) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500192 "*/.xml2po.mo" \
193 "*/*.omf.out" \
194 ; do echo /$$x; done; \
195 fi; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500196 if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400197 for lc in $(HELP_LINGUAS); do \
198 for x in \
199 $(HELP_FILES) \
200 "$$lc.stamp" \
201 "$$lc.mo" \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400202 ; do echo "/$$lc/$$x"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400203 done; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500204 fi; \
205 if test "x$(gsettings_SCHEMAS)" = x; then :; else \
206 for x in \
207 $(gsettings_SCHEMAS:.xml=.valid) \
208 $(gsettings__enum_file) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400209 ; do echo "/$$x"; done; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500210 fi; \
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800211 if test "x$(appdata_XML)" = x; then :; else \
212 for x in \
213 $(appdata_XML:.xml=.valid) \
214 ; do echo "/$$x"; done; \
215 fi; \
216 if test "x$(appstream_XML)" = x; then :; else \
217 for x in \
218 $(appstream_XML:.xml=.valid) \
219 ; do echo "/$$x"; done; \
220 fi; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500221 if test -f $(srcdir)/po/Makefile.in.in; then \
222 for x in \
223 po/Makefile.in.in \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400224 po/Makefile.in.in~ \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500225 po/Makefile.in \
226 po/Makefile \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400227 po/Makevars.template \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500228 po/POTFILES \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400229 po/Rules-quot \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500230 po/stamp-it \
231 po/.intltool-merge-cache \
232 "po/*.gmo" \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400233 "po/*.header" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500234 "po/*.mo" \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400235 "po/*.sed" \
236 "po/*.sin" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500237 po/$(GETTEXT_PACKAGE).pot \
238 intltool-extract.in \
239 intltool-merge.in \
240 intltool-update.in \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400241 ; do echo "/$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500242 fi; \
243 if test -f $(srcdir)/configure; then \
244 for x in \
245 autom4te.cache \
246 configure \
247 config.h \
248 stamp-h1 \
249 libtool \
250 config.lt \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400251 ; do echo "/$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500252 fi; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400253 if test "x$(DEJATOOL)" = x; then :; else \
254 for x in \
255 $(DEJATOOL) \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400256 ; do echo "/$$x.sum"; echo "/$$x.log"; done; \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400257 echo /site.exp; \
258 fi; \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400259 if test "x$(am__dirstamp)" = x; then :; else \
260 echo "$(am__dirstamp)"; \
261 fi; \
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800262 if test "x$(LTCOMPILE)" = x -a "x$(LTCXXCOMPILE)" = x -a "x$(GTKDOC_RUN)" = x; then :; else \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400263 for x in \
264 "*.lo" \
265 ".libs" "_libs" \
266 ; do echo "$$x"; done; \
267 fi; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500268 for x in \
269 .gitignore \
270 $(GITIGNOREFILES) \
271 $(CLEANFILES) \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400272 $(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
273 $(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
274 $(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500275 so_locations \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500276 $(MOSTLYCLEANFILES) \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400277 $(TEST_LOGS) \
278 $(TEST_LOGS:.log=.trs) \
279 $(TEST_SUITE_LOG) \
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800280 $(TESTS:=.test) \
281 "*.gcda" \
282 "*.gcno" \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500283 $(DISTCLEANFILES) \
284 $(am__CONFIG_DISTCLEAN_FILES) \
285 $(CONFIG_CLEAN_FILES) \
286 TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
287 "*.tab.c" \
288 $(MAINTAINERCLEANFILES) \
289 $(BUILT_SOURCES) \
Behdad Esfahboddddf9902013-08-26 17:58:25 -0400290 $(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \
291 $(filter %_vala.stamp,$(DIST_COMMON)) \
292 $(filter %.vapi,$(DIST_COMMON)) \
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800293 $(filter $(addprefix %,$(notdir $(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))))),$(DIST_COMMON)) \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500294 Makefile \
295 Makefile.in \
296 "*.orig" \
297 "*.rej" \
298 "*.bak" \
299 "*~" \
300 ".*.sw[nop]" \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500301 ".dirstamp" \
Behdad Esfahbod36a661c2013-04-11 13:38:37 -0400302 ; do echo "/$$x"; done; \
Behdad Esfahbodd1466782015-02-26 13:52:50 -0800303 for x in \
304 "*.$(OBJEXT)" \
305 $(DEPDIR) \
306 ; do echo "$$x"; done; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500307 } | \
308 sed "s@^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
309 sed 's@/[.]/@/@g' | \
310 LC_ALL=C sort | uniq > $@.tmp && \
311 mv $@.tmp $@;
312
313all: $(srcdir)/.gitignore gitignore-recurse-maybe
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400314gitignore: $(srcdir)/.gitignore gitignore-recurse
315
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500316gitignore-recurse-maybe:
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500317 @for subdir in $(DIST_SUBDIRS); do \
318 case " $(SUBDIRS) " in \
319 *" $$subdir "*) :;; \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400320 *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
Behdad Esfahbodbee74ef2012-01-27 02:14:08 -0500321 esac; \
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500322 done
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400323gitignore-recurse:
324 @for subdir in $(DIST_SUBDIRS); do \
Behdad Esfahbod72225272013-08-06 15:19:23 -0400325 test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \
Behdad Esfahbod6efe1ec2012-07-11 15:30:08 -0400326 done
Behdad Esfahbod29aa4002009-11-02 16:28:39 -0500327
328maintainer-clean: gitignore-clean
329gitignore-clean:
330 -rm -f $(srcdir)/.gitignore
331
332.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe