add autogen and build scripts for convenience

This commit is contained in:
Florian Stinglmayr 2018-02-21 10:32:03 +01:00
parent 6a0abd810f
commit 1c5e49f893
2 changed files with 23 additions and 0 deletions

13
autogen.sh Normal file
View File

@ -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

10
build.sh Normal file
View File

@ -0,0 +1,10 @@
#!/bin/sh
set -e
set -x
cd "$(dirname "$0")"
./autogen.sh
./configure "$@"
make -j4