efl: turn on cached result, that will reduce your configure time a lot !
[framework/uifw/elementary.git] / autogen.sh
1 #!/bin/sh
2
3 echo "Running autopoint..." ; autopoint -f || :
4 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
5 echo "Running autoheader..." ; autoheader || exit 1
6 echo "Running autoconf..." ; autoconf || exit 1
7 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
8 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
9
10 if [ -z "$NOCONFIGURE" ]; then
11         ./configure -C "$@"
12 fi