mirror of
https://github.com/HongjianFang/DSurfTomo.git
synced 2025-05-07 07:31:15 +08:00
17 lines
488 B
Plaintext
17 lines
488 B
Plaintext
![]() |
#!/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 '--------------------------------------'
|