source: trunk/anuga_work/shallow_water_balanced_steve/compile_all.py @ 8866

Last change on this file since 8866 was 8296, checked in by steve, 13 years ago

Added in the compile_all.py for Gareth

File size: 432 bytes
Line 
1import os
2import time
3
4buildroot = '..' + os.sep + '..' + os.sep + 'anuga_core'
5
6compile_script = buildroot + os.sep + 'source' + os.sep + 'anuga' + \
7                 os.sep + 'utilities' + os.sep + 'compile.py'
8
9t0 = time.time()
10
11# Attempt to compile all ANUGA extensions
12
13execfile(compile_script)
14
15
16 
17
18
19print       
20print 'That took %.3fs' %(time.time() - t0)
21
22if sys.platform == 'win32':
23    raw_input('Press the RETURN key')
Note: See TracBrowser for help on using the repository browser.