repo.or.cz
/
amiethrift.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
r382@peterm-macbook (orig r38291): marc | 2007-04-01 02:14:05 -0700
[amiethrift.git]
/
bootstrap.sh
blob
59e0007b8b5bc81434d7d9ae1399481be3d1f095
1
#!/bin/sh
2
3
subdirs
=
"compiler/cpp lib/cpp lib/py"
4
5
.
/
cleanup.sh
6
echo
"SUBDIRS =
${subdirs}
"
>
Makefile.am
7
8
aclocal
9
touch
NEWS README AUTHORS ChangeLog
10
autoconf
11
automake
-ac
12
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}
"
19
fi
20
done
21