diff --git a/.gitignore b/.gitignore index 44cf2ea..0fd4156 100644 --- a/.gitignore +++ b/.gitignore @@ -2,20 +2,19 @@ *.pc *.la *.o -libtool -ltmain.sh -missing -install-sh -depcomp -configure -config.* *.lo -autom4te.cache -ar-lib -test-driver -aclocal.m4 Makefile + +# autoreconf Makefile.in +aclocal.m4 +autom4te.cache/ +build-aux/ +config.log +config.status +configure +libtool + .deps *.log .libs diff --git a/Makefile.am b/Makefile.am index 8710d74..c66dfba 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,6 +3,8 @@ # This program is free software; you can redistribute it and/or modify it # under the terms of the standard MIT license. See COPYING for more details. +ACLOCAL_AMFLAGS = -I build-aux/m4 + lib_LTLIBRARIES = libbase58.la libbase58_la_SOURCES = base58.c libbase58_la_LDFLAGS = -version-info $(LIBBASE58_SO_VERSION) -no-undefined diff --git a/build-aux/m4/.null b/build-aux/m4/.null new file mode 100644 index 0000000..e69de29 diff --git a/configure.ac b/configure.ac index b7ed159..b069980 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,8 @@ AC_INIT( [0.1.4], [luke_libbase58@dashjr.org], [libbase58]) -AC_CONFIG_AUX_DIR([.]) +AC_CONFIG_AUX_DIR([build-aux]) +AC_CONFIG_MACRO_DIR([build-aux/m4]) AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.11 -Wall dist-xz foreign]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])