blob: c73e709da98353203bacb81bba3a523af58e5981 [file] [log] [blame]
Marc Slemkob09f5882006-08-23 22:03:34 +00001#!/bin/sh
2
David Reiss1ac120f2007-08-29 00:58:14 +00003subdirs="compiler/cpp lib/cpp lib/py if"
Marc Slemkob09f5882006-08-23 22:03:34 +00004
Mark Sleeeb0d0242007-01-25 07:58:55 +00005./cleanup.sh
Marc Slemkob09f5882006-08-23 22:03:34 +00006
7aclocal
8touch NEWS README AUTHORS ChangeLog
9autoconf
10automake -ac
11
12for subdir in ${subdirs}; do
13 if [ -x "${subdir}/bootstrap.sh" ]; then
14 cwd="`pwd`"
Mark Slee4c91e552007-03-08 01:22:46 +000015 cd "${subdir}"
Marc Slemkob09f5882006-08-23 22:03:34 +000016 ./bootstrap.sh
Mark Slee4c91e552007-03-08 01:22:46 +000017 cd "${cwd}"
Marc Slemkob09f5882006-08-23 22:03:34 +000018 fi
19done
20