2 # Run this to generate all the initial makefiles, etc.
5 test -z "$srcdir" && srcdir=.
12 FILE=clutter/clutter.h
14 test $TEST_TYPE $FILE || {
15 echo "You must run this script in the top-level $PROJECT directory"
19 # GNU gettext automake support doesn't get along with git.
20 # https://bugzilla.gnome.org/show_bug.cgi?id=661128
21 touch -t 200001010000 po/clutter-1.0.pot
23 if automake-1.11 --version < /dev/null > /dev/null 2>&1 ; then
24 AUTOMAKE=automake-1.11
26 export AUTOMAKE ACLOCAL
29 echo "You must have automake 1.11.x installed to compile $PROJECT
31 echo "Install the appropriate package for your distribution,"
32 echo "or get the source tarball at http://ftp.gnu.org/gnu/automake/"
36 (gtkdocize --version) < /dev/null > /dev/null 2>&1 || {
38 echo "You must have gtk-doc installed to compile $PROJECT."
39 echo "Install the appropriate package for your distribution,"
40 echo "or get the source tarball at http://ftp.gnome.org/pub/GNOME/sources/gtk-doc/"
44 # NOCONFIGURE is used by gnome-common
45 if test -z "$NOCONFIGURE"; then
47 echo "I am going to run ./configure with no arguments - if you wish "
48 echo "to pass any to it, please specify them on the $0 command line."
52 if test -z "$ACLOCAL_FLAGS"; then
53 acdir=`$ACLOCAL --print-ac-dir`
55 for file in $m4list; do
56 if [ ! -f "$acdir/$file" ]; then
57 echo "WARNING: aclocal's directory is $acdir, but..."
58 echo " no file $acdir/$file"
59 echo " You may see fatal macro warnings below."
60 echo " If these files are installed in /some/dir, set the ACLOCAL_FLAGS "
61 echo " environment variable to \"-I /some/dir\", or install"
71 autoreconf -vfi || exit $?
72 cd $ORIGDIR || exit $?
74 if test -z "$NOCONFIGURE"; then
75 $srcdir/configure $AUTOGEN_CONFIGURE_ARGS "$@" || exit $?
76 echo "Now type 'make' to compile $PROJECT."