mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
31 lines
551 B
Bash
31 lines
551 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
PROJECT="codecanalyzer"
|
||
|
|
||
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
||
|
test -n "$srcdir" || srcdir=.
|
||
|
|
||
|
if ! test -f "$srcdir/configure.ac"; then
|
||
|
echo "Failed to find the top-level $PROJECT directory"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
olddir="`pwd`"
|
||
|
cd "$srcdir"
|
||
|
|
||
|
mkdir -p m4
|
||
|
|
||
|
AUTORECONF=`which autoreconf`
|
||
|
if test -z "$AUTORECONF"; then
|
||
|
echo "*** No autoreconf found ***"
|
||
|
exit 1
|
||
|
else
|
||
|
autoreconf -v --install || exit $?
|
||
|
fi
|
||
|
|
||
|
cd "$olddir"
|
||
|
|
||
|
if test -z "$NO_CONFIGURE"; then
|
||
|
$srcdir/configure "$@" && echo "Now type 'make' to compile $PROJECT."
|
||
|
fi
|