Moved mvn.pyf and mvndst.f to source/mvn directory + added the build script for it

master
Per.Andreas.Brodtkorb 15 years ago
parent 4a8332d3a4
commit d70f75a3cf

@ -0,0 +1,11 @@
"""
builds mvn.pyd
"""
import os
def compile_all():
#os.system('f2py.py mvn.pyf mvndst.f -c --fcompiler=gnu95 --compiler=mingw32 -lmsvcr71 ')
os.system('f2py.py mvn.pyf mvndst.f -c ')
if __name__=='__main__':
compile_all()
Loading…
Cancel
Save