Created
July 7, 2016 13:48
-
-
Save rjkip/5b5c473ae755272ea79da0a3979a7ed6 to your computer and use it in GitHub Desktop.
Makefile target list
This file contains 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
.RECIPEPREFIX += | |
help: | |
@echo | |
@echo "\033[0;33mAvailable targets:\033[0m" | |
@cat Makefile | sed 's/: /: → /' | GREP_COLORS="ms=00;32" grep --colour=always -P '^[a-z0-9].+:' | column -s ':' -t | sed 's/^/ /' | |
test: test-fast test-slow | |
test-fast: | |
@echo OK | |
test-slow: | |
@echo OK |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Creates this: