From 85671579347d6fee5adfb05a6ccc778173fdaf8f Mon Sep 17 00:00:00 2001 From: rlar Date: Fri, 17 Sep 2010 16:17:13 +0000 Subject: [PATCH] use a subdirectory `config' for autoconfigure related artifacts --- .cvsignore | 9 --------- ChangeLog | 7 +++++++ Makefile.am | 9 +++++---- config/.cvsignore | 7 +++++++ configure.ac | 2 ++ 5 files changed, 21 insertions(+), 13 deletions(-) create mode 100644 config/.cvsignore diff --git a/.cvsignore b/.cvsignore index ff4446d4a..8a8ee611e 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1,12 +1,5 @@ -config.guess -config.sub -ltconfig -ltmain.sh aclocal.m4 -install-sh config.h.in -mkinstalldirs -missing stamp-h* Makefile.in configure @@ -17,8 +10,6 @@ libtool config.status Makefile *.cache -depcomp -ylwrap *.tar.gz make.log distrib diff --git a/ChangeLog b/ChangeLog index 9082d8c41..66911b95c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2010-09-17 Robert Larice + * Makefile.am , + * .cvsignore , + * config/.cvsignore , + * configure.ac : + use a subdirectory `config' for autoconfigure related artifacts + 2010-09-17 Robert Larice * **/Makefile.am : whitespace cleanup diff --git a/Makefile.am b/Makefile.am index ced19a645..90ad52d00 100644 --- a/Makefile.am +++ b/Makefile.am @@ -9,10 +9,11 @@ EXTRA_DIST = FAQ autogen.sh Stuarts_Poly_Notes \ README.adms contrib \ examples visualc @NOTXGRAPH@ -MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config.guess \ - config.h.in config.sub configure install-sh \ - missing mkinstalldirs stamp-h.in ltconfig \ - ltmain.sh autom4te.cache +MAINTAINERCLEANFILES = Makefile.in aclocal.m4 config/config.guess \ + config.h.in config/config.sub configure config/install-sh \ + config/missing mkinstalldirs stamp-h.in ltconfig \ + config/ltmain.sh autom4te.cache \ + config/depcomp config/ylwrap ACLOCAL_AMFLAGS = -I m4 diff --git a/config/.cvsignore b/config/.cvsignore new file mode 100644 index 000000000..aebd95012 --- /dev/null +++ b/config/.cvsignore @@ -0,0 +1,7 @@ +config.guess +config.sub +depcomp +install-sh +ltmain.sh +missing +ylwrap diff --git a/configure.ac b/configure.ac index 41a64b2e9..1cfe416d0 100644 --- a/configure.ac +++ b/configure.ac @@ -22,6 +22,8 @@ dnl Older versions may not work with this script and this will report the dnl problem to the user. (2.52 is a guess and might need some adjustment) AC_PREREQ(2.59) +AC_CONFIG_AUX_DIR(config) + dnl Revison stamp the generated ./configure script AC_REVISION($Revision$)