SHELL := bash
.SHELLFLAGS := -eu -o pipefail -c
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
MAKEFLAGS += --no-print-directory
.PHONY: test
test:
cargo test
.PHONY: lint
lint:
cargo check
cargo clippy -- -D warnings
cargo fmt --all -- --check