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