source: anuga_core/compile_all.py @ 3921

Last change on this file since 3921 was 3563, checked in by ole, 18 years ago

Moved shallow water out from the old pyvolution directory.
All tests pass, most examples and okushiri works again.

File size: 760 bytes
Line 
1import os
2
3buildroot = os.getcwd()
4
5os.chdir('source')
6
7os.chdir('anuga')
8
9#Complete horrible hack to decide which branch to take (Ole)
10#try:
11#    os.stat('inundation-numpy-branch')
12#except:
13#    os.chdir('inundation')
14#else:
15#    os.chdir('inundation-numpy-branch')   
16
17print 'Changing to', os.getcwd()       
18
19#entries = listdir('.')
20
21
22#Attempt to compile all extensions
23
24os.chdir('utilities')
25execfile('compile.py')
26
27os.chdir('..')
28os.chdir('abstract_2d_finite_volumes')
29execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
30
31os.chdir('..')
32os.chdir('shallow_water')
33execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
34
35os.chdir('..')
36os.chdir('mesh_engine')
37execfile('compile.py')
38
39os.chdir(buildroot)   
40#execfile('test_all.py')
41   
Note: See TracBrowser for help on using the repository browser.