ecrecover/Makefile
2019-08-15 09:28:29 +02:00

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