source: anuga_work/development/2010-projects/anuga_1d/compile_all.py @ 7839

Last change on this file since 7839 was 7839, checked in by steve, 14 years ago

Changing name of 1d projects so that it will be easy to moveto the trunk

File size: 642 bytes
Line 
1import os
2
3buildroot = os.getcwd()
4
5#Attempt to compile all extensions
6
7os.chdir('utilities')
8execfile('compile.py')
9
10os.chdir('..')
11os.chdir('generic_1d')
12execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
13
14os.chdir('..')
15os.chdir('channel_flow')
16execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
17
18os.chdir('..')
19os.chdir('pipe_flow')
20execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
21
22os.chdir('..')
23os.chdir('sww_flow')
24execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
25
26
27os.chdir(buildroot)   
28#execfile('test_all.py')
29   
30if sys.platform == 'win32':
31    raw_input('Press the RETURN key')
Note: See TracBrowser for help on using the repository browser.