94c17dba51
Remove the fix-ups for shave and gtk-doc with libtool 1.5: we don't use shave any more, and we require libtool 2.2. Also remove the unnecessary autopoint: we use autoreconf, which calls it automatically.
34 lines
735 B
Bash
Executable File
34 lines
735 B
Bash
Executable File
#! /bin/sh
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
PROJECT=Clutter
|
|
TEST_TYPE=-d
|
|
FILE=clutter
|
|
|
|
test $TEST_TYPE $FILE || {
|
|
echo "You must run this script in the top-level $PROJECT directory"
|
|
exit 1
|
|
}
|
|
|
|
GTKDOCIZE=`which gtkdocize`
|
|
if test -z $GTKDOCIZE; then
|
|
echo "*** No gtk-doc support ***"
|
|
echo "EXTRA_DIST =" > gtk-doc.make
|
|
else
|
|
${GTKDOCIZE} || exit $?
|
|
fi
|
|
|
|
AUTORECONF=`which autoreconf`
|
|
if test -z $AUTORECONF; then
|
|
echo "*** No autoreconf found ***"
|
|
exit 1
|
|
else
|
|
ACLOCAL="${ACLOCAL-aclocal} $ACLOCAL_FLAGS" ${AUTORECONF} -f -v --install || exit $?
|
|
fi
|
|
|
|
if test -z "$NOCONFIGURE"; then
|
|
./configure "$@" && echo "Now type 'make' to compile $PROJECT."
|
|
fi
|