fix corner case with edje - where u check for existens of parts in a edje but
[edje_lua.git] / autogen.sh
blob995ff2fd311fe52ae3b10cfa95930db01a760a59
1 #!/bin/sh
3 rm -rf autom4te.cache
4 rm -f aclocal.m4 ltmain.sh
6 touch README
8 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
9 echo "Running autoheader..." ; autoheader || exit 1
10 echo "Running autoconf..." ; autoconf || exit 1
11 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
12 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
14 if [ -z "$NOCONFIGURE" ]; then
15 ./configure "$@"