r1304@dev030 (orig r65095): dreiss | 2007-10-23 20:35:36 -0700
[amiethrift.git] / bootstrap.sh
blobc73e709da98353203bacb81bba3a523af58e5981
1 #!/bin/sh
3 subdirs="compiler/cpp lib/cpp lib/py if"
5 ./cleanup.sh
7 aclocal
8 touch NEWS README AUTHORS ChangeLog
9 autoconf
10 automake -ac
12 for subdir in ${subdirs}; do
13 if [ -x "${subdir}/bootstrap.sh" ]; then
14 cwd="`pwd`"
15 cd "${subdir}"
16 ./bootstrap.sh
17 cd "${cwd}"
19 done