Put most autotools files into autostuff/.

This yields a slightly more "tidy" top-level directory.
This commit is contained in:
Uwe Hermann 2012-01-03 21:55:48 +01:00
parent 8e190238d7
commit d8521c939f
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@
## along with this program. If not, see <http://www.gnu.org/licenses/>. ## along with this program. If not, see <http://www.gnu.org/licenses/>.
## ##
ACLOCAL_AMFLAGS = -I m4 ACLOCAL_AMFLAGS = -I autostuff
AM_CPPFLAGS = -I$(top_srcdir) AM_CPPFLAGS = -I$(top_srcdir)

View File

@ -29,7 +29,8 @@ m4_define([sigrok_version],
AC_INIT([libsigrok], [libsigrok_version], [sigrok-devel@lists.sourceforge.net], AC_INIT([libsigrok], [libsigrok_version], [sigrok-devel@lists.sourceforge.net],
[libsigrok], [http://www.sigrok.org]) [libsigrok], [http://www.sigrok.org])
AC_CONFIG_HEADER([config.h]) AC_CONFIG_HEADER([config.h])
AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_MACRO_DIR([autostuff])
AC_CONFIG_AUX_DIR([autostuff])
AM_INIT_AUTOMAKE([-Wall -Werror foreign std-options]) AM_INIT_AUTOMAKE([-Wall -Werror foreign std-options])
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])