Files
pam-fprint-grosshack/autogen.sh
2016-07-19 11:19:21 +02:00

21 lines
359 B
Bash
Executable File

#!/bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
pushd $srcdir
aclocal || exit 1
autoheader || exit 1
glib-gettextize -f -c || exit 1
gtkdocize --copy || exit 1
intltoolize -c -f || exit 1
libtoolize -c || exit 1
autoconf || exit 1
automake -a -c || exit 1
popd
if test -z "$NOCONFIGURE"; then
$srcdir/configure --enable-maintainer-mode $*
fi