1
#!/bin/sh
2
3
set -e
4
echo "Initial preparation...this can take awhile, so sit tight..."
5
aclocal
6
libtoolize --automake --copy --force
7
autoheader
8
automake --foreign --add-missing --copy
9
autoconf
10
11
echo "You are now ready to run ./configure ..."
12