libswarm-ng

C implementation of BMT hasher, Swarmhash and Single Owner Chunk for swarm
git clone git://git.defalsify.org/libswarm-ng.git
Log | Files | Refs | Submodules | README

commit 8e9221ac199f4e6ad97a2a535a662e5882845bc2
parent acc805eed62cf84b45dd592f6a73a6845e292895
Author: nolash <dev@holbrook.no>
Date:   Thu, 16 Sep 2021 12:31:41 +0200

Add prepare script

Diffstat:
Aprepare.sh | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/prepare.sh b/prepare.sh @@ -0,0 +1,12 @@ +#git submodule init --update --recursive + +SECP256K1_SRC_DIR=${SECP256K1_SRC_DIR:-./aux/secp256k1} + +pushd $SECP256K1_SRC_DIR +make clean +sh autogen.sh +./configure --enable-module-recovery +make +popd + +