1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#!/bin/sh echo "Updating configuration..." echo "Running libtoolize" libtoolize -i echo "Running aclocal" if which aclocal > /dev/null 2>&1; then aclocal -I m4 --install else echo "No aclocal found on your system" exit 1 fi echo "Running autoconf" autoconf echo "Running automake" automake -a echo "Deleting autom4te.cache directory" rm -r autom4te.cache |