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

prepare.sh (331B)


      1 #!/bin/bash
      2 
      3 git submodule update --init --recursive
      4 
      5 SECP256K1_SRC_DIR=${SECP256K1_SRC_DIR:-./aux/secp256k1}
      6 CHECK_SRC_DIR=${CHECK_SRC_DIR:-./aux/check}
      7 
      8 pushd $SECP256K1_SRC_DIR
      9 autoreconf --install --force
     10 ./configure --enable-module-recovery
     11 make
     12 popd
     13 
     14 pushd $CHECK_SRC_DIR
     15 autoreconf --install --force
     16 ./configure
     17 make
     18 popd
     19 
     20