You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
303 B
Python
21 lines
303 B
Python
15 years ago
|
"""
|
||
|
builds mvn.pyd
|
||
|
"""
|
||
|
import os
|
||
12 years ago
|
import sys
|
||
15 years ago
|
|
||
14 years ago
|
|
||
10 years ago
|
from wafo.f2py_tools import f2py_call_str
|
||
14 years ago
|
|
||
|
def compile_all():
|
||
10 years ago
|
f2py_call = f2py_call_str()
|
||
|
print '=' * 75
|
||
14 years ago
|
print 'compiling mvn'
|
||
10 years ago
|
print '=' * 75
|
||
|
|
||
14 years ago
|
os.system(f2py_call + ' mvn.pyf mvndst.f -c ')
|
||
10 years ago
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
15 years ago
|
compile_all()
|