1
0
mirror of https://git.savannah.gnu.org/git/gperf.git synced 2025-12-02 21:19:24 +00:00

Get rid of autom4te.cache directories (left over from autoconf).

This commit is contained in:
Bruno Haible
2017-07-15 20:59:41 +02:00
parent a459641a53
commit 793a229bb5
2 changed files with 12 additions and 6 deletions

View File

@@ -1,3 +1,9 @@
2017-07-15 Bruno Haible <bruno@clisp.org>
Get rid of autom4te.cache directories (left over from autoconf).
* Makefile.devel (configure, */configure, src/config.h.in): Remove
autom4te.cache directory after running autoconf or autoheader.
2017-04-16 Bruno Haible <bruno@clisp.org> 2017-04-16 Bruno Haible <bruno@clisp.org>
Initialize the Keyword::_lineno field through the constructor. Initialize the Keyword::_lineno field through the constructor.

View File

@@ -11,25 +11,25 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure
configures : $(CONFIGURES) configures : $(CONFIGURES)
configure : configure.ac aclocal.m4 configure : configure.ac aclocal.m4
autoconf -I . autoconf -I . && rm -rf autom4te.cache
lib/configure : lib/configure.ac aclocal.m4 lib/configure : lib/configure.ac aclocal.m4
cd lib && autoconf -I .. cd lib && autoconf -I .. && rm -rf autom4te.cache
src/configure : src/configure.ac aclocal.m4 src/configure : src/configure.ac aclocal.m4
cd src && autoconf -I .. cd src && autoconf -I .. && rm -rf autom4te.cache
tests/configure : tests/configure.ac aclocal.m4 tests/configure : tests/configure.ac aclocal.m4
cd tests && autoconf -I .. cd tests && autoconf -I .. && rm -rf autom4te.cache
doc/configure : doc/configure.ac aclocal.m4 doc/configure : doc/configure.ac aclocal.m4
cd doc && autoconf -I .. cd doc && autoconf -I .. && rm -rf autom4te.cache
check-configures : $(CONFIGURES) check-configures : $(CONFIGURES)
set -e; for f in $(CONFIGURES); do bash -x -n $$f; done set -e; for f in $(CONFIGURES); do bash -x -n $$f; done
src/config.h.in : src/configure.ac aclocal.m4 src/config.h.in : src/configure.ac aclocal.m4
cd src && autoheader -I .. cd src && autoheader -I .. && rm -rf autom4te.cache
src/config.h_vms : src/config.h.in src/config.h_vms : src/config.h.in
cp src/config.h.in src/config.h_vms cp src/config.h.in src/config.h_vms