summaryrefslogtreecommitdiffstats
path: root/system/makefile2graph/README
diff options
context:
space:
mode:
author B. Watson2017-04-01 16:53:59 +0200
committer Willy Sudiarto Raharjo2017-04-08 01:57:41 +0200
commite2fa83f9692d6d52515caca003323813c7360281 (patch)
treedb9dbf4d7a60cf4fb97e35cce0afab6b79c14c17 /system/makefile2graph/README
parent5e435e66cddaba157720082b4121bbf5dbacef17 (diff)
downloadslackbuilds-e2fa83f9692d6d52515caca003323813c7360281.tar.gz
system/makefile2graph: Added (dependency graphs from Makefile).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'system/makefile2graph/README')
-rw-r--r--system/makefile2graph/README16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/makefile2graph/README b/system/makefile2graph/README
new file mode 100644
index 0000000000..6df1fa180b
--- /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