* lib/texinfo.tex: New upstream version.
[automake.git] / m4 / maintainer.m4
blob7159a228a016d420b6aaf3c15275c4c29c9aee58
1 # Add --enable-maintainer-mode option to configure.
2 # From Jim Meyering
4 # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003
5 # Free Software Foundation, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2, or (at your option)
10 # any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 # 02111-1307, USA.
22 # serial 2
24 AC_DEFUN([AM_MAINTAINER_MODE],
25 [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
26   dnl maintainer-mode is disabled by default
27   AC_ARG_ENABLE(maintainer-mode,
28 [  --enable-maintainer-mode enable make rules and dependencies not useful
29                           (and sometimes confusing) to the casual installer],
30       USE_MAINTAINER_MODE=$enableval,
31       USE_MAINTAINER_MODE=no)
32   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
33   AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
34   MAINT=$MAINTAINER_MODE_TRUE
35   AC_SUBST(MAINT)dnl
39 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])