use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'Ivy', 'VERSION_FROM' => 'Ivy.pm', # finds $VERSION 'PREREQ_PM' => { 'Time::HiRes' => 1.17, 'IO::Socket::Multicast' => 0.25, }, 'PM' => {'Ivy.pm' => '$(INST_LIBDIR)/Ivy.pm'}, 'INSTALLDIRS' => 'vendor', 'EXE_FILES' => [ qw(example/ivyprobe.pl example/ivystat.pl example/ivymainloop.pl example/testCongestionTk.pl) ], );