diff options
author | Tom Tromey <tromey@redhat.com> | 1998-10-03 18:26:55 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 1998-10-03 18:26:55 +0000 |
commit | dee4d56f21c54563bcd57e54613abf00009b9e7e (patch) | |
tree | f5318277e25a094b9944a056bbe26f5275447d87 /lib | |
parent | aff7619c0b36d695a5d5e8406e3a0be90f85efd4 (diff) | |
download | automake-dee4d56f21c54563bcd57e54613abf00009b9e7e.tar.gz |
* automake.in (handle_aclocal_m4): Use new MAINTAINER_MODE
conditional.
(handle_configure): Likewise.
(read_am_file): Likewise.
(file_contents_with_transform): Likewise.
(scan_one_configure_file): Recognize that AM_MAINTAINER_MODE
defines a conditional.
* automake.texi (Optional): Document new AM_MAINTAINER_MODE.
* texi-vers.am ($(srcdir)/@VTEXI@): Look at MAINTAINER_MODE
conditional.
(maintainer-clean-@VTI@): Likewise.
* remake.am ($(srcdir)/configure): Look at MAINTAINER_MODE
conditional.
* remake-hdr.am ($(srcdir)/@CONFIG_HEADER_IN@): Look at
MAINTAINER_MODE conditional.
* m4/maintainer.m4 (AM_MAINTAINER_MODE): Defined MAINTAINER_MODE
conditional.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/am/remake-hdr.am | 4 | ||||
-rw-r--r-- | lib/am/texi-vers.am | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/am/remake-hdr.am b/lib/am/remake-hdr.am index 3315ebf49..9161aea18 100644 --- a/lib/am/remake-hdr.am +++ b/lib/am/remake-hdr.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. +## Copyright (C) 1994, 1995, 1996, 1997, 1998 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -25,7 +25,7 @@ $(SHELL) ./config.status @echo timestamp > @STAMP@ ## Explicitly look in srcdir for benefit of non-GNU makes. -$(srcdir)/@CONFIG_HEADER_IN@: @MAINT@$(srcdir)/@STAMP@.in +$(srcdir)/@CONFIG_HEADER_IN@: @MAINTAINER_MODE_TRUE@$(srcdir)/@STAMP@.in $(srcdir)/@STAMP@.in: $(top_srcdir)/configure.in $(ACLOCAL_M4) @FILES@ cd $(top_srcdir) && $(AUTOHEADER) @echo timestamp > $(srcdir)/@STAMP@.in diff --git a/lib/am/texi-vers.am b/lib/am/texi-vers.am index 5172cbe11..30124aeda 100644 --- a/lib/am/texi-vers.am +++ b/lib/am/texi-vers.am @@ -1,5 +1,5 @@ ## automake - create Makefile.in from Makefile.am -## Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. +## Copyright (C) 1994, 1995, 1996, 1998 Free Software Foundation, Inc. ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by @@ -15,7 +15,7 @@ ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ## 02111-1307, USA. -$(srcdir)/@VTEXI@: @MAINT@stamp-@VTI@ +$(srcdir)/@VTEXI@: @MAINTAINER_MODE_TRUE@stamp-@VTI@ @: ## Depend on configure.in so that version number updates cause a @@ -42,5 +42,5 @@ clean-@VTI@: distclean-@VTI@: maintainer-clean-@VTI@: - -@MAINT@rm -f stamp-@VTI@ @VTEXI@ + -@MAINTAINER_MODE_TRUE@rm -f stamp-@VTI@ @VTEXI@ |