This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Re: Réf. : Re: PATCH proposal for ext/Safe/safe2.t
[perl5.git] / ext / Devel / PPPort / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4     NAME        => "Devel::PPPort",
5     DISTNAME    => "Devel-PPPort",
6     VERSION_FROM=> 'PPPort.pm',
7
8     PL_FILES    => { 'ppport_h.PL' => 'ppport.h' },
9     'depend'    => { '$(OBJECT)' => '$(H_FILES)' },
10     C           => [qw(module2.c module3.c)],
11     H           => [qw(ppport.h)],
12     OBJECT      => '$(BASEEXT)$(OBJ_EXT) $(O_FILES)',
13     XSPROTOARG  => '-noprototypes',
14     'dist'      => { COMPRESS=>"gzip", SUFFIX=>"gz" },
15     'clean'     => { FILES => qw($(H_FILES))}
16 );