diff options
author | Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> | 2015-05-13 10:38:24 +0200 |
---|---|---|
committer | Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com> | 2015-05-18 16:14:46 +0200 |
commit | 89e41fc8e35209b37665a8c45721285d0fd45751 (patch) | |
tree | 168642a63780fc73d8d8bd87681605aef1ea581a /docs | |
parent | 70eff01d36a2870cbf06ffb91c2a941e8cb6b804 (diff) |
build: use git.mk
This patch handles dinamically the gitignore files with git.mk[1].
Removed the automake variable MAINTAINERCLANFILES in most of the
Makefile.am files since now it is handled by the top one.
1. https://github.com/behdad/git.mk/blob/master/git.mk
https://bugzilla.gnome.org/show_bug.cgi?id=749321
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Makefile.am | 3 | ||||
-rw-r--r-- | docs/reference/Makefile.am | 3 | ||||
-rw-r--r-- | docs/reference/libs/Makefile.am | 3 | ||||
-rw-r--r-- | docs/reference/plugins/Makefile.am | 3 |
4 files changed, 4 insertions, 8 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am index 58bb2872..1feb33d7 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -6,5 +6,4 @@ endif DIST_SUBDIRS = reference -# Extra clean files so that maintainer-clean removes *everything* -MAINTAINERCLEANFILES = Makefile.in +-include $(top_srcdir)/git.mk diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index 3eef00ec..28657ac1 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -1,4 +1,3 @@ SUBDIRS = libs plugins -# Extra clean files so that maintainer-clean removes *everything* -MAINTAINERCLEANFILES = Makefile.in +-include $(top_srcdir)/git.mk diff --git a/docs/reference/libs/Makefile.am b/docs/reference/libs/Makefile.am index bda6fe62..036bd7dc 100644 --- a/docs/reference/libs/Makefile.am +++ b/docs/reference/libs/Makefile.am @@ -123,5 +123,4 @@ EXTRA_DIST += \ libs-docs.xml.in \ $(NULL) -# Extra clean files so that maintainer-clean removes *everything* -MAINTAINERCLEANFILES = Makefile.in lib-docs.xml +-include $(top_srcdir)/git.mk diff --git a/docs/reference/plugins/Makefile.am b/docs/reference/plugins/Makefile.am index 6b89cade..d3e20404 100644 --- a/docs/reference/plugins/Makefile.am +++ b/docs/reference/plugins/Makefile.am @@ -104,5 +104,4 @@ EXTRA_DIST += \ $(DOC_MODULE)-docs.xml.in \ $(NULL) -# Extra clean files so that maintainer-clean removes *everything* -MAINTAINERCLEANFILES = Makefile.in $(DOC_MODULE)-docs.xml +-include $(top_srcdir)/git.mk |