rc load/save option, config cleanup.
[gjacktransport.git] / autogen.sh
blobd4abebbc60ecee82f5d635ddc3f7fa0b35b61ef4
1 #!/bin/sh
2 echo "glib-gettextize .."
3 echo "no" | glib-gettextize --force --copy || exit
5 echo "intltoolize.."
6 intltoolize --copy --force --automake || exit
7 echo "aclocal.."
8 aclocal || exit
9 echo "autoheader.."
10 autoheader || exit
11 echo "automake.."
12 automake --gnu --add-missing --copy || exit
13 echo "autoconf.."
14 autoconf || exit
16 if test -z "$*"; then
17 echo "**Warning**: I am going to run \`configure' with no arguments."
18 echo "If you wish to pass any to it, please specify them on the"
19 echo \`$0\'" command line."
20 echo
23 conf_flags="--enable-maintainer-mode"
25 echo Running $srcdir/configure $conf_flags "$@" ...
26 ./configure $conf_flags "$@" \
27 && echo Now type \`make\' to compile. || exit 1