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
458 B
18 lines
458 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-endomorphism --enable-module-ecdh --enable-module-schnorr --enable-module-rangeproof --enable-experimental --enable-module_recovery
|
|
make
|
|
cp .libs/libsecp256k1.a ../SuperNET/includes/
|
|
cd ../SuperNET
|
|
fi
|
|
|
|
git pull
|
|
cd crypto777
|
|
./$1
|
|
cd ..
|
|
|