.PHONY: mutation-check

mutation-check:
	@if [ -z "$(FILE)" ]; then \
		echo "Usage: make mutation-check FILE=<source-file>"; exit 3; \
	fi
	@uv run python scripts/mutation_check.py "$(FILE)"
