efl/legacy/eet/autogen.sh

16 lines
418 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
2002-12-02 15:39:26 -08:00
2005-03-04 20:45:46 -08:00
touch README
2004-06-23 22:52:21 -07:00
echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
&& echo "Running autoheader..."; autoheader \
&& echo "Running autoconf..."; autoconf \
&& echo "Running libtoolize..."; (libtoolize --automake || glibtoolize --automake) \
2004-06-23 22:52:21 -07:00
&& echo "Running automake..."; automake --add-missing --copy --gnu
2002-12-02 15:39:26 -08:00
2004-06-23 22:52:21 -07:00
### If you want this, uncomment it.
./configure "$@"