makefile-awk-help-extractor-excludes-digit-targets
A common Makefile awk pattern for extracting help text from comments uses a regex that inadvertently excludes target names containing digits (test-a11y, k8s-apply, test-cov, prod-build). The generated make help output silently omits these targets. Fix: ensure the awk target-name character class includes [0-9] alongside [a-zA-Z_-].