Skip to content

Instantly share code, notes, and snippets.

@InTEGr8or
Created September 19, 2025 15:38
Show Gist options
  • Select an option

  • Save InTEGr8or/3120aeb5c6def26bf60037dcf4d044b3 to your computer and use it in GitHub Desktop.

Select an option

Save InTEGr8or/3120aeb5c6def26bf60037dcf4d044b3 to your computer and use it in GitHub Desktop.
My developing Makefile help header.
#!/usr/bin/env bash
.PHONY: help
help: ## Display this help screen
@echo "Available commands:"
@awk 'BEGIN {FS = ":.*?## "}; /^[a-zA-Z_-]+:.*?## / {printf " \033[32m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
# ==============================================================================
# Application Tasks
# ==============================================================================
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment