efl/legacy/eet/autogen.sh

17 lines
468 B
Bash
Raw Normal View History

2002-12-02 15:39:26 -08:00
#!/bin/sh
2004-06-23 22:52:21 -07:00
rm -rf autom4te.cache
rm -f aclocal.m4 ltmain.sh
2002-12-02 15:39:26 -08:00
2005-03-04 20:45:46 -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-12-02 15:39:26 -08:00
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi