]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-10-31 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sun, 31 Oct 1999 02:17:01 +0000 (02:17 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Sun, 31 Oct 1999 02:17:01 +0000 (02:17 +0000)
* Makefile.am (CLEANFILES): New explicit variable.
(editsh): acdatadir is no longer defined, so use pkgdatadir.
(editpl): Likewise. From Akim Demaille <akim@epita.fr>.
* Makefile.in: Regenerate.

ChangeLog
Makefile.am
Makefile.in
doc/Makefile.am
doc/Makefile.in

index 2f460ddc86db6d93a71d57d9fa0971b846608fd4..98924ce53e38652eccfaca6e2380eef4badd3504 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 1999-10-31  Ben Elliston  <bje@cygnus.com>
 
+       * Makefile.am (CLEANFILES): New explicit variable.
+       (editsh): acdatadir is no longer defined, so use pkgdatadir.
+       (editpl): Likewise. From Akim Demaille <akim@epita.fr>.
+       * Makefile.in: Regenerate.
+
        * configure: Regenerate.
        * aclocal.m4: Generate.
        * Makefile.in: Regenerate with Automake.
index 7f0f59c8fda01ef53e217711fb843dbb1d5126ce..4790e0528cc7a0866bcaa425c9abe30ad8624600 100644 (file)
@@ -40,12 +40,17 @@ standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
 EXTRA_DIST = $(OLDCHANGELOGS) \
-            acfunctions acheaders acidentifiers acmakevars \
+            acfunctions acheaders acidentifiers acmakevars \
              acprograms acconfig.h acgeneral.m4 acoldnames.m4 \
              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in \
             autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh \
             ifnames.sh autoscan.pl INSTALL.txt
 
+# Files that should be removed, but which Automake does not know.
+# There are texi2dvi files, frozen files, and the scripts.
+CLEANFILES = autoconf.cvs autoconf.ev autoconf.evs autoconf.ma autoconf.mas \
+autoconf.ov autoconf.ovs autoconf.m4f autoheader.m4f $(bin_SCRIPTS)
+
 # INSTALL is a special case.  Automake seems to have a single name space
 # for both targets and variables.  If we just use INSTALL, then the var
 # $(INSTALL) is not defined, and the install target fails.
@@ -64,10 +69,10 @@ install-data-hook: INSTALL.txt
 
 # The scripts.
 
-editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e \
+editsh = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e \
        's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g' \
        -e 's,@''SHELL''@,$(SHELL),g'
-editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'
+editpl = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e 's,@''PERL''@,$(PERL),g'
 
 .sh:
        rm -f $@ $@.tmp
index a713fb0ae9ed6616ca84e2595610de73bfc6e636..a600fd6a7fc5603475d82c77713257a293f13ef2 100644 (file)
@@ -84,14 +84,19 @@ autoconf_TEXINFOS = install.texi
 standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
-EXTRA_DIST = $(OLDCHANGELOGS)       acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in       autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in         autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+
+
+# Files that should be removed, but which Automake does not know.
+# There are texi2dvi files, frozen files, and the scripts.
+CLEANFILES = autoconf.cvs autoconf.ev autoconf.evs autoconf.ma autoconf.mas autoconf.ov autoconf.ovs autoconf.m4f autoheader.m4f $(bin_SCRIPTS)
 
 
 # The scripts.
 
-editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e    's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g'         -e 's,@''SHELL''@,$(SHELL),g'
+editsh = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e   's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g'         -e 's,@''SHELL''@,$(SHELL),g'
 
-editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'
+editpl = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e 's,@''PERL''@,$(PERL),g'
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 CONFIG_CLEAN_FILES =  acversion.m4
@@ -513,6 +518,7 @@ installdirs-am:
 mostlyclean-generic:
 
 clean-generic:
+       -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 
 distclean-generic:
        -rm -f Makefile $(CONFIG_CLEAN_FILES)
index 7f0f59c8fda01ef53e217711fb843dbb1d5126ce..4790e0528cc7a0866bcaa425c9abe30ad8624600 100644 (file)
@@ -40,12 +40,17 @@ standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
 EXTRA_DIST = $(OLDCHANGELOGS) \
-            acfunctions acheaders acidentifiers acmakevars \
+            acfunctions acheaders acidentifiers acmakevars \
              acprograms acconfig.h acgeneral.m4 acoldnames.m4 \
              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in \
             autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh \
             ifnames.sh autoscan.pl INSTALL.txt
 
+# Files that should be removed, but which Automake does not know.
+# There are texi2dvi files, frozen files, and the scripts.
+CLEANFILES = autoconf.cvs autoconf.ev autoconf.evs autoconf.ma autoconf.mas \
+autoconf.ov autoconf.ovs autoconf.m4f autoheader.m4f $(bin_SCRIPTS)
+
 # INSTALL is a special case.  Automake seems to have a single name space
 # for both targets and variables.  If we just use INSTALL, then the var
 # $(INSTALL) is not defined, and the install target fails.
@@ -64,10 +69,10 @@ install-data-hook: INSTALL.txt
 
 # The scripts.
 
-editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e \
+editsh = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e \
        's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g' \
        -e 's,@''SHELL''@,$(SHELL),g'
-editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'
+editpl = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e 's,@''PERL''@,$(PERL),g'
 
 .sh:
        rm -f $@ $@.tmp
index a713fb0ae9ed6616ca84e2595610de73bfc6e636..a600fd6a7fc5603475d82c77713257a293f13ef2 100644 (file)
@@ -84,14 +84,19 @@ autoconf_TEXINFOS = install.texi
 standards_TEXINFOS = make-stds.texi
 
 OLDCHANGELOGS = ChangeLog.0 ChangeLog.1
-EXTRA_DIST = $(OLDCHANGELOGS)       acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in       autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+EXTRA_DIST = $(OLDCHANGELOGS)             acfunctions acheaders acidentifiers acmakevars              acprograms acconfig.h acgeneral.m4 acoldnames.m4              acspecific.m4 autoconf.m4 autoheader.m4 acversion.m4.in         autoconf.sh autoheader.sh autoreconf.sh autoupdate.sh           ifnames.sh autoscan.pl INSTALL.txt
+
+
+# Files that should be removed, but which Automake does not know.
+# There are texi2dvi files, frozen files, and the scripts.
+CLEANFILES = autoconf.cvs autoconf.ev autoconf.evs autoconf.ma autoconf.mas autoconf.ov autoconf.ovs autoconf.m4f autoheader.m4f $(bin_SCRIPTS)
 
 
 # The scripts.
 
-editsh = sed -e 's,@''datadir''@,$(acdatadir),g' -e    's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g'         -e 's,@''SHELL''@,$(SHELL),g'
+editsh = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e   's,@''M4''@,$(M4),g'  -e 's,@''AWK''@,$(AWK),g'         -e 's,@''SHELL''@,$(SHELL),g'
 
-editpl = sed -e 's,@''datadir''@,$(acdatadir),g' -e 's,@''PERL''@,$(PERL),g'
+editpl = sed -e 's,@''datadir''@,$(pkgdatadir),g' -e 's,@''PERL''@,$(PERL),g'
 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 CONFIG_CLEAN_FILES =  acversion.m4
@@ -513,6 +518,7 @@ installdirs-am:
 mostlyclean-generic:
 
 clean-generic:
+       -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
 
 distclean-generic:
        -rm -f Makefile $(CONFIG_CLEAN_FILES)