1234567891011121314151617181920212223242526272829 |
- #!/bin/sh
- rm -f ltconfig ltmain.sh config.cache aclocal.m4 config.guess config.sub
- # remove the autoconf cache
- rm -rf autom4te*.cache
- # create a .version file for configure.in
- if test ! -f .version; then
- # Building from SVN rather than in a release
- echo 0.0.0-dev > .version
- # for the documentation:
- date +"%e %B %Y" | tr -d '\n' > doc/date.xml
- echo 0.0.0-dev > doc/version.xml
- fi
- set -e
- printf "libtoolize... "
- : "${LIBTOOLIZE:="$(command -v libtoolize || command -v glibtoolize)"}"
- if ${LIBTOOLIZE} --help | grep -- --install > /dev/null; then
- ${LIBTOOLIZE} --copy --force --install >/dev/null;
- else
- ${LIBTOOLIZE} --copy --force >/dev/null
- fi
- printf "aclocal... "
- ${ACLOCAL:-aclocal} -I macros
- printf "autoheader... "
- ${AUTOHEADER:-autoheader} -Wall
- printf "autoconf... "
- ${AUTOCONF:-autoconf} -Wall -Werror
- echo okay.
- # remove the autoconf cache
- rm -rf autom4te*.cache
|