Skip to content

Instantly share code, notes, and snippets.

@benjaminfuchs
Last active August 9, 2017 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjaminfuchs/d2bdc6317ec5920d0559ad174c15eeaa to your computer and use it in GitHub Desktop.
Save benjaminfuchs/d2bdc6317ec5920d0559ad174c15eeaa to your computer and use it in GitHub Desktop.
make help
# Prints all targets of the Makefile
.PHONY: help
help:
@make --print-data-base --question | \
grep -v -e '^Makefile' | \
awk '/^[^.%][-A-Za-z0-9_]*:/ \
{ print substr($$1, 1, length($$1)-1) }' | \
sort | \
pr --omit-pagination --width=80 --columns=3 \
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment