Skip to content

Instantly share code, notes, and snippets.

@alex-bender
Created March 14, 2016 19:13
Show Gist options
  • Save alex-bender/2e2cee3d060d01d185a8 to your computer and use it in GitHub Desktop.
Save alex-bender/2e2cee3d060d01d185a8 to your computer and use it in GitHub Desktop.
Self-documented Makefile; Require silver searcher aka ag
CFLAGS=-Wall -g
clean: ## Clean directory
rm -f *.o
help: ## Help target
@ag '^[a-zA-Z_-]+:.*?## .*$$' --nofilename $(MAKEFILE_LIST) \
| sort \
| awk 'BEGIN{FS=": ## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
.DEFAULT_GOAL := help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment