Set the motion transform id in the collection step.
[flightgear.git] / autogen.sh
blob6f1d9967d7d18d1222ec57c1e22ed85c94e226db
1 #!/bin/sh
3 echo "Running aclocal"
4 aclocal
6 echo "Running autoheader"
7 autoheader
8 if [ ! -e src/Include/config.h.in ]; then
9 echo "ERROR: autoheader didn't create simgear/simgear_config.h.in!"
10 exit 1
11 fi
13 echo "Running automake --add-missing"
14 automake --add-missing
16 echo "Running autoconf"
17 autoconf
19 if [ ! -e configure ]; then
20 echo "ERROR: configure was not created!"
21 exit 1
24 echo ""
25 echo "======================================"
27 if [ -f config.cache ]; then
28 echo "config.cache exists. Removing the config.cache file will force"
29 echo "the ./configure script to rerun all it's tests rather than using"
30 echo "the previously cached values."
31 echo ""
34 echo "Now you are ready to run './configure'"
35 echo "======================================"