1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
#!/bin/sh
## ----------------------------------------------------------------------
## autogen.sh : refresh GNU autotools toolchain for libxml
## ----------------------------------------------------------------------
## Requires: autoconf (2.5x), automake1.8, libtool (1.5x)
## ----------------------------------------------------------------------
## ----------------------------------------------------------------------
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
## ----------------------------------------------------------------------
|