remove luac and added the ekto_cc script instead
[ekto.git] / autogen.sh
blob05a9b7109057e432934afc6af9f2372759cd96a0
1 #!/bin/sh
3 rm -rf autom4te.cache
4 rm -f aclocal.m4 ltmain.sh
6 echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS|| exit 1
7 echo "Running autoconf..." ; autoconf || exit 1
8 echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
9 echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
11 if [ -z "$NOCONFIGURE" ]; then
12 ./configure "$@"