Put autotools support files in their own directory.

Use AC_CONFIG_AUX_DIR as suggested by elfring in
https://github.com/johnkerl/miller/issues/9
This commit is contained in:
Thomas Klausner 2015-08-29 18:51:51 +02:00
parent f498a75b09
commit 5195dfe14b
2 changed files with 2 additions and 7 deletions

8
.gitignore vendored
View file

@ -39,20 +39,14 @@ Makefile
Makefile.in
aclocal.m4
autom4te.cache/
compile
config.guess
config.h
config.h.in
config.log
config.status
config.sub
configure
depcomp
install-sh
libtool
ltmain.sh
m4/
missing
autotools/
stamp-h1
test_join_bucket_keeper
test_lrec

View file

@ -2,6 +2,7 @@ AC_PREREQ([2.60])
AC_INIT([mlr],[2.0.0],[email@address.missing])
AC_CONFIG_SRCDIR([c/mlrmain.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([autotools])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE