use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'Cache::Memcached::Fast', VERSION_FROM => 'lib/Cache/Memcached/Fast.pm', PREREQ_PM => { 'Test::More' => 0 }, ABSTRACT_FROM => 'lib/Cache/Memcached/Fast.pm', AUTHOR => 'Tomash Brechko ', MYEXTLIB => 'src/libclient$(LIB_EXT)', ); sub MY::postamble { ' $(MYEXTLIB): src/Makefile cd src && $(MAKE) $(PASTHRU) ' }