makefile con comandos para lincado estático

This commit is contained in:
serxoz 2024-04-15 15:31:25 +02:00
parent 40abbdcfac
commit 0b090420d9

14
Makefile Normal file
View File

@ -0,0 +1,14 @@
all:
cargo build
static:
docker run -v $(CURDIR):/volume --rm -t clux/muslrust:stable cargo build --release
check-static:
ldd target/x86_64-unknown-linux-musl/release/sip-tarpit
release:
cargo build --release
clean:
sudo rm -rf target