.PHONY: check run test clean help

CARGO ?= cargo

check:
	$(CARGO) run -- --check

run:
	$(CARGO) run

test:
	$(CARGO) test

clean:
	$(CARGO) clean

help:
	@printf '%s\n' \
		'make check  Validate the canonical wordlist' \
		'make run    Generate one AIP-56 phrase' \
		'make test   Run the Rust unit tests' \
		'make clean  Remove Cargo build artifacts' \
		'make help   Show these targets'
