Rust-Programming-Cookbook/Chapter08/python-rust-library/Makefile

13 wiersze
154 B
Makefile
Czysty Zwykły widok Historia

2017-07-31 06:59:18 +00:00
all: run
build:
cargo build --release
cp ./target/release/libexample.so ./example.so
run: build
python test.py
clean:
cargo clean
rm ./example.so