blob: d88319ac723e1836fca16d860998d408e6f531d9 [file] [log] [blame]
#!/bin/sh
subdirs="compiler/cpp lib/cpp lib/php lib/py"
./cleanup.sh
echo "SUBDIRS = ${subdirs}" > Makefile.am
aclocal
touch NEWS README AUTHORS ChangeLog
autoconf
automake -ac
for subdir in ${subdirs}; do
if [ -x "${subdir}/bootstrap.sh" ]; then
cwd="`pwd`"
cd ${subdir}
./bootstrap.sh
cd ${cwd}
fi
done