Skip to content

Instantly share code, notes, and snippets.

@ondras
Created May 7, 2020 14:27
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 ondras/df465ea5dad70660274d6522e19f1f65 to your computer and use it in GitHub Desktop.
Save ondras/df465ea5dad70660274d6522e19f1f65 to your computer and use it in GitHub Desktop.
#!/bin/sh
# usage: ./gmake.sh [makefile_target] | dot -Tpng > Makefile.png
echo "digraph G {"
make -Bnp $* \
| grep ": " \
| grep -v "\(^\.\|[#%]\)" \
| sed -e "s/ *|.*//" \
| awk '{split($$0,a ,"[: ]+"); for(i=2;i<=length(a);i++) print "\""a[i]"\"->\""a[1]"\""}'
echo "}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment