Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / amd64 / lib / perl5 / 5.8.8 / ExtUtils / MM_VOS.pm
CommitLineData
920dae64
AT
1package ExtUtils::MM_VOS;
2
3use strict;
4use vars qw($VERSION @ISA);
5$VERSION = '0.02';
6
7require ExtUtils::MM_Unix;
8@ISA = qw(ExtUtils::MM_Unix);
9
10
11=head1 NAME
12
13ExtUtils::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
22This is a subclass of ExtUtils::MM_Unix which contains functionality for
23VOS.
24
25Unless otherwise stated it works just like ExtUtils::MM_Unix
26
27=head2 Overridden methods
28
29=head3 extra_clean_files
30
31Cleanup VOS core files
32
33=cut
34
35sub extra_clean_files {
36 return qw(*.kp);
37}
38
39
40=head1 AUTHOR
41
42Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
43
44=head1 SEE ALSO
45
46L<ExtUtils::MakeMaker>
47
48=cut
49
50
511;