* doc/Makefile.am (stack.txt): Added EXTRA_DIST entry for stack.txt.
[cacao.git] / autogen.sh
index 86ba59ebd25124e240be5cd225586ca4f52e9e7e..6d59a7fa193a124932054bfab8e5abc0e5c8e598 100755 (executable)
@@ -1,9 +1,13 @@
 #!/bin/sh
 
-aclocal
+libtoolize --automake
+if test `uname` = 'FreeBSD'; then
+    aclocal -I m4 -I /usr/local/share/aclocal -I /usr/local/share/aclocal19
+else
+    aclocal -I m4
+fi
 autoheader
 automake --add-missing
 autoconf
 
-cd mm/boehm-gc && ./autogen.sh && cd ../..
-cd classpath && ./autogen.sh && cd ../..
+cd src/boehm-gc && ./autogen.sh && cd ../..