Add autogen.sh for one less buildstep.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
Peter Hutterer 2011-01-05 10:05:09 +10:00
parent 5a5de828c8
commit db76cb0975
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 "$@"