[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Clean autom4te.cache in tests subdir
From: |
Tim Van Holder |
Subject: |
Clean autom4te.cache in tests subdir |
Date: |
Tue, 14 Aug 2001 15:08:25 +0200 |
Listing it in CLEANFILES does not work, as it's a
directory.
Should a similar thing be added to the top dir (for
when configure is regenerated), or should this be
up to the user?
2001-08-14 Tim Van Holder <address@hidden>
* tests/Makefile.am: Use a clean-local target
instead of CLEANFILES to clean up autom4te.cache.
Index: Makefile.am
===================================================================
RCS file: /cvs/autoconf/tests/Makefile.am,v
retrieving revision 1.53
diff -u -r1.53 Makefile.am
--- Makefile.am 2001/08/07 07:56:41 1.53
+++ Makefile.am 2001/08/14 13:03:45
@@ -89,7 +89,6 @@
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 @@
# Try using G++ as a C compiler.
maintainer-check-c++:
CC=g++ make check
+
+clean-local:
+ -rm -rf autom4te.cache
- Clean autom4te.cache in tests subdir,
Tim Van Holder <=