.PHONY: check run test clean help

NODE ?= node

check:
	$(NODE) aip56.js --check

run:
	$(NODE) aip56.js

test:
	$(NODE) --test aip56.test.js

clean:
	@echo "No Node.js build artifacts to remove."

help:
	@printf '%s\n' \
		'make check  Validate the canonical wordlist' \
		'make run    Generate one AIP-56 phrase' \
		'make test   Run the built-in Node.js tests' \
		'make clean  Remove local build artifacts' \
		'make help   Show these targets'
