source: trunk/anuga_work/development/gareth/experimental/anuga_tsunami/compile_all.py

Last change on this file was 8523, checked in by davies, 12 years ago

Adding 'anuga_tsunami' directory for version suited to tsunami

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