efl/legacy/evas/autogen.sh

17 lines
468 B
Bash
Raw Normal View History

2002-11-07 23:46:04 -08:00
#!/bin/sh
2004-06-23 21:58:53 -07:00
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
2002-11-07 23:46:04 -08:00
touch README
echo "Running aclocal..." ; aclocal $ACLOCAL_FLAGS -I m4 || exit 1
echo "Running autoheader..." ; autoheader || exit 1
echo "Running autoconf..." ; autoconf || exit 1
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
2002-11-07 23:46:04 -08:00
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi