### Install make2help using go install Source: https://github.com/songmu/make2help/blob/main/README.md Install the make2help command-line tool using the Go package manager. Ensure you have Go installed and configured. ```shell go install github.com/Songmu/make2help/cmd/make2help@latest ``` -------------------------------- ### Output of 'make' command with make2help Source: https://github.com/songmu/make2help/blob/main/README.md When 'make' is run on the example Makefile, it executes the 'help' target, which in turn runs 'make2help'. The output displays the documented rules and their descriptions. ```shell make deps: Install dependencies help: Show help test: Run tests ``` -------------------------------- ### Example Makefile with make2help integration Source: https://github.com/songmu/make2help/blob/main/README.md This Makefile defines several targets, including 'test', 'deps', and 'help'. The 'help' target uses make2help to display documentation for other rules. Rules intended for documentation should have a '## ' comment immediately preceding them. ```makefile .DEFAULT_GOAL := help ## Run tests test: deps go test -/... ## Install dependencies deps: go get -d -v ./... ## Show help help: @make2help $(MAKEFILE_LIST) .PHONY: test deps help ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.