-
-
Save tyndyll/dec008a5ec007fe0fc4191d5c7bbdabe to your computer and use it in GitHub Desktop.
Revisions
-
prwhite revised this gist
Dec 29, 2013 . 1 changed file with 10 additions and 11 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,18 @@ # Add the following 'help' target to your Makefile # And add help text after each target name starting with '\#\#' help: ## Show this help. @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' # Everything below is an example target00: ## This message will show up when typing 'make help' @echo does nothing target01: ## This message will also show up when typing 'make help' @echo does something # Remember that targets can have multiple entries (if your target specifications are very long, etc.) target02: ## This message will show up too!!! target02: target00 target01 @echo does even more -
prwhite created this gist
Dec 29, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ # Add the following 'help' target to your Makefile # And add help text after each target name starting with '##' help: ## Show this help. @fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' # Everything below is an example target00: ## This message will show up when typing 'make help' @echo does nothing target01: ## This message will also show up when typing 'make help' @echo does something # Remember that targets can have multiple entries (if your target specifications are very long, etc.) target02: ## This message will show up too!!! target02: target00 target01 @echo does even more