mirror of
https://github.com/wassname/simpeg.git
synced 2026-06-28 02:02:39 +08:00
9 lines
241 B
Python
9 lines
241 B
Python
import os
|
|
print 'Compiling TriSolve.'
|
|
os.system('f2py -c Utils/TriSolve.f -m TriSolve')
|
|
print 'TriSolve Compiled! yay.'
|
|
print 'Moving TriSolve into Utils.'
|
|
os.system('mv TriSolve.so Utils/TriSolve.so')
|
|
print 'Thats it. Well Done Computer.'
|
|
|