mirror of
https://github.com/Strum355/mcshader-lsp.git
synced 2025-07-24 19:54:35 +00:00
13 lines
No EOL
202 B
Makefile
13 lines
No EOL
202 B
Makefile
.PHONY: watchtest build
|
|
|
|
watchtest:
|
|
RUST_BACKTRACE=0 cargo watch -x test -i Makefile
|
|
|
|
test:
|
|
RUST_LIB_BACKTRACE=0 RUST_BACKTRACE=0 cargo test
|
|
|
|
build:
|
|
cargo build
|
|
|
|
build-release:
|
|
cargo build --release
|