r1309@opsdev009 (orig r70221): mcslee | 2007-11-15 18:48:52 -0800
[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