| View previous topic :: View next topic |
| Author |
Message |
Robby Tanner Guest
|
Posted: Fri Sep 09, 2005 12:46 am Post subject: Source Analysis |
|
|
I'm not exactly sure what to call what I'm looking for exactly. I want a
utility that will parse directories and make a tree listing somehow of
include files in Windows.
For example main.c includes stdio.h and anotherfile.h.
anotherfile.h includes yetanother.h, etc.
Is something of that nature already available? Is that what cxref does?
What keyword would I search on?
Rob
|
|
| Back to top |
|
 |
Thomas Guest
|
Posted: Fri Sep 09, 2005 4:54 pm Post subject: Re: Source Analysis |
|
|
Robby Tanner schrieb:
| Quote: | I'm not exactly sure what to call what I'm looking for exactly. I want a
utility that will parse directories and make a tree listing somehow of
include files in Windows.
|
Try doxygen . Its a free documentation tool.
It provides also include file trees.
Here is an example:
http://www.stack.nl/~dimitri/doxygen/examples/diagrams/html/diagrams__c_8h.html
On top you get other trees, indexing source code browsing etc.
A Windows version is available and works quite well.
Here is the main page:
www.doxygen.org
Thomas
|
|
| Back to top |
|
 |
Robby Tanner Guest
|
Posted: Fri Sep 09, 2005 5:09 pm Post subject: Re: Source Analysis |
|
|
Aaah, so THAT'S what DOXYGEN does. I've seen references but never knew
precisely what it was for. I'll give it a go.
Thanks for the tip.
Regards,
Rob
"Thomas" <thomas.vieten (AT) skynet (DOT) be> wrote
| Quote: | Robby Tanner schrieb:
I'm not exactly sure what to call what I'm looking for exactly. I want a
utility that will parse directories and make a tree listing somehow of
include files in Windows.
Try doxygen . Its a free documentation tool.
It provides also include file trees.
Here is an example:
http://www.stack.nl/~dimitri/doxygen/examples/diagrams/html/diagrams__c_8h.html
On top you get other trees, indexing source code browsing etc.
A Windows version is available and works quite well.
Here is the main page:
www.doxygen.org
Thomas
|
|
|
| Back to top |
|
 |
Hendrik Schober Guest
|
Posted: Mon Sep 12, 2005 1:18 pm Post subject: Re: Source Analysis |
|
|
Robby Tanner <robby_tanner (AT) hotmail (DOT) com> wrote:
| Quote: | Aaah, so THAT'S what DOXYGEN does. I've seen references but never knew
precisely what it was for. I'll give it a go.
Thanks for the tip.
|
Actually it does a lot more than showing
include dependencies.
| Quote: | Regards,
Rob
[...]
|
Schobi
--
[email]SpamTrap (AT) gmx (DOT) de[/email] is never read
I'm Schobi at suespammers dot org
"Coming back to where you started is not the same as never leaving"
Terry Pratchett
|
|
| Back to top |
|
 |
Robby Tanner Guest
|
Posted: Mon Sep 12, 2005 6:55 pm Post subject: Re: Source Analysis |
|
|
"Hendrik Schober" <SpamTrap (AT) gmx (DOT) de> wrote
| Quote: | Robby Tanner <robby_tanner (AT) hotmail (DOT) com> wrote:
Aaah, so THAT'S what DOXYGEN does. I've seen references but never knew
precisely what it was for. I'll give it a go.
Thanks for the tip.
Actually it does a lot more than showing
include dependencies.
Regards,
Rob
[...]
Schobi
|
Yes it does. I meant that DOXYGEN does source analysis...
Pretty good app actually from the bit I've seen already.
Rob
|
|
| Back to top |
|
 |
|