Updated Spanish translation
[anjuta.git] / autogen.sh
blob845d7836dfc43d13c9050ad045a7b5f24cfe4b52
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 test -n "$srcdir" || srcdir=`dirname "$0"`
13 test -n "$srcdir" || srcdir=.
15 cd "$srcdir" &&
16 gtkdocize &&
17 gnome-doc-prepare --automake --copy --force &&
18 autopoint --force &&
19 AUTOPOINT='intltoolize --automake --copy' autoreconf --force --install
20 ) || exit
21 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"