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.

19 lines
406 B

#!/bin/bash
if [ ! -f includes/secp256k1 ]; 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
9 years ago
git pull
9 years ago
cd crypto777
9 years ago
./$1
9 years ago
cd ..