efl/legacy/evas/autogen.sh

14 lines
404 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
2002-11-07 23:46:04 -08:00
2004-06-23 21:58:53 -07:00
echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
&& echo "Running autoheader..."; autoheader \
&& echo "Running autoconf..."; autoconf \
2004-09-12 22:38:15 -07:00
&& echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \
2004-06-23 21:58:53 -07:00
&& echo "Running automake..."; automake --add-missing --copy --gnu
2002-11-07 23:46:04 -08:00
2004-06-23 21:58:53 -07:00
### If you want this, uncomment it.
./configure "$@"