Add autogen.sh

This commit is contained in:
Philip Langdale 2012-03-31 09:16:55 -07:00
parent 50ce447f33
commit e4f0b07c7e
1 changed files with 12 additions and 0 deletions

12
autogen.sh Executable file
View File

@ -0,0 +1,12 @@
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
$srcdir/configure "$@"