Switch to autoconf/automake/libtool.

libtool is included as future preparation for exporting a library.
This commit is contained in:
Jeff Garzik
2016-07-29 06:27:45 -04:00
parent 32043a11c3
commit e1e9c6558c
9 changed files with 174 additions and 41 deletions

9
autogen.sh Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
set -e
srcdir="$(dirname $0)"
cd "$srcdir"
if [ -z ${LIBTOOLIZE} ] && GLIBTOOLIZE="`which glibtoolize 2>/dev/null`"; then
LIBTOOLIZE="${GLIBTOOLIZE}"
export LIBTOOLIZE
fi
autoreconf --install --force