mirror of
https://github.com/HongjianFang/DSurfTomo.git
synced 2025-05-06 23:21:14 +08:00
17 lines
488 B
Python
Executable File
17 lines
488 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 SurfTomo ../bin')
|
|
print '--------------------------------------'
|
|
print 'surf_tomo install over'
|
|
print '--------------------------------------'
|