DSurfTomo/configure
2015-07-07 19:30:35 +08:00

17 lines
489 B
Python
Executable File

#!/usr/bin/env python
# this is a script to install surf_tomo and surf_tomo_syn in your system
# written by Hongjian Fang(fanghj@mail.ustc.edu.cn)
import os
if 'bin' in os.listdir('.'):
print 'installation beginning'
else:
print 'installation beginning'
os.mkdir('bin')
os.chdir('src')
os.system('make clean')
os.system('make')
os.system('cp DSurfTomo ../bin')
print '--------------------------------------'
print 'surf_tomo install over'
print '--------------------------------------'