--- Makefile.PL 2007/08/04 09:25:27 120 +++ Makefile.PL 2009/09/03 10:25:58 217 @@ -4,33 +4,44 @@ # 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' => 1.20, + '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;' + +galeb: all + perl -Mblib -MGaleb -le 'Galeb->new->run;' + html: all test -d html || mkdir html allpod2xhtml.pl \$(INST_LIB) html allpod2xhtml.pl docs html + cp docs/*.html html/ MAKE_FRAG }