The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
## This -*- perl -*- script writes the Makefile for SelfLoader
# You should read "perldoc perlmodinstall" for instructions on
#  how to install modules like this.

require 5.008;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
  'NAME' => 'SelfLoader',
  'VERSION_FROM' => 'lib/SelfLoader.pm', # finds $VERSION
  'LICENSE' => 'perl',
  'PREREQ_PM' => {},
  'ABSTRACT_FROM' => 'lib/SelfLoader.pm',
  'AUTHOR' => 'Steffen Mueller <smueller@cpan.org>',
  'INSTALLDIRS' => 'perl',
);

__END__