re-add autopoint for gettext stuff
[framework/uifw/ecore.git] / autogen.sh
1 #!/bin/sh
2
3 touch README
4 touch ABOUT-NLS
5
6 echo "Running autopoint..." ; autopoint -f || :
7 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
8 echo "Running autoheader..." ; autoheader || exit 1
9 echo "Running autoconf..." ; autoconf || exit 1
10 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
11 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
12
13 if [ -z "$NOCONFIGURE" ]; then
14         ./configure -C "$@"
15 fi