use a subdirectory `config' for autoconfigure related artifacts

This commit is contained in:
rlar 2010-09-17 16:17:13 +00:00
parent 68b2e6b23a
commit 8567157934
5 changed files with 21 additions and 13 deletions

View File

@ -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

View File

@ -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

View File

@ -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

7
config/.cvsignore Normal file
View File

@ -0,0 +1,7 @@
config.guess
config.sub
depcomp
install-sh
ltmain.sh
missing
ylwrap

View File

@ -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$)