Add the autogen.sh from xf86-input-evdev.

We will use a similar buildsystem now.
This commit is contained in:
Christoph Brill
2008-06-06 20:08:34 +02:00
parent 8c9f88c7fa
commit b958286163

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 --enable-maintainer-mode "$@"