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