| ExtUtils-MakeMaker documentation | Contained in the ExtUtils-MakeMaker distribution. |
ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix
Don't use this module directly. Use ExtUtils::MM and let it choose.
This is a subclass of ExtUtils::MM_Unix which contains functionality for VOS.
Unless otherwise stated it works just like ExtUtils::MM_Unix
Cleanup VOS core files
Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix
| ExtUtils-MakeMaker documentation | Contained in the ExtUtils-MakeMaker distribution. |
package ExtUtils::MM_VOS; use strict; our $VERSION = '6.56'; require ExtUtils::MM_Unix; our @ISA = qw(ExtUtils::MM_Unix);
sub extra_clean_files { return qw(*.kp); }
1;