]> git.mxchange.org Git - simgear.git/blob - autogen.sh
Initial revision of jpegfactory code for generating jpeg format screen dumps.
[simgear.git] / autogen.sh
1 #!/bin/sh
2
3 echo "Running aclocal"
4 aclocal
5
6 echo "Running autoheader"
7 autoheader
8
9 echo "Running automake"
10 automake --add-missing
11
12 echo "Running autoconf"
13 autoconf
14
15 echo ""
16 echo "======================================"
17
18 if [ -f config.cache ]; then
19     echo "config.cache exists.  Removing the config.cache file will force"
20     echo "the ./configure script to rerun all it's tests rather than using"
21     echo "the previously cached values."
22     echo ""
23 fi
24
25 echo "Now you are ready to run './configure'"
26 echo "======================================"