3 PROJECT="gstreamer-vaapi"
5 test -n "$srcdir" || srcdir="`dirname \"$0\"`"
6 test -n "$srcdir" || srcdir=.
8 if ! test -f "$srcdir/configure.ac"; then
9 echo "Failed to find the top-level $PROJECT directory"
18 GTKDOCIZE=`which gtkdocize`
19 if test -z $GTKDOCIZE; then
20 echo "*** No gtk-doc support ***"
21 echo "EXTRA_DIST =" > gtk-doc.make
26 AUTORECONF=`which autoreconf`
27 if test -z $AUTORECONF; then
28 echo "*** No autoreconf found ***"
31 autoreconf -v --install || exit $?
36 if test -z "$NO_CONFIGURE"; then
37 $srcdir/configure "$@" && echo "Now type 'make' to compile $PROJECT."