File Coverage

lib/ExtUtils/MM_VOS.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 1 1 100.0
total 9 11 81.8


line stmt bran cond sub pod time code
1             package ExtUtils::MM_VOS;
2              
3 1     1   86075 use strict;
  1         2  
  1         52  
4 1     1   7 use warnings;
  1         2  
  1         151  
5             our $VERSION = '7.70';
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 0     0 1   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;