ayin/Makefile
2025-12-15 00:40:01 +02:00

23 lines
275 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
.PHONY: review
review:
cargo insta review
.PHONY: wasm
wasm:
cargo build --target wasm32-unknown-unknown