--- Makefile.PL 2007/08/03 22:42:20 116 +++ Makefile.PL 2007/08/06 07:04:56 166 @@ -4,32 +4,41 @@ # the contents of the Makefile that is written. WriteMakefile( - NAME => 'Vrac', - VERSION_FROM => 'Vrac.pm', # finds $VERSION + NAME => 'VRac', + VERSION_FROM => 'VRac.pm', # finds $VERSION PREREQ_PM => { 'Class::Accessor' => 0, 'Data::Dump' => 0, 'Carp' => 0, 'Test::Exception' => 0, - 'SDL' => '2.1.2', + 'SDL' => 2.001002, + 'POSIX' => 0, }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'Vrac.pm', # retrieve abstract from module + (ABSTRACT_FROM => 'VRac.pm', # retrieve abstract from module AUTHOR => 'Dobrica Pavlinusic ') : ()), LIBS => [''], DEFINE => '', INC => '', clean => { - 'FILES' => 'html', + 'FILES' => 'html docs/pod2htm?.tmp', }, ); sub MY::postamble { return <<"MAKE_FRAG"; +orao: all + perl -Mblib -MOrao -le 'Orao->new->run;' + +galaksija: all + perl -Mblib -MGalaksija -le 'Galaksija->new->run;' + html: all test -d html || mkdir html allpod2xhtml.pl \$(INST_LIB) html + allpod2xhtml.pl docs html + cp docs/*.html html/ MAKE_FRAG }