autogen.sh without typo
[cacao.git] / autogen.sh
1 #!/bin/sh
2
3 libtoolize --automake
4 if test `uname` = 'FreeBSD'; then
5         echo "FreeBSD -- only tested with 5.3-RELEASE though"
6         aclocal  -I . -I /usr/local/share/aclocal -I /usr/local/share/aclocal19
7 else
8         aclocal -I .
9 fi
10 autoheader
11 automake --add-missing
12 autoconf
13
14 #echo "boehm-gc"
15 cd src/boehm-gc && ./autogen.sh && cd ../..
16
17 #echo "classpath"
18 cd src/classpath && ./autogen.sh && cd ../..