Git Init
[external/libxslt.git] / autogen.sh
1 #!/bin/sh
2 ## ----------------------------------------------------------------------
3 ## autogen.sh : refresh GNU autotools toolchain for libxslt
4 ## ----------------------------------------------------------------------
5 ## Requires: autoconf (2.5x), automake1.9, libtool (1.5.x)
6 ## ----------------------------------------------------------------------
7
8 ## ----------------------------------------------------------------------
9 set -e
10
11 ## ----------------------------------------------------------------------
12 libtoolize --force --copy
13
14 ## ----------------------------------------------------------------------
15 aclocal-1.9
16
17 ## ----------------------------------------------------------------------
18 autoheader
19
20 ## ----------------------------------------------------------------------
21 automake-1.9 --foreign --add-missing --force-missing --copy
22
23 ## ----------------------------------------------------------------------
24 autoconf
25
26 # clean up the junk that was created
27 rm -rf autom4te.cache
28
29 ## ----------------------------------------------------------------------
30 exit 0
31
32 ## ----------------------------------------------------------------------