This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
277850a58f7de100f17db2d9cf57a000f85afe9a
[perl5.git] / cpan / ExtUtils-MakeMaker / lib / ExtUtils / MM_VOS.pm
1 package ExtUtils::MM_VOS;
2
3 use strict;
4 use warnings;
5 our $VERSION = '7.52';
6 $VERSION =~ tr/_//d;
7
8 require ExtUtils::MM_Unix;
9 our @ISA = qw(ExtUtils::MM_Unix);
10
11
12 =head1 NAME
13
14 ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
15
16 =head1 SYNOPSIS
17
18   Don't use this module directly.
19   Use ExtUtils::MM and let it choose.
20
21 =head1 DESCRIPTION
22
23 This is a subclass of L<ExtUtils::MM_Unix> which contains functionality for
24 VOS.
25
26 Unless otherwise stated it works just like ExtUtils::MM_Unix.
27
28 =head2 Overridden methods
29
30 =head3 extra_clean_files
31
32 Cleanup VOS core files
33
34 =cut
35
36 sub extra_clean_files {
37     return qw(*.kp);
38 }
39
40
41 =head1 AUTHOR
42
43 Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
44
45 =head1 SEE ALSO
46
47 L<ExtUtils::MakeMaker>
48
49 =cut
50
51
52 1;