Fixed compilation issues
[distributed.git] / Makefile.maint
blob952d6da643421109733cf0cb53a747e5a25be2ee
1 ##
2 ## Include file for automake
3 ##
4 ## Copyright (C) 2008 Francesco Salvestrini
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
16 ## You should have received a copy of the GNU General Public License along
17 ## with this program; if not, write to the Free Software Foundation, Inc.,
18 ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 FETCH               = $(top_builddir)/tools/maint/fetch
22 GITLOG_TO_CHANGELOG = $(top_srcdir)/tools/maint/gitlog-to-changelog
23 GIT_VERSION_GEN     = $(top_srcdir)/tools/maint/git-version-gen
24 ANNOUNCE_GEN        = $(top_srcdir)/tools/maint/announce-gen
27 ## Maintainer related targets
29 maintainer-check: Makefile maintainer-check-local maintainer-check-recursive
31 maintainer-check-recursive: Makefile
32         @list='$(SUBDIRS)'; for subdir in $$list; do \
33                 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) maintainer-check); \
34         done
36 update: Makefile update-local update-recursive
38 update-recursive: Makefile
39         @list='$(SUBDIRS)'; for subdir in $$list; do \
40                 test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) update); \
41         done