.PHONY: build release test lint fmt check clean install
build:
cargo build
release:
cargo build --release
test:
cargo test
lint:
cargo fmt -- --check
cargo clippy -- -D warnings
fmt:
cargo fmt
check: lint test
clean:
cargo clean
install: release
cp target/release/proxctl ~/.local/bin/proxctl