From: Tim Van Holder Date: Wed, 15 Aug 2001 10:07:34 +0000 (+0000) Subject: * tests/Makefile.am: Use a clean-local rule to remove autom4te.cache (it's a director... X-Git-Tag: AUTOCONF-2.52d~94 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc1df3d0f167820329b5fdce0855b000fdd7eaa1;p=thirdparty%2Fautoconf.git * tests/Makefile.am: Use a clean-local rule to remove autom4te.cache (it's a directory, not a file. * Makefile.am: Ditto (but maintainer-clean-local). --- diff --git a/ChangeLog b/ChangeLog index cc7514f4c..69c892b30 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2001-08-15 Tim Van Holder + + * tests/Makefile.am: Use a clean-local rule to remove + autom4te.cache (it's a directory, not a file. + * Makefile.am: Ditto (but maintainer-clean-local). + 2001-08-15 Akim Demaille * bin/autom4te.in (@m4_warning): New. diff --git a/Makefile.am b/Makefile.am index 197e09d05..1d3398415 100644 --- a/Makefile.am +++ b/Makefile.am @@ -55,6 +55,8 @@ INSTALL.txt: $(top_srcdir)/doc/install.texi MAINTAINERCLEANFILES = INSTALL.txt +maintainer-clean-local: + -rm -rf autom4te.cache ## maintainer-check ## maintainer-check: maintainer-check-tests diff --git a/tests/Makefile.am b/tests/Makefile.am index cab09710c..6a1be1104 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -89,7 +89,6 @@ actypes.at: mktests.sh $(MACRO_FILES) CLEANFILES = \ debug-*.sh state-* at-* stderr stdout \ - autom4te.cache \ script.s4g script.as script \ configure configure.in configure.ac config.status config.cache \ config.log config.h.in config.hin config.h \ @@ -127,3 +126,6 @@ maintainer-check-posix: expr # Try using G++ as a C compiler. maintainer-check-c++: CC=g++ make check + +clean-local: + -rm -rf autom4te.cache