mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
30 lines
551 B
Bash
Executable file
30 lines
551 B
Bash
Executable file
#!/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
|