source: trunk/essentials/sys-devel/automake-1.8/m4/maintainer.m4

Last change on this file was 3118, checked in by bird, 18 years ago

automake 1.8.5

File size: 1.4 KB
Line 
1# Add --enable-maintainer-mode option to configure.
2# From Jim Meyering
3
4# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004
5# Free Software Foundation, Inc.
6
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.
11
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.
16
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.
21
22# serial 3
23
24AC_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
36]
37)
38
39AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
Note: See TracBrowser for help on using the repository browser.