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 characters
.PHONY: help # Set default action to be help! | |
help: | |
@echo "List of available make commands"; | |
@echo ""; | |
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-15s\033[0m %s\n", $$1, $$2}'; | |
@echo ""; | |
# Add double ## comments on the same line as the dependencies and will be printed out when running help | |
# Don't add them if you don't want to appear on help! |
NewerOlder