ayin/Makefile
2025-12-19 22:24:58 +02:00

23 lines
288 B
Makefile

.PHONY: watch
watch:
cargo watch --clear -x 'clippy' -x 'test --all'
.PHONY: build
build:
cargo build
.PHONY: test
test:
cargo test
.PHONY: run
run:
cargo run -- game.ayin
.PHONY: review
review:
cargo insta review
.PHONY: wasm
wasm:
cargo build --target wasm32-unknown-unknown