diff options
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..e9b3b2e --- /dev/null +++ b/autogen.sh @@ -0,0 +1,32 @@ +#!/bin/sh +## ---------------------------------------------------------------------- +## autogen.sh : refresh GNU autotools toolchain for libxml2 +## ---------------------------------------------------------------------- +## Requires: autoconf (2.5x), automake1.8, libtool (1.5.x) +## ---------------------------------------------------------------------- + +## ---------------------------------------------------------------------- +set -e + +## ---------------------------------------------------------------------- +libtoolize --force --copy + +## ---------------------------------------------------------------------- +aclocal-1.8 + +## ---------------------------------------------------------------------- +autoheader + +## ---------------------------------------------------------------------- +automake-1.8 --foreign --add-missing --force-missing --copy + +## ---------------------------------------------------------------------- +autoconf + +# clean up the junk that was created +rm -rf autom4te.cache + +## ---------------------------------------------------------------------- +exit 0 + +## ---------------------------------------------------------------------- |