1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.PHONY: all static clean test all: cargo build --release static: cargo build --release --target x86_64-unknown-linux-musl clean: cargo clean test: cargo test deps/ubuntu: sudo apt install -y musl-tools deps/fedora: sudo dnf install -y musl-gcc