Created
May 7, 2020 14:27
-
-
Save ondras/df465ea5dad70660274d6522e19f1f65 to your computer and use it in GitHub Desktop.
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
#!/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