Last change
on this file since 7340 was
6718,
checked in by rwilson, 16 years ago
|
Replace 'ANY' key with 'RETURN' - raw_input() waits for ENTER.
|
File size:
661 bytes
|
Rev | Line | |
---|
[2778] | 1 | import os |
---|
| 2 | |
---|
| 3 | buildroot = os.getcwd() |
---|
| 4 | |
---|
| 5 | #Attempt to compile all extensions |
---|
| 6 | |
---|
| 7 | os.chdir('utilities') |
---|
| 8 | execfile('compile.py') |
---|
| 9 | |
---|
| 10 | os.chdir('..') |
---|
[4978] | 11 | os.chdir('advection') |
---|
| 12 | execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py') |
---|
| 13 | |
---|
| 14 | os.chdir('..') |
---|
[3560] | 15 | os.chdir('abstract_2d_finite_volumes') |
---|
[2778] | 16 | execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py') |
---|
| 17 | |
---|
| 18 | os.chdir('..') |
---|
[3678] | 19 | os.chdir('shallow_water') |
---|
| 20 | execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py') |
---|
| 21 | |
---|
| 22 | os.chdir('..') |
---|
[3027] | 23 | os.chdir('mesh_engine') |
---|
[4447] | 24 | execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py') |
---|
[2778] | 25 | |
---|
| 26 | os.chdir(buildroot) |
---|
| 27 | #execfile('test_all.py') |
---|
| 28 | |
---|
[6419] | 29 | if sys.platform == 'win32': |
---|
[6718] | 30 | raw_input('Press the RETURN key') |
---|
Note: See
TracBrowser
for help on using the repository browser.