Updated Spanish translation
[anjuta.git] / autogen.sh
blobec6132d47234f0826475a53a1f8e2959ed4e7d06
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 srcdir=`dirname $0`
5 test -z "$srcdir" && srcdir=.
7 echo "Generating initial interface files"
8 sh -c "cd $srcdir/libanjuta/interfaces && \
9 perl anjuta-idl-compiler.pl libanjuta && \
10 touch iface-built.stamp"
12 (cd "$srcdir" && exec git submodule update --init --recursive)
14 ACLOCAL_FLAGS="-I libgd $ACLOCAL_FLAGS"
16 test -n "$srcdir" || srcdir=`dirname "$0"`
17 test -n "$srcdir" || srcdir=.
19 cd "$srcdir" &&
20 gtkdocize &&
21 autopoint --force &&
22 AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install
23 ) || exit
24 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"