source: trunk/anuga_work/development/gareth/balanced_basic/compile_all.py @ 8884

Last change on this file since 8884 was 8302, checked in by davies, 13 years ago

Adding files for swb2

File size: 464 bytes
Line 
1import os
2import time
3
4buildroot = '..' + os.sep + '..' + os.sep + '..' + 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.