5 # Run the various GNU autotools to bootstrap the build
6 # system. Should only need to be done once.
8 # for now avoid using bash as not everyone has that installed
12 echo "Running aclocal..."
13 aclocal
$ACLOCAL_FLAGS ||
exit 1
14 echo "Done with aclocal"
16 echo "Running autoheader..."
18 echo "Done with autoheader"
20 echo "Running automake..."
21 automake
-a -c --foreign ||
exit 1
22 echo "Done with automake"
24 echo "Running autoconf..."
26 echo "Done with autoconf"
28 echo "You must now run configure"
30 echo "All done with autogen.sh"