This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add new test file to MANIFEST. Fix tests for threaded builds.
[perl5.git] / ext / XS / Typemap / Makefile.PL
CommitLineData
ea035a69
JH
1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4 'NAME' => 'XS::Typemap',
df39e595 5 MAN3PODS => {}, # Pods will be built by installman.
ea035a69
JH
6 'VERSION_FROM' => 'Typemap.pm',
7 'dist' => { COMPRESS => "gzip -9f"},
8 OBJECT => 'stdio.o Typemap.o',
9 ABSTRACT_FROM => 'Typemap.pm',
10 AUTHOR => 'Tim Jenness <t.jenness@jach.hawaii.edu>',
11);
12
13
14# Nothing to install (except maybe the XS::Typemap.xs documentation)
15
16sub MY::install { "install ::\n" };