NAME
gvmake - A make tool that generates pretty graphs from Makefile
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
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
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.
AUTHOR
Agent Zhang, <agent2002@126.com>
COPYRIGHT AND LICENSE
Copyright (C) 2005 Agent Zhang.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.