Files
radius-rs/Makefile
moznion 8f94d2bd39 Tidy up the toolchain
Signed-off-by: moznion <moznion@mail.moznion.net>
2021-02-04 00:24:01 +09:00

20 lines
188 B
Makefile

check: test lint
test:
cargo test
build:
cargo build
lint:
cargo clippy
gen:
bash ./scripts/generate-code.sh
$(MAKE) fix
fix:
cargo fix --allow-dirty --allow-staged
cargo fmt