Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

autogen.sh 334B

1234567891011121314151617181920
  1. #! /bin/sh
  2. srcdir=`dirname "$0"`
  3. test -z "$srcdir" && srcdir=.
  4. SRCDIR=`(cd "$srcdir" && pwd)`
  5. ORIGDIR=`pwd`
  6. if test "x$SRCDIR" != "x$ORIGDIR"; then
  7. echo "Mesa cannot be built when srcdir != builddir" 1>&2
  8. exit 1
  9. fi
  10. MAKEFLAGS=""
  11. autoreconf -v --install || exit 1
  12. if test -z "$NOCONFIGURE"; then
  13. "$srcdir"/configure "$@"
  14. fi