NAME
gvmake - A make tool that generates pretty graphs from Makefiles
SYNOPSIS
# print usage info to stdout:
gvmake -h
# if the default target is 'all', the following
# command will generate all.png
gvmake
# this command will generate 'test.png' where
# 'test' is a target defined in the Makefile:
gvmake test
# override the default output file name:
gvmake -o make.png test
# specify the Makefile name explicitly:
gvmake -f t/Makefile.old install
# generate Makefile.png which contains all the goals
gvmake -a
# specify the size of the output image:
gvmake -s 5x8 # width is 5 inch, and height is 8 inch
DESCRIPTION
This is a make tool that generates pretty graphs for the building process according to user's Makefile instead of actually building something. It is a simple command-line frontend for the Makefile::GraphViz module.
Currently only PNG format and the default settings for the graph style are used. This inflexible design will be changed soon.
TODO
Add more command-line options to control the graph appearance
To support more output file format
Add support for multiple goals passed in via command-line.
BUGS
Please report bugs or send wish-list to http://rt.cpan.org/NoAuth/Bugs.html?Dist=Makefile-GraphViz.
SEE ALSO
Makefile::GraphViz, Makefile::Parser, plmake.
AUTHOR
Agent Zhang, <agentzh@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2005, 2006, 2007 by Agent Zhang. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.