The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# -*- Mode: Perl -*-
 
use ExtUtils::MakeMaker;
use Config;
 
&WriteMakefile(
               'NAME'     => 'Math::Polynomial',
               'LINKTYPE' => '$(INST_PM)',
	       'VERSION_FROM' => './lib/Math/Polynomial.pm',
               'dist'     => { SUFFIX => 'gz', COMPRESS => 'gzip -f' },
               'clean'    => {'FILES' => '*~'},
);