Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
David Reiss | 1ac120f | 2007-08-29 00:58:14 +0000 | [diff] [blame] | 3 | subdirs="compiler/cpp lib/cpp lib/py if" |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 4 | |
Mark Slee | eb0d024 | 2007-01-25 07:58:55 +0000 | [diff] [blame] | 5 | ./cleanup.sh |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 6 | |
7 | aclocal | ||||
8 | touch NEWS README AUTHORS ChangeLog | ||||
9 | autoconf | ||||
10 | automake -ac | ||||
11 | |||||
12 | for subdir in ${subdirs}; do | ||||
13 | if [ -x "${subdir}/bootstrap.sh" ]; then | ||||
14 | cwd="`pwd`" | ||||
Mark Slee | 4c91e55 | 2007-03-08 01:22:46 +0000 | [diff] [blame] | 15 | cd "${subdir}" |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 16 | ./bootstrap.sh |
Mark Slee | 4c91e55 | 2007-03-08 01:22:46 +0000 | [diff] [blame] | 17 | cd "${cwd}" |
Marc Slemko | b09f588 | 2006-08-23 22:03:34 +0000 | [diff] [blame] | 18 | fi |
19 | done | ||||
20 |