NAME
Panotools::Makefile::Comment - Assemble Makefile Comment lines
SYNOPSIS
Simple interface for generating Makefile syntax
DESCRIPTION
Writing Makefiles directly from perl scripts with print and "\t" etc... is prone to error, this library provides a simple perl interface for assembling Makefiles.
USAGE
my $note = new Panotools::Makefile::Comment;
..or add text at the same time:
my $note = new Panotools::Makefile::Comment ('Warning, may not eat your cat!');
Add lines to the comment:
$note->Lines ('..but it might...', '...sometimes');
Construct a text fragment suitable for use in a Makefile like so:
$text = $note->Assemble;