[brasero] Create gitignore files and included gtk.mk in the tree to automatically generate them



commit 5e6cf128765dc5dd4352362a8f7960efe07f142c
Author: Philippe Rouquier <bonfire-app wanadoo fr>
Date:   Wed Jun 3 13:53:34 2009 +0200

    Create gitignore files and included gtk.mk in the tree to automatically generate them
---
 Makefile.am                     |    2 +
 data/Makefile.am                |    2 +
 data/icons/Makefile.am          |    2 +
 docs/Makefile.am                |    2 +
 docs/reference/Makefile.am      |    2 +
 git.mk                          |  182 +++++++++++++++++++++++++++++++++++++++
 help/C/Makefile.am              |    2 +
 help/Makefile.am                |    2 +
 libbrasero-burn/Makefile.am     |    2 +
 libbrasero-media/Makefile.am    |    2 +
 libbrasero-utils/Makefile.am    |    2 +
 nautilus/Makefile.am            |    2 +
 plugins/Makefile.am             |    2 +
 plugins/cdrdao/Makefile.am      |    2 +
 plugins/cdrkit/Makefile.am      |    2 +
 plugins/cdrtools/Makefile.am    |    2 +
 plugins/checksum/Makefile.am    |    2 +
 plugins/dvdauthor/Makefile.am   |    2 +
 plugins/dvdcss/Makefile.am      |    2 +
 plugins/growisofs/Makefile.am   |    2 +
 plugins/libburnia/Makefile.am   |    2 +
 plugins/local-track/Makefile.am |    2 +
 plugins/transcode/Makefile.am   |    2 +
 plugins/vcdimager/Makefile.am   |    2 +
 src/Makefile.am                 |    2 +
 25 files changed, 230 insertions(+), 0 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index 4e3f565..6403cdc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -53,3 +53,5 @@ dist-hook:
 	else \
 		echo A git clone is required to generate a ChangeLog >&2; \
 	fi
+
+-include $(top_srcdir)/git.mk
diff --git a/data/Makefile.am b/data/Makefile.am
index 76eae4f..f730708 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -81,3 +81,5 @@ if UPDATE_CACHES
 else
 	@true
 endif
+
+-include $(top_srcdir)/git.mk
diff --git a/data/icons/Makefile.am b/data/icons/Makefile.am
index eeb2055..d917c30 100644
--- a/data/icons/Makefile.am
+++ b/data/icons/Makefile.am
@@ -328,3 +328,5 @@ uninstall-icons:
 install-data-local: install-icons update-icon-cache
 
 uninstall-local: uninstall-icons update-icon-cache
+
+-include $(top_srcdir)/git.mk
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 0ce9f2e..3858025 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -2,3 +2,5 @@ SUBDIRS=reference
 
 man_MANS = brasero.1
 EXTRA_DIST =	$(man_MANS)
+
+-include $(top_srcdir)/git.mk
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index c7bf481..5206bb1 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -172,3 +172,5 @@ EXTRA_DIST += version.xml.in
 #TESTS = $(GTKDOC_CHECK)
 
 
+
+-include $(top_srcdir)/git.mk
diff --git a/git.mk b/git.mk
new file mode 100644
index 0000000..01bf288
--- /dev/null
+++ b/git.mk
@@ -0,0 +1,182 @@
+# git.mk
+#
+# Copyright 2009, Red Hat, Inc.
+# Written by Behdad Esfahbod
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.
+#
+# The canonical source for this file is pango/git.mk, or whereever the
+# header of pango/git.mk suggests in the future.
+#
+# To use in your project, import this file in your git repo's toplevel,
+# then do "make -f git.mk".  This modifies all Makefile.am files in
+# your project to include git.mk.
+#
+# This enables automatic .gitignore generation.  If you need to ignore
+# more files, add them to the GITIGNOREFILES variable in your Makefile.am.
+# But think twice before doing that.  If a file has to be in .gitignore,
+# chances are very high that it's a generated file and should be in one
+# of MOSTLYCLEANFILES, CLEANFILES, DISTCLEANFILES, or MAINTAINERCLEANFILES.
+#
+# The only case that you need to manually add a file to GITIGNOREFILES is
+# when remove files in one of mostlyclean-local, clean-local, distclean-local,
+# or maintainer-clean-local.
+#
+# Note that for files like editor backup, etc, there are better places to
+# ignore them.  See "man gitignore".
+#
+# If "make maintainer-clean" removes the files but they are not recognized
+# by this script (that is, if "git status" shows untracked files still), send
+# me the output of "git status" as well as your Makefile.am and Makefile for
+# the directories involved.
+#
+# For a list of toplevel files that should be in MAINTAINERCLEANFILES, see
+# pango/Makefile.am.
+#
+# Don't EXTRA_DIST this file.  It is supposed to only live in git clones,
+# not tarballs.  It serves no useful purpose in tarballs and clutters the
+# build dir.
+#
+# This file knows how to handle autoconf, automake, libtool, gtk-doc,
+# gnome-doc-utils, intltool.
+#
+#
+# KNOWN ISSUES:
+#
+# - Recursive configure doesn't work as $(top_srcdir)/git.mk inside the
+#   submodule doesn't find us.  If you have configure.{in,ac} files in
+#   subdirs, add a proxy git.mk file in those dirs that simply does:
+#   "include $(top_srcdir)/../git.mk".  Add more ..'s to your taste.
+#   And add those files to git.  See vte/gnome-pty-helper/git.mk for
+#   example.
+#
+
+git-all: git-mk-install
+
+git-mk-install:
+	@echo Installing git makefile
+	@any_failed=; find $(top_srcdir) -name Makefile.am | while read x; do \
+		if grep 'include .*/git.mk' $$x >/dev/null; then \
+			echo $$x already includes git.mk; \
+		else \
+			failed=; \
+			echo "Updating $$x"; \
+			{ cat $$x; \
+			  echo ''; \
+			  echo '-include $$(top_srcdir)/git.mk'; \
+			} > $$x.tmp || failed=1; \
+			if test x$$failed = x; then \
+				mv $$x.tmp $$x || failed=1; \
+			fi; \
+			if test x$$failed = x; then : else \
+				echo Failed updating $$x; >&2 \
+				any_failed=1; \
+			fi; \
+	fi; done; test -z "$$any_failed"
+
+.PHONY: git-all git-mk-install
+
+
+### .gitignore generation
+
+$(srcdir)/.gitignore: Makefile.am $(top_srcdir)/git.mk
+	@echo Generating $@; \
+	{ \
+		if test "x$(DOC_MODULE)" = x -o "x$(DOC_MAIN_SGML_FILE)" = x; then :; else \
+			for x in \
+				$(DOC_MODULE)-decl-list.txt \
+				$(DOC_MODULE)-decl.txt \
+				tmpl/$(DOC_MODULE)-unused.sgml \
+				"tmpl/*.bak" \
+				xml html \
+			; do echo /$$x; done; \
+		fi; \
+		if test "x$(DOC_MODULE)" = x -o "x$(DOC_LINGUAS)" = x; then :; else \
+			for x in \
+				$(_DOC_C_DOCS) \
+				$(_DOC_LC_DOCS) \
+				$(_DOC_OMF_ALL) \
+				$(_DOC_DSK_ALL) \
+				$(_DOC_HTML_ALL) \
+				$(_DOC_POFILES) \
+				"*/.xml2po.mo" \
+				"*/*.omf.out" \
+			; do echo /$$x; done; \
+		fi; \
+		if test -f $(srcdir)/po/Makefile.in.in; then \
+			for x in \
+				po/Makefile.in.in \
+				po/Makefile.in \
+				po/Makefile \
+				po/POTFILES \
+				po/stamp-it \
+				po/.intltool-merge-cache \
+				"po/*.gmo" \
+				"po/*.mo" \
+				intltool-extract.in \
+				intltool-merge.in \
+				intltool-update.in \
+			; do echo /$$x; done; \
+		fi; \
+		if test -f $(srcdir)/configure; then \
+			for x in \
+				autom4te.cache \
+				configure \
+				config.h \
+				stamp-h1 \
+				libtool \
+				config.lt \
+			; do echo /$$x; done; \
+		fi; \
+		for x in \
+			.gitignore \
+			$(GITIGNOREFILES) \
+			$(CLEANFILES) \
+			$(PROGRAMS) \
+			$(EXTRA_PROGRAMS) \
+			$(LTLIBRARIES) \
+			so_locations \
+			.libs _libs \
+			$(MOSTLYCLEANFILES) \
+			"*.$(OBJEXT)" \
+			"*.lo" \
+			$(DISTCLEANFILES) \
+			$(am__CONFIG_DISTCLEAN_FILES) \
+			$(CONFIG_CLEAN_FILES) \
+			TAGS ID GTAGS GRTAGS GSYMS GPATH tags \
+			"*.tab.c" \
+			$(MAINTAINERCLEANFILES) \
+			$(BUILT_SOURCES) \
+			$(DEPDIR) \
+			Makefile \
+			Makefile.in \
+			"*.orig" \
+			"*.rej" \
+			"*.bak" \
+			"*~" \
+			".*.sw[nop]" \
+		; do echo /$$x; done; \
+	} | \
+	sed "s ^/`echo "$(srcdir)" | sed 's/\(.\)/[\1]/g'`/@/@" | \
+	sed 's@/[.]/@/@g' | \
+	LANG=C sort | uniq > $  tmp && \
+	mv $  tmp $@;
+
+all: $(srcdir)/.gitignore gitignore-recurse-maybe
+gitignore-recurse-maybe:
+	@if test "x$(SUBDIRS)" = "x$(DIST_SUBDIRS)"; then :; else \
+		$(MAKE) $(AM_MAKEFLAGS) gitignore-recurse; \
+	fi;
+gitignore-recurse:
+	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
+	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) .gitignore gitignore-recurse || echo "Skipping $$subdir"); \
+	done
+gitignore: $(srcdir)/.gitignore gitignore-recurse
+
+maintainer-clean: gitignore-clean
+gitignore-clean:
+	-rm -f $(srcdir)/.gitignore
+
+.PHONY: gitignore-clean gitignore gitignore-recurse gitignore-recurse-maybe
diff --git a/help/C/Makefile.am b/help/C/Makefile.am
index 27b9888..0a70aa3 100644
--- a/help/C/Makefile.am
+++ b/help/C/Makefile.am
@@ -34,3 +34,5 @@ CLEANFILES += authors.xml
 
 dist-hook: app-dist-hook
 
+
+-include $(top_srcdir)/git.mk
diff --git a/help/Makefile.am b/help/Makefile.am
index 61e54e3..f74d664 100644
--- a/help/Makefile.am
+++ b/help/Makefile.am
@@ -15,3 +15,5 @@ DOC_FIGURES = figures/brasero_main.png
 
 # List of translations
 DOC_LINGUAS = ca de el en_GB es fr it pl ru sv
+
+-include $(top_srcdir)/git.mk
diff --git a/libbrasero-burn/Makefile.am b/libbrasero-burn/Makefile.am
index 95e236a..06ed5a9 100644
--- a/libbrasero-burn/Makefile.am
+++ b/libbrasero-burn/Makefile.am
@@ -205,3 +205,5 @@ EXTRA_DIST =			\
 CLEANFILES =			\
 	$(RECMARSHALFILES)
 
+
+-include $(top_srcdir)/git.mk
diff --git a/libbrasero-media/Makefile.am b/libbrasero-media/Makefile.am
index 8d0dc47..c83996e 100644
--- a/libbrasero-media/Makefile.am
+++ b/libbrasero-media/Makefile.am
@@ -157,3 +157,5 @@ EXTRA_DIST =			\
 CLEANFILES =			\
 	$(RECMARSHALFILES)
 	
+
+-include $(top_srcdir)/git.mk
diff --git a/libbrasero-utils/Makefile.am b/libbrasero-utils/Makefile.am
index b1440a7..2e90407 100644
--- a/libbrasero-utils/Makefile.am
+++ b/libbrasero-utils/Makefile.am
@@ -66,3 +66,5 @@ libbrasero_utils_la_SOURCES =		\
 CLEANFILES =			\
 	$(RECMARSHALFILES)
 	
+
+-include $(top_srcdir)/git.mk
diff --git a/nautilus/Makefile.am b/nautilus/Makefile.am
index ae4d00e..3a47f9e 100644
--- a/nautilus/Makefile.am
+++ b/nautilus/Makefile.am
@@ -54,3 +54,5 @@ libnautilus_brasero_extension_la_LIBADD =	\
 	../libbrasero-burn/libbrasero-burn.la
 	
 libnautilus_brasero_extension_la_LDFLAGS = $(module_flags)
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/Makefile.am b/plugins/Makefile.am
index 723b75f..166c061 100644
--- a/plugins/Makefile.am
+++ b/plugins/Makefile.am
@@ -11,3 +11,5 @@ endif
 if BUILD_CDRTOOLS
 SUBDIRS += cdrtools
 endif
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/cdrdao/Makefile.am b/plugins/cdrdao/Makefile.am
index 9f45252..53fc1d5 100644
--- a/plugins/cdrdao/Makefile.am
+++ b/plugins/cdrdao/Makefile.am
@@ -29,3 +29,5 @@ libbrasero_toc2cue_la_SOURCES = burn-toc2cue.c burn-toc2cue.h \
 	burn-cdrdao-common.h 
 libbrasero_toc2cue_la_LIBADD = $(BRASERO_GLIB_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_toc2cue_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/cdrkit/Makefile.am b/plugins/cdrkit/Makefile.am
index 466fb1f..4f1772a 100644
--- a/plugins/cdrkit/Makefile.am
+++ b/plugins/cdrkit/Makefile.am
@@ -37,3 +37,5 @@ libbrasero_readom_la_SOURCES = burn-readom.c burn-readom.h \
 	burn-cdrkit.h 
 libbrasero_readom_la_LIBADD = $(BRASERO_GLIB_LIBS) ../../libbrasero-media/libbrasero-media.la ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_readom_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/cdrtools/Makefile.am b/plugins/cdrtools/Makefile.am
index 8c340e5..647edf5 100644
--- a/plugins/cdrtools/Makefile.am
+++ b/plugins/cdrtools/Makefile.am
@@ -37,3 +37,5 @@ libbrasero_readcd_la_SOURCES = burn-readcd.c burn-readcd.h \
 	burn-cdrtools.h 
 libbrasero_readcd_la_LIBADD = $(BRASERO_GLIB_LIBS) ../../libbrasero-media/libbrasero-media.la ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_readcd_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/checksum/Makefile.am b/plugins/checksum/Makefile.am
index 6e19693..a2cb0f6 100644
--- a/plugins/checksum/Makefile.am
+++ b/plugins/checksum/Makefile.am
@@ -32,3 +32,5 @@ libbrasero_checksum_file_la_SOURCES = burn-checksum-files.c	\
 
 libbrasero_checksum_file_la_LDFLAGS = -module -avoid-version
 libbrasero_checksum_file_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_GCONF_LIBS) $(BRASERO_GTK_LIBS) ../../libbrasero-media/libbrasero-media.la ../../libbrasero-burn/libbrasero-burn.la
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/dvdauthor/Makefile.am b/plugins/dvdauthor/Makefile.am
index deefcf5..d2639ed 100644
--- a/plugins/dvdauthor/Makefile.am
+++ b/plugins/dvdauthor/Makefile.am
@@ -21,3 +21,5 @@ libbrasero_dvdauthor_la_SOURCES = burn-dvdauthor.c burn-dvdauthor.h
 libbrasero_dvdauthor_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_LIBXML_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_dvdauthor_la_LDFLAGS = -module -avoid-version
 
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/dvdcss/Makefile.am b/plugins/dvdcss/Makefile.am
index 01568f1..38e463e 100644
--- a/plugins/dvdcss/Makefile.am
+++ b/plugins/dvdcss/Makefile.am
@@ -20,3 +20,5 @@ libbrasero_dvdcss_la_SOURCES = burn-dvdcss.c burn-dvdcss.h \
 	burn-dvdcss-private.h 
 libbrasero_dvdcss_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_GMODULE_LIBS) ../../libbrasero-media/libbrasero-media.la ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_dvdcss_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/growisofs/Makefile.am b/plugins/growisofs/Makefile.am
index eb128f0..935b375 100644
--- a/plugins/growisofs/Makefile.am
+++ b/plugins/growisofs/Makefile.am
@@ -28,3 +28,5 @@ dvdrwformat_LTLIBRARIES = libbrasero-dvdrwformat.la
 libbrasero_dvdrwformat_la_SOURCES = burn-dvd-rw-format.c burn-dvd-rw-format.h
 libbrasero_dvdrwformat_la_LIBADD = $(BRASERO_GLIB_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_dvdrwformat_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/libburnia/Makefile.am b/plugins/libburnia/Makefile.am
index 22381b9..b2ebaca 100644
--- a/plugins/libburnia/Makefile.am
+++ b/plugins/libburnia/Makefile.am
@@ -34,3 +34,5 @@ libbrasero_libisofs_la_SOURCES = burn-libisofs.c burn-libisofs.h	\
 	burn-libburnia.h 
 libbrasero_libisofs_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_LIBBURNIA_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_libisofs_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/local-track/Makefile.am b/plugins/local-track/Makefile.am
index fad0244..d0b2d16 100644
--- a/plugins/local-track/Makefile.am
+++ b/plugins/local-track/Makefile.am
@@ -29,3 +29,5 @@ burn_uri_LTLIBRARIES = libbrasero-burn-uri.la
 libbrasero_burn_uri_la_SOURCES = burn-uri.c burn-uri.h
 libbrasero_burn_uri_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_GIO_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_burn_uri_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/transcode/Makefile.am b/plugins/transcode/Makefile.am
index e2ff2c7..1067d5f 100644
--- a/plugins/transcode/Makefile.am
+++ b/plugins/transcode/Makefile.am
@@ -34,3 +34,5 @@ vob_LTLIBRARIES = libbrasero-vob.la
 libbrasero_vob_la_SOURCES = burn-vob.c burn-vob.h
 libbrasero_vob_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_GSTREAMER_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_vob_la_LDFLAGS = -module -avoid-version
+
+-include $(top_srcdir)/git.mk
diff --git a/plugins/vcdimager/Makefile.am b/plugins/vcdimager/Makefile.am
index 465bfce..2500fd2 100644
--- a/plugins/vcdimager/Makefile.am
+++ b/plugins/vcdimager/Makefile.am
@@ -21,3 +21,5 @@ libbrasero_vcdimager_la_SOURCES = burn-vcdimager.c burn-vcdimager.h
 libbrasero_vcdimager_la_LIBADD = $(BRASERO_GLIB_LIBS) $(BRASERO_LIBXML_LIBS) ../../libbrasero-burn/libbrasero-burn.la
 libbrasero_vcdimager_la_LDFLAGS = -module -avoid-version
 
+
+-include $(top_srcdir)/git.mk
diff --git a/src/Makefile.am b/src/Makefile.am
index c118cd1..1065613 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -151,3 +151,5 @@ EXTRA_DIST =			\
 CLEANFILES =			\
 	$(RECMARSHALFILES)
 	
+
+-include $(top_srcdir)/git.mk



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]