mailpot/Makefile

24 lines
576 B
Makefile
Raw Normal View History

2023-04-19 17:39:39 +03:00
.POSIX:
.SUFFIXES:
HTML_FILES := $(shell find web/src/templates -type f -print0 | tr '\0' ' ')
2023-04-19 17:39:39 +03:00
2022-08-24 12:22:44 +03:00
.PHONY: check
check:
2023-04-19 17:39:39 +03:00
@cargo check --all-features --all --tests --examples --benches --bins
2022-08-24 12:22:44 +03:00
.PHONY: fmt
fmt:
2023-04-19 17:39:39 +03:00
@cargo +nightly fmt --all || cargo fmt --all
@cargo sort -w || printf "cargo-sort binary not found in PATH.\n"
@djhtml -i $(HTML_FILES) || printf "djhtml binary not found in PATH.\n"
2022-08-24 12:22:44 +03:00
.PHONY: lint
lint:
2023-04-19 17:39:39 +03:00
@cargo clippy --no-deps --all-features --all --tests --examples --benches --bins
.PHONY: test
test: check lint
2023-04-19 17:39:39 +03:00
@cargo test --all --no-fail-fast --all-features