source:
compile_all.py
@
2378
Last change on this file since 2378 was 2308, checked in by , 19 years ago | |
---|---|
File size: 448 bytes |
Line | |
---|---|
1 | import os |
2 | |
3 | buildroot = os.getcwd() |
4 | os.chdir('inundation') |
5 | print 'Changing to', os.getcwd() |
6 | |
7 | #entries = listdir('.') |
8 | |
9 | |
10 | #Attempt to compile all extensions |
11 | |
12 | os.chdir('utilities') |
13 | execfile('compile.py') |
14 | |
15 | os.chdir('..') |
16 | os.chdir('pyvolution') |
17 | execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py') |
18 | |
19 | os.chdir('..') |
20 | os.chdir('triangle') |
21 | execfile('compile.py') |
22 | |
23 | os.chdir(buildroot) |
24 | #execfile('test_all.py') |
25 |
Note: See TracBrowser
for help on using the repository browser.