I have a large C codebase for which I had to generate Call graphs. I was kind of successful using Doxygen, but the problem now is, Doxygen generates a different DOT file for every function etc,..
I found another tool within GraphViz called gvpack
which merges many Dot files into one, but how to make this call dynamically?? I mean the names of those dot files are random, so when I use
gvpack -o output.DOT *.dot
it says cannot open *.dot, but
gvpack -o output.DOT file1.dot file2.dot file3.dot
works fine, so my question is: is there any way to input all files (DOT) to gvpack
by using wildcards??