Makefile.help 443 B

123456789101112131415
  1. ## This help screen
  2. help:
  3. @printf "Available targets:\n\n"
  4. @awk '/^[a-zA-Z\-\_0-9%:\\]+/ { \
  5. helpMessage = match(lastLine, /^## (.*)/); \
  6. if (helpMessage) { \
  7. helpCommand = $$1; \
  8. helpMessage = substr(lastLine, RSTART + 3, RLENGTH); \
  9. gsub("\\\\", "", helpCommand); \
  10. gsub(":+$$", "", helpCommand); \
  11. printf " \x1b[32;01m%-35s\x1b[0m %s\n", helpCommand, helpMessage; \
  12. } \
  13. } \
  14. { lastLine = $$0 }' $(MAKEFILE_LIST)
  15. @printf "\n"