coffer/Makefile

17 lines
406 B
Makefile
Raw Permalink Normal View History

2019-11-30 19:15:00 +00:00
CURDIR=$(shell pwd)
2019-11-30 19:01:44 +00:00
default:
cargo build
release:
cargo build --release
publish:
podman pull clux/muslrust
podman run -v .:/volume:Z --rm -t clux/muslrust cargo build --release
strip target/x86_64-unknown-linux-musl/release/coffer-server
strip target/x86_64-unknown-linux-musl/release/coffer-client
strip target/x86_64-unknown-linux-musl/release/coffer-companion
2019-11-30 19:01:44 +00:00
.PHONY: default release publish