mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
eb0d024ee1
Summary: Including the compiler!!! Reviewed By: automake git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664949 13f79535-47bb-0310-9956-ffa450edef68
22 lines
324 B
Bash
Executable File
22 lines
324 B
Bash
Executable File
#!/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
|
|
|