enlightenment/autogen.sh

19 lines
532 B
Bash
Raw Normal View History

#!/bin/sh
rm -rf autom4te.cache
2005-08-08 14:46:03 -07:00
rm -f aclocal.m4 ltmain.sh
2005-08-08 14:46:03 -07:00
touch README
touch ABOUT-NLS
2005-08-08 14:46:03 -07:00
echo "Running autopoint..." ; autopoint -f || :
echo "Running aclocal..." ; aclocal -I m4 $ACLOCAL_FLAGS || exit 1
2005-08-08 14:46:03 -07:00
echo "Running autoconf..." ; autoconf || exit 1
echo "Running autoheader..." ; autoheader || exit 1
2005-08-08 14:46:03 -07:00
echo "Running libtoolize..." ; (libtoolize --copy --automake || glibtoolize --automake) || exit 1
echo "Running automake..." ; automake --add-missing --copy --gnu || exit 1
if [ -z "$NOCONFIGURE" ]; then
./configure "$@"
fi