diff options
Diffstat (limited to 'system/makefile2graph/README')
-rw-r--r-- | system/makefile2graph/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/system/makefile2graph/README b/system/makefile2graph/README new file mode 100644 index 0000000000000..6df1fa180b7c3 --- /dev/null +++ b/system/makefile2graph/README @@ -0,0 +1,16 @@ +makefile2graph (creates a dependency graph from a Makefile) + +Creates a graph of dependencies from GNU make Makefile. + +Output is a graphviz dot file, a Gexf-XML file, or a list of the deepest +independent targets that should be made. Sub-Makefiles are not supported. + +Optional dependencies: To actually generate visual graphs, you will need +or or both of: + +graphics/graphviz +graphics/graph-easy + +Example: If there's a Makefile in the current directory, try this: + + make -Bnd | make2graph | dot -Tpng > graph.png |