Browse Source

use a subdirectory `config' for autoconfigure related artifacts

pre-master-46
rlar 16 years ago
parent
commit
8567157934
  1. 9
      .cvsignore
  2. 7
      ChangeLog
  3. 9
      Makefile.am
  4. 7
      config/.cvsignore
  5. 2
      configure.ac

9
.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

7
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

9
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

7
config/.cvsignore

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

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

Loading…
Cancel
Save