2
0
mirror of synced 2025-02-16 15:46:49 +00:00

14 lines
303 B
Bash
Raw Permalink Normal View History

#!/bin/sh
2018-03-15 20:34:55 +02:00
set -e
THIS_DIR=$(dirname "$0")
cd $THIS_DIR/secp256k1
./autogen.sh
2018-03-15 20:34:55 +02:00
./configure --enable-module-ecdh --enable-module-recovery --enable-experimental
make src/ecmult_static_context.h
2018-03-15 20:34:55 +02:00
cd -
cp secp256k1/src/ecmult_static_context.h "$THIS_DIR"
cp secp256k1/src/libsecp256k1-config.h "$THIS_DIR"