Guest User

Untitled

a guest
Feb 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .DEFAULT_GOAL := help
  2.  
  3. THIS_FILE := $(lastword $(MAKEFILE_LIST))
  4.  
  5. target: ## target
  6. @echo $@ # print target name
  7. @$(MAKE) -f $(THIS_FILE) other-target # invoke other target
  8.  
  9. other-target: ## other target
  10. @echo $@ # print target name
  11.  
  12. help: ## this STDOUT
  13. @grep -E '^[/a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
  14.  
  15. .PHONY: help target other-target
Add Comment
Please, Sign In to add comment