bgfx/3rdparty/glsl-optimizer/autogen.sh

15 lines
215 B
Bash
Raw Normal View History

2012-04-03 23:30:07 -04:00
#! /bin/sh
srcdir=`dirname "$0"`
test -z "$srcdir" && srcdir=.
ORIGDIR=`pwd`
2012-10-07 23:41:18 -04:00
cd "$srcdir"
2012-04-03 23:30:07 -04:00
autoreconf -v --install || exit 1
2012-10-07 23:41:18 -04:00
cd $ORIGDIR || exit $?
2012-04-03 23:30:07 -04:00
2012-10-07 23:41:18 -04:00
if test -z "$NOCONFIGURE"; then
"$srcdir"/configure "$@"
fi