• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# git.mk
2#
3# Copyright 2009, Red Hat, Inc.
4# Copyright 2010,2011,2012,2013 Behdad Esfahbod
5# Written by Behdad Esfahbod
6#
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.
10#
11# The latest version of this file can be downloaded from:
12GIT_MK_URL = https://raw.githubusercontent.com/behdad/git.mk/master/git.mk
13#
14# Bugs, etc, should be reported upstream at:
15#   https://github.com/behdad/git.mk
16#
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
19# 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".
22#
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,
31# or maintainer-clean-local make targets.
32#
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
39# the directories involved and I'll diagnose.
40#
41# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
42# Makefile.am.sample in the git.mk git repo.
43#
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,
49# gnome-doc-utils, yelp.m4, mallard, intltool, gsettings, dejagnu, appdata,
50# appstream.
51#
52# 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.
58#
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
69
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 \
81	$(srcdir)/configure.scan \
82	`AUX_DIR=$(srcdir)/$$(cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_AUX_DIR:$$1' ./configure.ac); \
83	 test "x$$AUX_DIR" = "x$(srcdir)/" && AUX_DIR=$(srcdir); \
84	 for x in \
85		ar-lib \
86		compile \
87		config.guess \
88		config.sub \
89		depcomp \
90		install-sh \
91		ltmain.sh \
92		missing \
93		mkinstalldirs \
94		test-driver \
95		ylwrap \
96	 ; do echo "$$AUX_DIR/$$x"; done` \
97	`cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_HEADERS:$$1' ./configure.ac | \
98	head -n 1 | while read f; do echo "$(srcdir)/$$f.in"; done`
99#
100# All modules should also be fine including the following variable, which
101# removes automake-generated Makefile.in files:
102GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN = \
103	`cd $(top_srcdir); $(AUTOCONF) --trace 'AC_CONFIG_FILES:$$1' ./configure.ac | \
104	while read f; do \
105	  case $$f in Makefile|*/Makefile) \
106	    test -f "$(srcdir)/$$f.am" && echo "$(srcdir)/$$f.in";; esac; \
107	done`
108#
109# Modules that use libtool and use  AC_CONFIG_MACRO_DIR() may also include this,
110# though it's harmless to include regardless.
111GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL = \
112	`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`
122
123
124
125###############################################################################
126# Default rule is to install ourselves in all Makefile.am files:
127###############################################################################
128
129git-all: git-mk-install
130
131git-mk-install:
132	@echo "Installing git makefile"
133	@any_failed=; \
134		find "`test -z "$(top_srcdir)" && echo . || echo "$(top_srcdir)"`" -name Makefile.am | while read x; do \
135		if grep 'include .*/git.mk' $$x >/dev/null; then \
136			echo "$$x already includes git.mk"; \
137		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 \
148				echo "Failed updating $$x"; >&2 \
149				any_failed=1; \
150			fi; \
151	fi; done; test -z "$$any_failed"
152
153git-mk-update:
154	wget $(GIT_MK_URL) -O $(top_srcdir)/git.mk
155
156.PHONY: git-all git-mk-install git-mk-update
157
158
159
160###############################################################################
161# Actual .gitignore generation:
162###############################################################################
163
164$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
165	@echo "git.mk: Generating $@"
166	@{ \
167		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 \
174			; do echo "/$$x"; done; \
175			FLAVOR=$$(cd $(top_srcdir); $(AUTOCONF) --trace 'GTK_DOC_CHECK:$$2' ./configure.ac); \
176			case $$FLAVOR in *no-tmpl*) echo /tmpl;; esac; \
177		fi; \
178		if test "x$(DOC_MODULE)$(DOC_ID)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
179			for lc in $(DOC_LINGUAS); do \
180				for x in \
181					$(if $(DOC_MODULE),$(DOC_MODULE).xml) \
182					$(DOC_PAGES) \
183					$(DOC_INCLUDES) \
184				; do echo "/$$lc/$$x"; done; \
185			done; \
186			for x in \
187				$(_DOC_OMF_ALL) \
188				$(_DOC_DSK_ALL) \
189				$(_DOC_HTML_ALL) \
190				$(_DOC_MOFILES) \
191				$(DOC_H_FILE) \
192				"*/.xml2po.mo" \
193				"*/*.omf.out" \
194			; do echo /$$x; done; \
195		fi; \
196		if test "x$(HELP_ID)" = x -o "x$(HELP_LINGUAS)" = x; then :; else \
197			for lc in $(HELP_LINGUAS); do \
198				for x in \
199					$(HELP_FILES) \
200					"$$lc.stamp" \
201					"$$lc.mo" \
202				; do echo "/$$lc/$$x"; done; \
203			done; \
204		fi; \
205		if test "x$(gsettings_SCHEMAS)" = x; then :; else \
206			for x in \
207				$(gsettings_SCHEMAS:.xml=.valid) \
208				$(gsettings__enum_file) \
209			; do echo "/$$x"; done; \
210		fi; \
211		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; \
221		if test -f $(srcdir)/po/Makefile.in.in; then \
222			for x in \
223				po/Makefile.in.in \
224				po/Makefile.in.in~ \
225				po/Makefile.in \
226				po/Makefile \
227				po/Makevars.template \
228				po/POTFILES \
229				po/Rules-quot \
230				po/stamp-it \
231				po/.intltool-merge-cache \
232				"po/*.gmo" \
233				"po/*.header" \
234				"po/*.mo" \
235				"po/*.sed" \
236				"po/*.sin" \
237				po/$(GETTEXT_PACKAGE).pot \
238				intltool-extract.in \
239				intltool-merge.in \
240				intltool-update.in \
241			; do echo "/$$x"; done; \
242		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 \
251			; do echo "/$$x"; done; \
252		fi; \
253		if test "x$(DEJATOOL)" = x; then :; else \
254			for x in \
255				$(DEJATOOL) \
256			; do echo "/$$x.sum"; echo "/$$x.log"; done; \
257			echo /site.exp; \
258		fi; \
259		if test "x$(am__dirstamp)" = x; then :; else \
260			echo "$(am__dirstamp)"; \
261		fi; \
262		if test "x$(LTCOMPILE)" = x -a "x$(LTCXXCOMPILE)" = x -a "x$(GTKDOC_RUN)" = x; then :; else \
263			for x in \
264				"*.lo" \
265				".libs" "_libs" \
266			; do echo "$$x"; done; \
267		fi; \
268		for x in \
269			.gitignore \
270			$(GITIGNOREFILES) \
271			$(CLEANFILES) \
272			$(PROGRAMS) $(check_PROGRAMS) $(EXTRA_PROGRAMS) \
273			$(LIBRARIES) $(check_LIBRARIES) $(EXTRA_LIBRARIES) \
274			$(LTLIBRARIES) $(check_LTLIBRARIES) $(EXTRA_LTLIBRARIES) \
275			so_locations \
276			$(MOSTLYCLEANFILES) \
277			$(TEST_LOGS) \
278			$(TEST_LOGS:.log=.trs) \
279			$(TEST_SUITE_LOG) \
280			$(TESTS:=.test) \
281			"*.gcda" \
282			"*.gcno" \
283			$(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) \
290			$(patsubst %.vala,%.c,$(filter %.vala,$(SOURCES))) \
291			$(filter %_vala.stamp,$(DIST_COMMON)) \
292			$(filter %.vapi,$(DIST_COMMON)) \
293			$(filter $(addprefix %,$(notdir $(patsubst %.vapi,%.h,$(filter %.vapi,$(DIST_COMMON))))),$(DIST_COMMON)) \
294			Makefile \
295			Makefile.in \
296			"*.orig" \
297			"*.rej" \
298			"*.bak" \
299			"*~" \
300			".*.sw[nop]" \
301			".dirstamp" \
302		; do echo "/$$x"; done; \
303		for x in \
304			"*.$(OBJEXT)" \
305			$(DEPDIR) \
306		; do echo "$$x"; done; \
307	} | \
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
314gitignore: $(srcdir)/.gitignore gitignore-recurse
315
316gitignore-recurse-maybe:
317	@for subdir in $(DIST_SUBDIRS); do \
318	  case " $(SUBDIRS) " in \
319	    *" $$subdir "*) :;; \
320	    *) test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir");; \
321	  esac; \
322	done
323gitignore-recurse:
324	@for subdir in $(DIST_SUBDIRS); do \
325	    test "$$subdir" = . -o -e "$$subdir/.git" || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) gitignore || echo "Skipping $$subdir"); \
326	done
327
328maintainer-clean: gitignore-clean
329gitignore-clean:
330	-rm -f $(srcdir)/.gitignore
331
332.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
333