Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any good tools for examining Makefiles? [closed]

Large complex make files can be daunting to read and examine. What tools are good for visualizing or otherwise examining a gnu make file?

like image 373
Johnny Avatar asked Mar 05 '10 03:03

Johnny


2 Answers

I tried to use CPAN's visualizer and failed. So, I've written my own quick-n-dirty Makefile visualizer.

You may want to try it: http://github.com/vak/makefile2dot

like image 184
vak Avatar answered Nov 16 '22 01:11

vak


There is a Perl library for building GraphViz figures from Makefiles:

https://metacpan.org/pod/GraphViz::Makefile

like image 22
Joe Carnahan Avatar answered Nov 16 '22 00:11

Joe Carnahan