share/Makefile

18 lines
253 B
Makefile
Raw Normal View History

2024-10-09 10:35:08 +02:00
NAME = share
VERSION = 0.0.2
all:
cargo build
static:
CARGO_BUILD_TARGET=x86_64-unknown-linux-musl cargo build --release
check-static:
ldd target/x86_64-unknown-linux-musl/release/share
release:
cargo build --release
clean:
sudo rm -rf target