/[jsFind]/trunk/Makefile.PL
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /trunk/Makefile.PL

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations)
Sun Jul 11 20:18:25 2004 UTC (19 years, 9 months ago) by dpavlin
File MIME type: text/plain
File size: 812 byte(s)
initial import into subversion of version 0.1

1 use 5.008004;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6 NAME => 'jsFind',
7 VERSION_FROM => 'jsFind.pm', # finds $VERSION
8 PREREQ_PM => {}, # e.g., Module::Name => 1.1
9 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
10 (ABSTRACT_FROM => 'jsFind.pm', # retrieve abstract from module
11 AUTHOR => 'Dobrica Pavlinusic <dpavlin@rot13.org>') : ()),
12 );
13
14 # new target to create png files from GraphViz's dot files created by test
15
16 sub MY::postamble {
17 return <<'MAKE_PNG';
18 #png: tree.png words.png
19 png: tree.png
20
21 tree.png: tree.dot
22 dot -Tpng -o tree.png tree.dot
23
24 #words.png: words.dot
25 # dot -Tpng -o words.png words.dot
26
27 MAKE_PNG
28 }

  ViewVC Help
Powered by ViewVC 1.1.26