Ignore:
Timestamp:
Feb 13, 2013, 3:26:15 PM (12 years ago)
Author:
steve
Message:

Rolling in Padarn's update to fit_interpolation

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/compile_all.py

    r8630 r8690  
    11import os
    22import time
     3import sys
     4import subprocess
    35
    46buildroot = os.getcwd()
     
    1719
    1820os.chdir('utilities')
     21subprocess.call([sys.executable, 'compile.py', 'quad_tree.c'])
     22subprocess.call([sys.executable, 'compile.py', 'sparse_dok.c'])
     23subprocess.call([sys.executable, 'compile.py', 'sparse_csr.c'])
    1924execfile('compile.py')
    2025
     
    5560os.chdir('mesh_engine')
    5661execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
     62
     63os.chdir('..')
     64os.chdir('fit_interpolate')
     65execfile('..' + os.sep + 'utilities' + os.sep + 'compile.py')
     66
    5767
    5868os.chdir(buildroot)   
Note: See TracChangeset for help on using the changeset viewer.