rs-optimg/Makefile
2025-10-24 09:11:57 +02:00

27 lines
470 B
Makefile

ROOT_DIR := $(dir $(realpath $(lastword $(MAKEFILE_LIST))))
VERSION := $(shell cargo info rs-optimg | grep "^version" | cut -d ' ' -f2 | xargs)
LOG_LEVEL := debug
show:
@echo "rsympa version: $(VERSION)"
lint:
cargo clippy --fix --allow-dirty
format:
cargo fmt --all
check: lint format
doc:
cargo doc -r --no-deps --open
run: check
RUST_LOG=$(LOG_LEVEL) cargo run - --debug
build: check
cargo build --release
test:
cargo test --no-fail-fast --lib --tests