source: anuga_core/compile_all.py @ 4525

Last change on this file since 4525 was 4447, checked in by duncan, 17 years ago

now there is only one compile.py file.

File size: 799 bytes
RevLine 
[2778]1import os
2
3buildroot = os.getcwd()
4
[3514]5os.chdir('source')
[2778]6
[3514]7os.chdir('anuga')
8
[2778]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('..')
[3560]28os.chdir('abstract_2d_finite_volumes')
[2778]29execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
30
31os.chdir('..')
[3563]32os.chdir('shallow_water')
33execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
34
35os.chdir('..')
[3027]36os.chdir('mesh_engine')
[4447]37execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
[2778]38
39os.chdir(buildroot)   
40#execfile('test_all.py')
41   
Note: See TracBrowser for help on using the repository browser.