ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix


ExtUtils-MakeMaker documentation Contained in the ExtUtils-MakeMaker distribution.

Index


Code Index:

NAME

Top

ExtUtils::MM_VOS - VOS specific subclass of ExtUtils::MM_Unix

SYNOPSIS

Top

  Don't use this module directly.
  Use ExtUtils::MM and let it choose.

DESCRIPTION

Top

This is a subclass of ExtUtils::MM_Unix which contains functionality for VOS.

Unless otherwise stated it works just like ExtUtils::MM_Unix

Overridden methods

extra_clean_files

Cleanup VOS core files

AUTHOR

Top

Michael G Schwern <schwern@pobox.com> with code from ExtUtils::MM_Unix

SEE ALSO

Top

ExtUtils::MakeMaker


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;