Fix manifests
[platform/core/location/location-module.git] / autogen.sh
1 #!/bin/sh
2 rm -f config.cache
3 rm -f acconfig.h
4
5 echo "- libtoolize..."
6 libtoolize --force || exit $?
7
8 echo "- aclocal..."
9 aclocal --force -I m4 || exit $?
10
11 echo "- autoheader..."
12 autoheader --force || exit $?
13
14 echo "- automake..."
15 automake --add-missing --force-missing || exit $?
16
17 echo "- autoconf..."
18 autoconf --force || exit $?
19
20 echo "- ready!"
21 exit