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

"""
builds mvn.pyd
"""
import os
import sys
from wafo.f2py_tools import f2py_call_str
def compile_all():
f2py_call = f2py_call_str()
print '=' * 75
print 'compiling mvn'
print '=' * 75
os.system(f2py_call + ' mvn.pyf mvndst.f -c ')
if __name__ == '__main__':
compile_all()