blob: 92df533834650f0c371c968845503f6d267f49ff (
plain)
1
2
3
4
5
6
7
8
9
|
# makefile is stupid but helps with installation
.PHONY: release run watch
release: target/release/keks-meet
run:
cargo +stable run --release
watch:
systemfd --no-pid -s http::8080 -- cargo watch -x '+stable run'
target/release/keks-meet: $(shell find src) Cargo.toml
cargo +stable build --release
|