source: compile_all.py @ 2267

Last change on this file since 2267 was 2263, checked in by ole, 19 years ago

Work towards a test_all.py at the inundation directory level. Most tests pass except a few in least_squares, data_manager and cg_solve...

File size: 484 bytes
Line 
1import os
2
3buildroot = os.getcwd()
4os.chdir('inundation')
5print 'Changing to', os.getcwd()       
6
7#entries = listdir('.')
8
9
10#Attempt to compile all extensions
11
12os.chdir('utilities')
13execfile('compile.py')
14
15os.chdir('..')
16os.chdir('pyvolution')
17execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
18
19os.chdir('..')
20os.chdir('pmesh')
21execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
22
23os.chdir(buildroot)   
24#execfile('test_all.py')
25   
Note: See TracBrowser for help on using the repository browser.