source: anuga_core/source/anuga/compile_all.py @ 3547

Last change on this file since 3547 was 3527, checked in by duncan, 19 years ago

I'm adding this so given just the anuga directory compiling is still easy.

File size: 336 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('pyvolution')
12execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
13
14os.chdir('..')
15os.chdir('mesh_engine')
16execfile('compile.py')
17
18os.chdir(buildroot)   
19#execfile('test_all.py')
20   
Note: See TracBrowser for help on using the repository browser.