diff --git a/autogen.sh b/autogen.sh new file mode 100644 index 0000000..ad7f79b --- /dev/null +++ b/autogen.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e +set -x + +cd "$(dirname "$0")" + +PATH=$PATH:/usr/local/bin + +aclocal $AC_SEARCH_OPTS +autoconf +autoheader +automake --add-missing diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..17f0890 --- /dev/null +++ b/build.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e +set -x + +cd "$(dirname "$0")" + +./autogen.sh +./configure "$@" +make -j4