makefile2graph

Create a graph of dependencies from GNU-Make build files

brewmacoslinux
Try with needOr install directly
Source

About

Create a graph of dependencies from GNU-Make

Commands

makefile2graph

Examples

Generate a dependency graph from a Makefile and output as DOT format$ makefile2graph < Makefile | dot -Tpng -o graph.png
Create a visual graph showing all build targets and their dependencies$ makefile2graph < Makefile > dependencies.dot && dot -Tsvg dependencies.dot -o dependencies.svg
Display the dependency graph in text format using Graphviz$ makefile2graph < Makefile | dot -Tplain