.PHONY: check run test clean help

PERL ?= perl

check:
	$(PERL) -c aip56.pl
	$(PERL) aip56.pl --check

run:
	$(PERL) aip56.pl

test: check

clean:
	rm -f .aip56-test.tmp

help:
	@printf '%s\n' \
		'make check  Compile-check Perl and validate the canonical wordlist' \
		'make run    Generate one AIP-56 phrase' \
		'make test   Run the validation smoke test' \
		'make clean  Remove temporary local artifacts' \
		'make help   Show these targets'
