You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
328 B
14 lines
328 B
3 years ago
|
#!/bin/bash
|
||
|
|
||
|
if [ ! -d "./SCTK" ];then
|
||
|
echo "Clone SCTK ..."
|
||
|
git clone https://github.com/usnistgov/SCTK
|
||
|
echo "Clone SCTK done!"
|
||
|
fi
|
||
|
|
||
|
if [ ! -d "./SCTK/bin" ];then
|
||
|
echo "Start make SCTK ..."
|
||
|
pushd SCTK && make config && make all && make check && make install && make doc && popd
|
||
|
echo "SCTK make done!"
|
||
|
fi
|