From 793a229bb5681a976c7380e6280b6cf3aba5fa7f Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 15 Jul 2017 20:59:41 +0200 Subject: Get rid of autom4te.cache directories (left over from autoconf). --- ChangeLog | 6 ++++++ Makefile.devel | 12 ++++++------ 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 6bfa33c..a65386e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2017-07-15 Bruno Haible + + 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 Initialize the Keyword::_lineno field through the constructor. diff --git a/Makefile.devel b/Makefile.devel index fc65a93..11b3361 100644 --- a/Makefile.devel +++ b/Makefile.devel @@ -11,25 +11,25 @@ CONFIGURES = configure lib/configure src/configure tests/configure doc/configure configures : $(CONFIGURES) configure : configure.ac aclocal.m4 - autoconf -I . + autoconf -I . && rm -rf autom4te.cache 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 - cd src && autoconf -I .. + cd src && autoconf -I .. && rm -rf autom4te.cache 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 - cd doc && autoconf -I .. + cd doc && autoconf -I .. && rm -rf autom4te.cache check-configures : $(CONFIGURES) set -e; for f in $(CONFIGURES); do bash -x -n $$f; done 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 cp src/config.h.in src/config.h_vms -- cgit v1.2.1