r382@peterm-macbook (orig r38291): marc | 2007-04-01 02:14:05 -0700
[amiethrift.git] / bootstrap.sh
blob59e0007b8b5bc81434d7d9ae1399481be3d1f095
1 #!/bin/sh
3 subdirs="compiler/cpp lib/cpp lib/py"
5 ./cleanup.sh
6 echo "SUBDIRS = ${subdirs}" > Makefile.am
8 aclocal
9 touch NEWS README AUTHORS ChangeLog
10 autoconf
11 automake -ac
13 for subdir in ${subdirs}; do
14 if [ -x "${subdir}/bootstrap.sh" ]; then
15 cwd="`pwd`"
16 cd "${subdir}"
17 ./bootstrap.sh
18 cd "${cwd}"
20 done