r1198@dev030 (orig r59957): dreiss | 2007-09-17 14:15:47 -0700
[amiethrift.git] / bootstrap.sh
blobd2e240a2181809d0dbd8ae3bae60fc2d151ea29e
1 #!/bin/sh
3 subdirs="compiler/cpp lib/cpp lib/py if"
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