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.
 
 
 
 
 
 

18 lines
411 B

#!/bin/bash
if [ ! -f includes/libsecp256k1.a ]; then
echo Cloning and Building secp256k1 library...
cd ..
git clone https://github.com/ElementsProject/secp256k1-zkp.git
cd secp256k1-zkp
./autogen.sh
./configure --enable-experimental --enable-module-ecdh --enable-module-schnorr --enable-module-rangeproof
make
cp .libs/libsecp256k1.a ../SuperNET/includes/
cd ../SuperNET
fi
git pull
cd crypto777
./$1
cd ..