Files
blockfast/Makefile
2021-10-10 12:15:39 +02:00

23 lines
345 B
Makefile

build:
cargo build
cargo clippy
cargo fmt
run:
cargo run -- -s=/tmp/sshdtest -c=/tmp/clftest
watch:
ls src/*.rs | entr -rc -- make run
test:
cargo test
watch-test:
ls src/*.rs | entr -rc -- make test
release:
cargo build --target x86_64-unknown-linux-musl --release
ci: test
cargo fmt --all -- --check
cargo clippy -- -D warnings