1Panotools::Makefile::CoUmsmeerntC(o3n)tributed Perl DocuPmaennottaotoilosn::Makefile::Comment(3)
2
3
4
6 Panotools::Makefile::Comment - Assemble Makefile Comment lines
7
9 Simple interface for generating Makefile syntax
10
12 Writing Makefiles directly from perl scripts with print and "\t" etc...
13 is prone to error, this library provides a simple perl interface for
14 assembling Makefiles.
15
17 my $note = new Panotools::Makefile::Comment;
18
19 ..or add text at the same time:
20
21 my $note = new Panotools::Makefile::Comment ('Warning, may not eat your cat!');
22
23 Add lines to the comment:
24
25 $note->Lines ('..but it might...', '...sometimes');
26
27 Construct a text fragment suitable for use in a Makefile like so:
28
29 $text = $note->Assemble;
30
31
32
33perl v5.34.0 2021-07-22 Panotools::Makefile::Comment(3)