configure.ac: AC_CONFIG_AUX_DIR([build]) added.

This commit is contained in:
Roland Jax
2014-05-22 12:08:37 +02:00
parent 75a0eb62e8
commit bed9159097
3 changed files with 3 additions and 5 deletions
+1 -4
View File
@@ -1,18 +1,15 @@
/INSTALL /INSTALL
/Makefile /Makefile
/Makefile.in /Makefile.in
/build/*
/aclocal.m4 /aclocal.m4
/autom4te.cache/ /autom4te.cache/
/config.* /config.*
/configure /configure
/depcomp
/ebusd /ebusd
/ebusd*.tar.* /ebusd*.tar.*
/install-sh
/missing
/stamp-h? /stamp-h?
.deps/ .deps/
*.o *.o
*.dirstamp *.dirstamp
/compile
/feed /feed
View File
+2 -1
View File
@@ -1,7 +1,8 @@
AC_PREREQ([2.65]) AC_PREREQ([2.65])
AC_INIT([ebusd], [0.2.0], [roland.jax@liwest.at], [ebusd], [https://github.com/yuhu-/ebusd]) AC_INIT([ebusd], [0.2.0], [roland.jax@liwest.at], [ebusd], [https://github.com/yuhu-/ebusd])
AM_INIT_AUTOMAKE([1.11 -Wall no-define]) AC_CONFIG_AUX_DIR([build])
AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([m4])