bump to -rc12
[gnucap-felix.git] / bootstrap
blobb6808feac56657561e10553fb924038eb3f958bf
1 #! /bin/sh
4 # Run the various GNU autotools to bootstrap the build
5 # system. Should only need to be done once.
7 # does not work (in case you wonder)
8 #CONFIGURE_OUTPUT=-oconfigure.gnu
10 # for now avoid using bash as not everyone has that installed
11 CONFIG_SHELL=/bin/sh
12 export CONFIG_SHELL
14 echo "Running aclocal..."
15 aclocal -Im4 || exit 1
17 echo "Running autoheader..."
18 autoheader || exit 1
20 echo "Running libtoolize"
21 libtoolize || exit 1
23 echo "Running automake..."
24 automake -a -c --gnu || exit 1
26 echo "Running autoconf..."
27 autoconf $CONFIGURE_OUTPUT || exit 1
29 echo "not Running configure..."
30 ##./configure $@ || exit 1