2005-04-13 19:49:56 +00:00
|
|
|
#! /bin/sh
|
2008-04-09 10:51:15 +00:00
|
|
|
|
|
|
|
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 || exit $?
|
2007-06-19 14:15:42 +00:00
|
|
|
|
|
|
|
# back in the stupidity of autoreconf
|
2008-04-09 10:51:15 +00:00
|
|
|
autoreconf -v --install || exit $?
|
|
|
|
|
|
|
|
./configure "$@" ${GTK_DOC_ARGS}
|
2007-06-19 14:15:42 +00:00
|
|
|
|
2008-04-09 10:51:15 +00:00
|
|
|
echo "Now type 'make' to compile $PROJECT."
|