xenocara/util/makedepend/autogen.sh

16 lines
210 B
Bash
Raw Normal View History

2006-11-25 09:15:45 -07:00
#! /bin/sh
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
cd $srcdir
autoreconf -v --install || exit 1
cd $ORIGDIR || exit $?
2013-09-28 09:37:13 -06:00
if test -z "$NOCONFIGURE"; then
$srcdir/configure "$@"
fi