File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- .PHONY : build dev check clean release help
2-
3- help :
4- @echo " make build — compile (debug)"
5- @echo " make dev — check + install locally"
6- @echo " make check — fmt + clippy + test"
7- @echo " make release — bump version and tag (BUMP=patch|minor|major)"
8- @echo " make clean — remove build artifacts"
9-
10- build :
11- cargo build
1+ .PHONY : dev check build clean release help
122
133dev : check
14- cargo install --path . --locked
4+ cargo install --path . --locked --force
155
166check :
177 cargo fmt --check
188 cargo clippy -- -D warnings
199 cargo test
2010
11+ build :
12+ cargo build
13+
2114release :
2215 bash scripts/release.sh $(BUMP )
2316
2417clean :
2518 cargo clean
19+
20+ help :
21+ @echo " make — fmt + clippy + test + install (default)"
22+ @echo " make check — fmt + clippy + test"
23+ @echo " make build — compile (debug)"
24+ @echo " make release — bump version and tag (BUMP=patch|minor|major)"
25+ @echo " make clean — remove build artifacts"
You can’t perform that action at this time.
0 commit comments