Initial Import
[profile/ivi/clutter-toys.git] / gps-globe / autogen.sh
1 #! /bin/sh
2
3 PROJECT=gps-globe
4
5 AUTORECONF=`which autoreconf`
6
7 if test -z "$AUTORECONF"; then
8         echo "*** No autoreconf found ***"
9         exit 1
10 else
11         autoreconf -v --install || exit $?
12 fi
13
14 ./configure "$@" && echo "Now type 'make' to compile $PROJECT."