make was putting double quotes around some of my target labels, which were not being escaped when output to dot format, such as "/home/some_path/src/lnx//../.."/bin/lxbin should be output as
digraph G {
n72[label="\"/home/some_path/src/lnx//../..\"/bin/lxbin", color="red"];
...
Without this fix, the output from make2graph is:
digraph G {
n72[label=""/home/some_path/src/lnx//../.."/bin/lxbin", color="red"];
...
which causes dot to complain and not create any output:
make was putting double quotes around some of my target labels, which were not being escaped when output to dot format, such as
"/home/some_path/src/lnx//../.."/bin/lxbin
should be output asWithout this fix, the output from make2graph is:
which causes dot to complain and not create any output: