summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 88ee7f3a0e12d8b7a69b82bd2eeab90d79b4b62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

rm -rf autom4te.cache
rm -f aclocal.m4

echo "Running aclocal..."; aclocal $ACLOCAL_FLAGS -I m4 \
&& echo "Running autoheader..."; autoheader \
&& echo "Running autoconf..."; autoconf \
&& echo "Running libtoolize..."; libtoolize --automake \
&& echo "Running automake..."; automake --add-missing --copy --gnu

###  If you want this, uncomment it.
./configure "$@"