← Index
NYTProf Performance Profile   « line view »
For Makefile.PL
  Run on Sun Mar 1 16:04:44 2015
Reported on Sun Mar 1 16:09:02 2015

FilenameC:/tmp64ng/perl/lib/ExtUtils/MY.pm
StatementsExecuted 7 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1110s0sExtUtils::MY::::BEGIN@3ExtUtils::MY::BEGIN@3
0000s0sExtUtils::MY::::DESTROYExtUtils::MY::DESTROY
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package ExtUtils::MY;
2
320s20s
# spent 0s within ExtUtils::MY::BEGIN@3 which was called: # once (0s+0s) by main::BEGIN@1 at line 3
use strict;
# spent 0s making 1 call to ExtUtils::MY::BEGIN@3 # spent 0s making 1 call to strict::import
410srequire ExtUtils::MM;
5
610sour $VERSION = '7.04';
710sour @ISA = qw(ExtUtils::MM);
8
9{
1010s package MY;
1110s our @ISA = qw(ExtUtils::MY);
12}
13
14sub DESTROY {}
15
16
17=head1 NAME
18
19ExtUtils::MY - ExtUtils::MakeMaker subclass for customization
20
21=head1 SYNOPSIS
22
23 # in your Makefile.PL
24 sub MY::whatever {
25 ...
26 }
27
28=head1 DESCRIPTION
29
30B<FOR INTERNAL USE ONLY>
31
32ExtUtils::MY is a subclass of ExtUtils::MM. Its provided in your
33Makefile.PL for you to add and override MakeMaker functionality.
34
35It also provides a convenient alias via the MY class.
36
37ExtUtils::MY might turn out to be a temporary solution, but MY won't
38go away.
39
40=cut