This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Message-Id: <200203051337.NAA14686@tempest.npl.co.uk>
[perl5.git] / ext / Devel / PPPort / Makefile.PL
CommitLineData
0a7c7f4f
JH
1use ExtUtils::MakeMaker;
2
3WriteMakefile(
44284200
JH
4 NAME => "Devel::PPPort",
5 DISTNAME => "Devel-PPPort",
6 VERSION_FROM=> 'PPPort.pm',
7
dc531b29
RB
8 PL_FILES => { 'ppport_h.PL' => 'ppport.h' },
9 'depend' => { '$(OBJECT)' => '$(H_FILES)' },
1b9d2259
CB
10 C => [qw(module2.c module3.c)],
11 H => [qw(ppport.h)],
12 OBJECT => '$(BASEEXT)$(OBJ_EXT) $(O_FILES)',
44284200
JH
13 XSPROTOARG => '-noprototypes',
14 'dist' => { COMPRESS=>"gzip", SUFFIX=>"gz" },
1b9d2259 15 'clean' => { FILES => qw($(H_FILES))}
0a7c7f4f 16);