Files
ecrecover/Makefile
T

12 lines
290 B
Makefile

all: priv/ecrecover.so
priv/ecrecover.so: src/lib.rs parity-ethereum/
cargo build --release
cp target/release/libecrecover.so priv/ecrecover.so
clean:
rm -f src/ecrecover.so target/release/libecrecover.so
parity-ethereum/:
git clone https://github.com/johnsnewby/parity-ethereum.git