blob: 21ae79e8fda632a40a31366b7202aa7e745ffd7a (
plain) (
tree)
|
|
#!/bin/sh
echo "Generating build information using aclocal, autoheader, automake and autoconf."
echo
# Regerate configuration files
aclocal-1.7
autoheader
automake-1.7 --gnu --add-missing --copy
autoconf
echo
echo "Now you are ready to run ./configure"
|