Upgrade to real CPAN.pm 1.76.
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / MakeMaker.pm
CommitLineData
e05e23b1 1package ExtUtils::MakeMaker;
2
57b1a898 3BEGIN {require 5.005_03;}
4
1b0fc073 5$VERSION = '6.12';
6($Revision) = q$Revision: 1.124 $ =~ /Revision:\s+(\S+)/;
005c1a0e 7
8e07c86e 8require Exporter;
3b03c0f3 9use Config;
10use Carp ();
dedf98bc 11use File::Path;
e05e23b1 12
13use vars qw(
f6d6199c 14 @ISA @EXPORT @EXPORT_OK
dedf98bc 15 $Revision $VERSION $Verbose %Config
16 @Prepend_parent @Parent
5e9e174b 17 %Recognized_Att_Keys @Get_from_Config @MM_Sections @Overridable
dedf98bc 18 $Filename
f6d6199c 19 );
5e9e174b 20use strict;
005c1a0e 21
e05e23b1 22@ISA = qw(Exporter);
23@EXPORT = qw(&WriteMakefile &writeMakefile $Verbose &prompt);
f6d6199c 24@EXPORT_OK = qw($VERSION &neatvalue &mkbootstrap &mksymlists);
42793c05 25
f6d6199c 26# These will go away once the last of the Win32 & VMS specific code is
27# purged.
5e9e174b 28my $Is_VMS = $^O eq 'VMS';
5e9e174b 29my $Is_Win32 = $^O eq 'MSWin32';
3b03c0f3 30
dedf98bc 31# Our filename for diagnostic and debugging purposes. More reliable
32# than %INC (think caseless filesystems)
33$Filename = __FILE__;
34
9ab29e2b 35full_setup();
864a5fa8 36
f6d6199c 37require ExtUtils::MM; # Things like CPAN assume loading ExtUtils::MakeMaker
38 # will give them MM.
e05e23b1 39
45bc4d3a 40require ExtUtils::MY; # XXX pre-5.8 versions of ExtUtils::Embed expect
41 # loading ExtUtils::MakeMaker will give them MY.
42 # This will go when Embed is it's own CPAN module.
43
f1387719 44
3b03c0f3 45sub WriteMakefile {
46 Carp::croak "WriteMakefile: Need even number of args" if @_ % 2;
f1387719 47
f6d6199c 48 require ExtUtils::MY;
3b03c0f3 49 my %att = @_;
69ff8adf 50
51 _verify_att(\%att);
52
e0678a30 53 my $mm = MM->new(\%att);
54 $mm->flush;
55
56 return $mm;
3b03c0f3 57}
58
69ff8adf 59
d5d4ec93 60# Basic signatures of the attributes WriteMakefile takes. Each is the
61# reference type. Empty value indicate it takes a non-reference
62# scalar.
479d2113 63my %Att_Sigs;
64my %Special_Sigs = (
d5d4ec93 65 C => 'array',
d5d4ec93 66 CONFIG => 'array',
67 CONFIGURE => 'code',
d5d4ec93 68 DIR => 'array',
d5d4ec93 69 DL_FUNCS => 'hash',
70 DL_VARS => 'array',
71 EXCLUDE_EXT => 'array',
72 EXE_FILES => 'array',
d5d4ec93 73 FUNCLIST => 'array',
74 H => 'array',
75 IMPORTS => 'hash',
d5d4ec93 76 INCLUDE_EXT => 'array',
d5d4ec93 77 LIBS => ['array',''],
d5d4ec93 78 MAN1PODS => 'hash',
79 MAN3PODS => 'hash',
d5d4ec93 80 PL_FILES => 'hash',
81 PM => 'hash',
82 PMLIBDIRS => 'array',
d5d4ec93 83 PREREQ_PM => 'hash',
d5d4ec93 84 SKIP => 'array',
85 TYPEMAPS => 'array',
d5d4ec93 86 XS => 'hash',
479d2113 87 _KEEP_AFTER_FLUSH => '',
69ff8adf 88
89 clean => 'hash',
90 depend => 'hash',
91 dist => 'hash',
92 dynamic_lib=> 'hash',
93 linkext => 'hash',
94 macro => 'hash',
531e2ba1 95 postamble => 'hash',
69ff8adf 96 realclean => 'hash',
97 test => 'hash',
98 tool_autosplit => 'hash',
99);
100
479d2113 101@Att_Sigs{keys %Recognized_Att_Keys} = ('') x keys %Recognized_Att_Keys;
102@Att_Sigs{keys %Special_Sigs} = values %Special_Sigs;
103
69ff8adf 104
105sub _verify_att {
106 my($att) = @_;
107
108 while( my($key, $val) = each %$att ) {
109 my $sig = $Att_Sigs{$key};
d5d4ec93 110 unless( defined $sig ) {
111 warn "WARNING: $key is not a known parameter.\n";
112 next;
113 }
114
115 my @sigs = ref $sig ? @$sig : $sig;
116 my $given = lc ref $val;
69ff8adf 117 unless( grep $given eq $_, @sigs ) {
d5d4ec93 118 my $takes = join " or ", map { $_ ne '' ? "$_ reference"
119 : "string/number"
69ff8adf 120 } @sigs;
d5d4ec93 121 my $has = $given ne '' ? "$given reference"
122 : "string/number";
69ff8adf 123 warn "WARNING: $key takes a $takes not a $has.\n".
124 " Please inform the author.\n";
69ff8adf 125 }
126 }
127}
128
f1387719 129sub prompt ($;$) {
479d2113 130 my($mess, $def) = @_;
e0678a30 131 Carp::confess("prompt function called without an argument")
132 unless defined $mess;
479d2113 133
134 my $isa_tty = -t STDIN && (-t STDOUT || !(-f STDOUT || -c STDOUT)) ;
135
f1387719 136 my $dispdef = defined $def ? "[$def] " : " ";
137 $def = defined $def ? $def : "";
479d2113 138
13bc20ff 139 local $|=1;
f6d6199c 140 local $\;
13bc20ff 141 print "$mess $dispdef";
479d2113 142
143 my $ans;
144 if ($ENV{PERL_MM_USE_DEFAULT} || (!$isa_tty && eof STDIN)) {
145 print "$def\n";
146 }
147 else {
f6d6199c 148 $ans = <STDIN>;
149 if( defined $ans ) {
150 chomp $ans;
151 }
152 else { # user hit ctrl-D
153 print "\n";
154 }
155 }
479d2113 156
f6d6199c 157 return (!defined $ans || $ans eq '') ? $def : $ans;
3b03c0f3 158}
159
e05e23b1 160sub eval_in_subdirs {
161 my($self) = @_;
a8112c7f 162 use Cwd qw(cwd abs_path);
f582e489 163 my $pwd = cwd() || die "Can't figure out your cwd!";
164
3593a55e 165 local @INC = map eval {abs_path($_) if -e} || $_, @INC;
f6d6199c 166 push @INC, '.'; # '.' has to always be at the end of @INC
e05e23b1 167
5e9e174b 168 foreach my $dir (@{$self->{DIR}}){
f6d6199c 169 my($abs) = $self->catdir($pwd,$dir);
170 $self->eval_in_x($abs);
e05e23b1 171 }
e05e23b1 172 chdir $pwd;
864a5fa8 173}
42793c05 174
e05e23b1 175sub eval_in_x {
176 my($self,$dir) = @_;
6626a13a 177 chdir $dir or Carp::carp("Couldn't change to directory $dir: $!");
5e9e174b 178
f6d6199c 179 {
180 package main;
181 do './Makefile.PL';
182 };
f1387719 183 if ($@) {
f6d6199c 184# if ($@ =~ /prerequisites/) {
185# die "MakeMaker WARNING: $@";
186# } else {
187# warn "WARNING from evaluation of $dir/Makefile.PL: $@";
188# }
45bc4d3a 189 die "ERROR from evaluation of $dir/Makefile.PL: $@";
f1387719 190 }
e05e23b1 191}
192
479d2113 193
194# package name for the classes into which the first object will be blessed
195my $PACKNAME = 'PACK000';
196
e05e23b1 197sub full_setup {
198 $Verbose ||= 0;
3b03c0f3 199
5e9e174b 200 my @attrib_help = qw/
3b03c0f3 201
762efda7 202 AUTHOR ABSTRACT ABSTRACT_FROM BINARY_LOCATION
203 C CAPI CCFLAGS CONFIG CONFIGURE DEFINE DIR DISTNAME DL_FUNCS DL_VARS
479d2113 204 EXCLUDE_EXT EXE_FILES FIRST_MAKEFILE
75e2e551 205 FULLPERL FULLPERLRUN FULLPERLRUNINST
206 FUNCLIST H IMPORTS
431b0fc4 207
45bc4d3a 208 INST_ARCHLIB INST_SCRIPT INST_BIN INST_LIB INST_MAN1DIR INST_MAN3DIR
5c161494 209 INSTALLDIRS
479d2113 210 DESTDIR PREFIX
211 PERLPREFIX SITEPREFIX VENDORPREFIX
5c161494 212 INSTALLPRIVLIB INSTALLSITELIB INSTALLVENDORLIB
213 INSTALLARCHLIB INSTALLSITEARCH INSTALLVENDORARCH
45bc4d3a 214 INSTALLBIN INSTALLSITEBIN INSTALLVENDORBIN
215 INSTALLMAN1DIR INSTALLMAN3DIR
216 INSTALLSITEMAN1DIR INSTALLSITEMAN3DIR
217 INSTALLVENDORMAN1DIR INSTALLVENDORMAN3DIR
218 INSTALLSCRIPT
5c161494 219 PERL_LIB PERL_ARCHLIB
220 SITELIBEXP SITEARCHEXP
431b0fc4 221
5c161494 222 INC INCLUDE_EXT LDFROM LIB LIBPERL_A LIBS
2530b651 223 LINKTYPE MAKEAPERL MAKEFILE MAKEFILE_OLD MAN1PODS MAN3PODS MAP_TARGET
224 MYEXTLIB NAME NEEDS_LINKING NOECHO NO_META NORECURS NO_VC OBJECT OPTIMIZE
431b0fc4 225 PERL_MALLOC_OK PERL PERLMAINCC PERLRUN PERLRUNINST PERL_CORE
5c161494 226 PERL_SRC PERM_RW PERM_RWX
131aa089 227 PL_FILES PM PM_FILTER PMLIBDIRS POLLUTE PPM_INSTALL_EXEC
5c161494 228 PPM_INSTALL_SCRIPT PREREQ_FATAL PREREQ_PM PREREQ_PRINT PRINT_PREREQ
e0678a30 229 SKIP TYPEMAPS VERSION VERSION_FROM XS XSOPT XSPROTOARG
f1387719 230 XS_VERSION clean depend dist dynamic_lib linkext macro realclean
762efda7 231 tool_autosplit
431b0fc4 232
084592ab 233 MACPERL_SRC MACPERL_LIB MACLIBS_68K MACLIBS_PPC MACLIBS_SC MACLIBS_MRC
234 MACLIBS_ALL_68K MACLIBS_ALL_PPC MACLIBS_SHARED
f6d6199c 235 /;
3b03c0f3 236
875fa795 237 # IMPORTS is used under OS/2 and Win32
f1387719 238
239 # @Overridable is close to @MM_Sections but not identical. The
240 # order is important. Many subroutines declare macros. These
241 # depend on each other. Let's try to collect the macros up front,
242 # then pasthru, then the rules.
243
244 # MM_Sections are the sections we have to call explicitly
245 # in Overridable we have subroutines that are used indirectly
3b03c0f3 246
e05e23b1 247
248 @MM_Sections =
f6d6199c 249 qw(
3b03c0f3 250
479d2113 251 post_initialize const_config constants platform_constants
252 tool_autosplit tool_xsubpp tools_other
253
254 makemakerdflt
255
256 dist macro depend cflags const_loadlibs const_cccmd
f1387719 257 post_constants
258
259 pasthru
260
479d2113 261 special_targets
262 c_o xs_c xs_o
263 top_targets linkext dlsyms dynamic dynamic_bs
f6d6199c 264 dynamic_lib static static_lib manifypods processPL
cae6c631 265 installbin subdirs
479d2113 266 clean_subdirs clean realclean_subdirs realclean
267 metafile metafile_addtomanifest
268 dist_basics dist_core distdir dist_test dist_ci
8f993c78 269 install force perldepend makefile staticmake test ppd
3b03c0f3 270
f6d6199c 271 ); # loses section ordering
e05e23b1 272
3b03c0f3 273 @Overridable = @MM_Sections;
f1387719 274 push @Overridable, qw[
275
2366100d 276 dir_target libscan makeaperl needs_linking perm_rw perm_rwx
75e2e551 277 subdir_x test_via_harness test_via_script init_PERL
f6d6199c 278 ];
3b03c0f3 279
f1387719 280 push @MM_Sections, qw[
3b03c0f3 281
f1387719 282 pm_to_blib selfdocument
283
f6d6199c 284 ];
f1387719 285
286 # Postamble needs to be the last that was always the case
287 push @MM_Sections, "postamble";
288 push @Overridable, "postamble";
e05e23b1 289
290 # All sections are valid keys.
3b03c0f3 291 @Recognized_Att_Keys{@MM_Sections} = (1) x @MM_Sections;
e05e23b1 292
293 # we will use all these variables in the Makefile
294 @Get_from_Config =
f6d6199c 295 qw(
296 ar cc cccdlflags ccdlflags dlext dlsrc ld lddlflags ldflags libc
297 lib_ext obj_ext osname osvers ranlib sitelibexp sitearchexp so
298 exe_ext full_ar
299 );
e05e23b1 300
479d2113 301 # 5.5.3 doesn't have any concept of vendor libs
302 push @Get_from_Config, qw( vendorarchexp vendorlibexp ) if $] >= 5.006;
303
5e9e174b 304 foreach my $item (@attrib_help){
f6d6199c 305 $Recognized_Att_Keys{$item} = 1;
e05e23b1 306 }
5e9e174b 307 foreach my $item (@Get_from_Config) {
f6d6199c 308 $Recognized_Att_Keys{uc $item} = $Config{$item};
309 print "Attribute '\U$item\E' => '$Config{$item}'\n"
310 if ($Verbose >= 2);
e05e23b1 311 }
312
313 #
3b03c0f3 314 # When we eval a Makefile.PL in a subdirectory, that one will ask
315 # us (the parent) for the values and will prepend "..", so that
316 # all files to be installed end up below OUR ./blib
e05e23b1 317 #
e0678a30 318 @Prepend_parent = qw(
319 INST_BIN INST_LIB INST_ARCHLIB INST_SCRIPT
f6d6199c 320 MAP_TARGET INST_MAN1DIR INST_MAN3DIR PERL_SRC
321 PERL FULLPERL
322 );
e05e23b1 323}
42793c05 324
8e07c86e 325sub writeMakefile {
326 die <<END;
232e078e 327
8e07c86e 328The extension you are trying to build apparently is rather old and
329most probably outdated. We detect that from the fact, that a
330subroutine "writeMakefile" is called, and this subroutine is not
331supported anymore since about October 1994.
40000a8c 332
4633a7c4 333Please contact the author or look into CPAN (details about CPAN can be
334found in the FAQ and at http:/www.perl.com) for a more recent version
335of the extension. If you're really desperate, you can try to change
336the subroutine name from writeMakefile to WriteMakefile and rerun
337'perl Makefile.PL', but you're most probably left alone, when you do
338so.
42793c05 339
8e07c86e 340The MakeMaker team
1aef975c 341
42793c05 342END
8e07c86e 343}
42793c05 344
f6d6199c 345sub new {
8e07c86e 346 my($class,$self) = @_;
347 my($key);
42793c05 348
479d2113 349 # Store the original args passed to WriteMakefile()
350 foreach my $k (keys %$self) {
351 $self->{ARGS}{$k} = $self->{$k};
352 }
353
88d69b28 354 if ("@ARGV" =~ /\bPREREQ_PRINT\b/) {
f6d6199c 355 require Data::Dumper;
88d69b28 356 print Data::Dumper->Dump([$self->{PREREQ_PM}], [qw(PREREQ_PM)]);
f6d6199c 357 }
88d69b28 358
359 # PRINT_PREREQ is RedHatism.
360 if ("@ARGV" =~ /\bPRINT_PREREQ\b/) {
f6d6199c 361 print join(" ", map { "perl($_)>=$self->{PREREQ_PM}->{$_} " } sort keys %{$self->{PREREQ_PM}}), "\n";
362 exit 0;
88d69b28 363 }
364
e05e23b1 365 print STDOUT "MakeMaker (v$VERSION)\n" if $Verbose;
8e07c86e 366 if (-f "MANIFEST" && ! -f "Makefile"){
f6d6199c 367 check_manifest();
1aef975c 368 }
42793c05 369
8e07c86e 370 $self = {} unless (defined $self);
005c1a0e 371
864a5fa8 372 check_hints($self);
4633a7c4 373
c3be8c6e 374 my %configure_att; # record &{$self->{CONFIGURE}} attributes
8e07c86e 375 my(%initial_att) = %$self; # record initial attributes
005c1a0e 376
a4260cbc 377 my(%unsatisfied) = ();
5e9e174b 378 foreach my $prereq (sort keys %{$self->{PREREQ_PM}}) {
479d2113 379 # 5.8.0 has a bug with require Foo::Bar alone in an eval, so an
380 # extra statement is a workaround.
381 eval "require $prereq; 0";
f6d6199c 382
e0678a30 383 my $pr_version = $prereq->VERSION || 0;
384
479d2113 385 # convert X.Y_Z alpha version #s to X.YZ for easier comparisons
386 $pr_version =~ s/(\d+)\.(\d+)_(\d+)/$1.$2$3/;
387
f6d6199c 388 if ($@) {
389 warn sprintf "Warning: prerequisite %s %s not found.\n",
390 $prereq, $self->{PREREQ_PM}{$prereq}
391 unless $self->{PREREQ_FATAL};
392 $unsatisfied{$prereq} = 'not installed';
e0678a30 393 } elsif ($pr_version < $self->{PREREQ_PM}->{$prereq} ){
45bc4d3a 394 warn sprintf "Warning: prerequisite %s %s not found. We have %s.\n",
f6d6199c 395 $prereq, $self->{PREREQ_PM}{$prereq},
e0678a30 396 ($pr_version || 'unknown version')
f6d6199c 397 unless $self->{PREREQ_FATAL};
398 $unsatisfied{$prereq} = $self->{PREREQ_PM}->{$prereq} ?
399 $self->{PREREQ_PM}->{$prereq} : 'unknown version' ;
400 }
f1387719 401 }
a4260cbc 402 if (%unsatisfied && $self->{PREREQ_FATAL}){
f6d6199c 403 my $failedprereqs = join ', ', map {"$_ $unsatisfied{$_}"}
404 keys %unsatisfied;
405 die qq{MakeMaker FATAL: prerequisites not found ($failedprereqs)\n
406 Please install these modules first and rerun 'perl Makefile.PL'.\n};
a4260cbc 407 }
f1387719 408
8e07c86e 409 if (defined $self->{CONFIGURE}) {
f6d6199c 410 if (ref $self->{CONFIGURE} eq 'CODE') {
411 %configure_att = %{&{$self->{CONFIGURE}}};
412 $self = { %$self, %configure_att };
413 } else {
414 Carp::croak "Attribute 'CONFIGURE' to WriteMakefile() not a code reference\n";
415 }
005c1a0e 416 }
a0d0e21e 417
8e07c86e 418 # This is for old Makefiles written pre 5.00, will go away
419 if ( Carp::longmess("") =~ /runsubdirpl/s ){
f6d6199c 420 Carp::carp("WARNING: Please rerun 'perl Makefile.PL' to regenerate your Makefiles\n");
8e07c86e 421 }
5d94fbed 422
ccd13d1e 423 my $newclass = ++$PACKNAME;
f6d6199c 424 local @Parent = @Parent; # Protect against non-local exits
8e07c86e 425 {
f6d6199c 426 no strict 'refs';
427 print "Blessing Object into class [$newclass]\n" if $Verbose>=2;
428 mv_all_methods("MY",$newclass);
429 bless $self, $newclass;
430 push @Parent, $self;
431 require ExtUtils::MY;
432 @{"$newclass\:\:ISA"} = 'MM';
8e07c86e 433 }
5d94fbed 434
e05e23b1 435 if (defined $Parent[-2]){
f6d6199c 436 $self->{PARENT} = $Parent[-2];
437 my $key;
e0678a30 438 for $key (@Prepend_parent) {
f6d6199c 439 next unless defined $self->{PARENT}{$key};
531e2ba1 440
441 # Don't stomp on WriteMakefile() args.
46442182 442 next if defined $self->{ARGS}{$key} and
443 $self->{ARGS}{$key} eq $self->{$key};
444
445 $self->{$key} = $self->{PARENT}{$key};
531e2ba1 446
479d2113 447 unless ($Is_VMS && $key =~ /PERL$/) {
f6d6199c 448 $self->{$key} = $self->catdir("..",$self->{$key})
449 unless $self->file_name_is_absolute($self->{$key});
450 } else {
451 # PERL or FULLPERL will be a command verb or even a
452 # command with an argument instead of a full file
453 # specification under VMS. So, don't turn the command
454 # into a filespec, but do add a level to the path of
455 # the argument if not already absolute.
456 my @cmd = split /\s+/, $self->{$key};
457 $cmd[1] = $self->catfile('[-]',$cmd[1])
458 unless (@cmd < 2) || $self->file_name_is_absolute($cmd[1]);
459 $self->{$key} = join(' ', @cmd);
460 }
461 }
462 if ($self->{PARENT}) {
463 $self->{PARENT}->{CHILDREN}->{$newclass} = $self;
464 foreach my $opt (qw(POLLUTE PERL_CORE)) {
465 if (exists $self->{PARENT}->{$opt}
466 and not exists $self->{$opt})
467 {
468 # inherit, but only if already unspecified
469 $self->{$opt} = $self->{PARENT}->{$opt};
470 }
471 }
472 }
473 my @fm = grep /^FIRST_MAKEFILE=/, @ARGV;
474 parse_args($self,@fm) if @fm;
8e07c86e 475 } else {
f6d6199c 476 parse_args($self,split(' ', $ENV{PERL_MM_OPT} || ''),@ARGV);
8e07c86e 477 }
a0d0e21e 478
8e07c86e 479 $self->{NAME} ||= $self->guess_name;
a0d0e21e 480
8e07c86e 481 ($self->{NAME_SYM} = $self->{NAME}) =~ s/\W+/_/g;
a0d0e21e 482
479d2113 483 $self->init_main;
484 $self->init_VERSION;
485 $self->init_dist;
486 $self->init_INST;
487 $self->init_INSTALL;
531e2ba1 488 $self->init_DEST;
479d2113 489 $self->init_dirscan;
490 $self->init_xs;
491 $self->init_PERL;
492 $self->init_DIRFILESEP;
493 $self->init_linker;
8e07c86e 494
0d8023a2 495 if (! $self->{PERL_SRC} ) {
f6d6199c 496 require VMS::Filespec if $Is_VMS;
497 my($pthinks) = $self->canonpath($INC{'Config.pm'});
498 my($cthinks) = $self->catfile($Config{'archlibexp'},'Config.pm');
499 $pthinks = VMS::Filespec::vmsify($pthinks) if $Is_VMS;
500 if ($pthinks ne $cthinks &&
501 !($Is_Win32 and lc($pthinks) eq lc($cthinks))) {
3e3baf6d 502 print "Have $pthinks expected $cthinks\n";
f6d6199c 503 if ($Is_Win32) {
504 $pthinks =~ s![/\\]Config\.pm$!!i; $pthinks =~ s!.*[/\\]!!;
505 }
506 else {
507 $pthinks =~ s!/Config\.pm$!!; $pthinks =~ s!.*/!!;
508 }
509 print STDOUT <<END unless $self->{UNINSTALLED_PERL};
510Your perl and your Config.pm seem to have different ideas about the
511architecture they are running on.
8e07c86e 512Perl thinks: [$pthinks]
e05e23b1 513Config says: [$Config{archname}]
f6d6199c 514This may or may not cause problems. Please check your installation of perl
515if you have problems building this extension.
005c1a0e 516END
f6d6199c 517 }
005c1a0e 518 }
519
8e07c86e 520 $self->init_others();
479d2113 521 $self->init_platform();
e0678a30 522 $self->init_PERM();
6071deed 523 my($argv) = neatvalue(\@ARGV);
524 $argv =~ s/^\[/(/;
525 $argv =~ s/\]$/)/;
75f92628 526
8e07c86e 527 push @{$self->{RESULT}}, <<END;
528# This Makefile is for the $self->{NAME} extension to perl.
529#
e05e23b1 530# It was generated automatically by MakeMaker version
531# $VERSION (Revision: $Revision) from the contents of
532# Makefile.PL. Don't edit this file, edit Makefile.PL instead.
8e07c86e 533#
f6d6199c 534# ANY CHANGES MADE HERE WILL BE LOST!
8e07c86e 535#
6071deed 536# MakeMaker ARGV: $argv
537#
8e07c86e 538# MakeMaker Parameters:
539END
a0d0e21e 540
5e9e174b 541 foreach my $key (sort keys %initial_att){
479d2113 542 next if $key eq 'ARGS';
543
f6d6199c 544 my($v) = neatvalue($initial_att{$key});
545 $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
546 $v =~ tr/\n/ /s;
547 push @{$self->{RESULT}}, "# $key => $v";
42793c05 548 }
c3be8c6e 549 undef %initial_att; # free memory
550
551 if (defined $self->{CONFIGURE}) {
552 push @{$self->{RESULT}}, <<END;
553
554# MakeMaker 'CONFIGURE' Parameters:
555END
556 if (scalar(keys %configure_att) > 0) {
5e9e174b 557 foreach my $key (sort keys %configure_att){
479d2113 558 next if $key eq 'ARGS';
c3be8c6e 559 my($v) = neatvalue($configure_att{$key});
560 $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
561 $v =~ tr/\n/ /s;
562 push @{$self->{RESULT}}, "# $key => $v";
563 }
564 }
565 else
566 {
567 push @{$self->{RESULT}}, "# no values returned";
568 }
569 undef %configure_att; # free memory
570 }
a0d0e21e 571
8e07c86e 572 # turn the SKIP array into a SKIPHASH hash
573 my (%skip,$skip);
574 for $skip (@{$self->{SKIP} || []}) {
f6d6199c 575 $self->{SKIPHASH}{$skip} = 1;
8e07c86e 576 }
3b03c0f3 577 delete $self->{SKIP}; # free memory
578
579 if ($self->{PARENT}) {
479d2113 580 for (qw/install dist dist_basics dist_core distdir dist_test dist_ci/) {
f6d6199c 581 $self->{SKIPHASH}{$_} = 1;
582 }
3b03c0f3 583 }
42793c05 584
8e07c86e 585 # We run all the subdirectories now. They don't have much to query
586 # from the parent, but the parent has to query them: if they need linking!
8e07c86e 587 unless ($self->{NORECURS}) {
f6d6199c 588 $self->eval_in_subdirs if @{$self->{DIR}};
42793c05 589 }
a0d0e21e 590
5e9e174b 591 foreach my $section ( @MM_Sections ){
479d2113 592 # Support for new foo_target() methods.
593 my $method = $section;
594 $method .= '_target' unless $self->can($method);
595
f6d6199c 596 print "Processing Makefile '$section' section\n" if ($Verbose >= 2);
597 my($skipit) = $self->skipcheck($section);
598 if ($skipit){
599 push @{$self->{RESULT}}, "\n# --- MakeMaker $section section $skipit.";
600 } else {
601 my(%a) = %{$self->{$section} || {}};
602 push @{$self->{RESULT}}, "\n# --- MakeMaker $section section:";
603 push @{$self->{RESULT}}, "# " . join ", ", %a if $Verbose && %a;
479d2113 604 push @{$self->{RESULT}}, $self->nicetext($self->$method( %a ));
f6d6199c 605 }
232e078e 606 }
8e07c86e 607
e05e23b1 608 push @{$self->{RESULT}}, "\n# End.";
8e07c86e 609
e05e23b1 610 $self;
232e078e 611}
612
1b171b8d 613sub WriteEmptyMakefile {
a8112c7f 614 Carp::croak "WriteEmptyMakefile: Need even number of args" if @_ % 2;
a8112c7f 615
616 my %att = @_;
617 my $self = MM->new(\%att);
479d2113 618 if (-f $self->{MAKEFILE_OLD}) {
dedf98bc 619 _unlink($self->{MAKEFILE_OLD}) or
620 warn "unlink $self->{MAKEFILE_OLD}: $!";
479d2113 621 }
622 if ( -f $self->{MAKEFILE} ) {
dedf98bc 623 _rename($self->{MAKEFILE}, $self->{MAKEFILE_OLD}) or
624 warn "rename $self->{MAKEFILE} => $self->{MAKEFILE_OLD}: $!"
a8112c7f 625 }
57b1a898 626 open MF, '>'.$self->{MAKEFILE} or die "open $self->{MAKEFILE} for write: $!";
a8112c7f 627 print MF <<'EOP';
1b171b8d 628all:
629
630clean:
631
632install:
633
634makemakerdflt:
635
636test:
637
638EOP
a8112c7f 639 close MF or die "close $self->{MAKEFILE} for write: $!";
1b171b8d 640}
641
e05e23b1 642sub check_manifest {
643 print STDOUT "Checking if your kit is complete...\n";
3b03c0f3 644 require ExtUtils::Manifest;
5e9e174b 645 # avoid warning
646 $ExtUtils::Manifest::Quiet = $ExtUtils::Manifest::Quiet = 1;
647 my(@missed) = ExtUtils::Manifest::manicheck();
648 if (@missed) {
f6d6199c 649 print STDOUT "Warning: the following files are missing in your kit:\n";
650 print "\t", join "\n\t", @missed;
651 print STDOUT "\n";
652 print STDOUT "Please inform the author.\n";
8e07c86e 653 } else {
f6d6199c 654 print STDOUT "Looks good\n";
8e07c86e 655 }
8e07c86e 656}
657
e05e23b1 658sub parse_args{
659 my($self, @args) = @_;
5e9e174b 660 foreach (@args) {
f6d6199c 661 unless (m/(.*?)=(.*)/) {
662 help(),exit 1 if m/^help$/;
663 ++$Verbose if m/^verb/;
664 next;
665 }
666 my($name, $value) = ($1, $2);
667 if ($value =~ m/^~(\w+)?/) { # tilde with optional username
668 $value =~ s [^~(\w*)]
669 [$1 ?
670 ((getpwnam($1))[7] || "~$1") :
671 (getpwuid($>))[7]
672 ]ex;
673 }
479d2113 674
675 # Remember the original args passed it. It will be useful later.
676 $self->{ARGS}{uc $name} = $self->{uc $name} = $value;
8e07c86e 677 }
8e07c86e 678
e05e23b1 679 # catch old-style 'potential_libs' and inform user how to 'upgrade'
680 if (defined $self->{potential_libs}){
f6d6199c 681 my($msg)="'potential_libs' => '$self->{potential_libs}' should be";
682 if ($self->{potential_libs}){
683 print STDOUT "$msg changed to:\n\t'LIBS' => ['$self->{potential_libs}']\n";
684 } else {
685 print STDOUT "$msg deleted.\n";
686 }
687 $self->{LIBS} = [$self->{potential_libs}];
688 delete $self->{potential_libs};
8e07c86e 689 }
e05e23b1 690 # catch old-style 'ARMAYBE' and inform user how to 'upgrade'
691 if (defined $self->{ARMAYBE}){
f6d6199c 692 my($armaybe) = $self->{ARMAYBE};
693 print STDOUT "ARMAYBE => '$armaybe' should be changed to:\n",
694 "\t'dynamic_lib' => {ARMAYBE => '$armaybe'}\n";
695 my(%dl) = %{$self->{dynamic_lib} || {}};
696 $self->{dynamic_lib} = { %dl, ARMAYBE => $armaybe};
697 delete $self->{ARMAYBE};
8e07c86e 698 }
e05e23b1 699 if (defined $self->{LDTARGET}){
f6d6199c 700 print STDOUT "LDTARGET should be changed to LDFROM\n";
701 $self->{LDFROM} = $self->{LDTARGET};
702 delete $self->{LDTARGET};
8e07c86e 703 }
e05e23b1 704 # Turn a DIR argument on the command line into an array
705 if (defined $self->{DIR} && ref \$self->{DIR} eq 'SCALAR') {
f6d6199c 706 # So they can choose from the command line, which extensions they want
707 # the grep enables them to have some colons too much in case they
708 # have to build a list with the shell
709 $self->{DIR} = [grep $_, split ":", $self->{DIR}];
8e07c86e 710 }
f1387719 711 # Turn a INCLUDE_EXT argument on the command line into an array
712 if (defined $self->{INCLUDE_EXT} && ref \$self->{INCLUDE_EXT} eq 'SCALAR') {
f6d6199c 713 $self->{INCLUDE_EXT} = [grep $_, split '\s+', $self->{INCLUDE_EXT}];
f1387719 714 }
715 # Turn a EXCLUDE_EXT argument on the command line into an array
716 if (defined $self->{EXCLUDE_EXT} && ref \$self->{EXCLUDE_EXT} eq 'SCALAR') {
f6d6199c 717 $self->{EXCLUDE_EXT} = [grep $_, split '\s+', $self->{EXCLUDE_EXT}];
f1387719 718 }
5e9e174b 719
720 foreach my $mmkey (sort keys %$self){
479d2113 721 next if $mmkey eq 'ARGS';
f6d6199c 722 print STDOUT " $mmkey => ", neatvalue($self->{$mmkey}), "\n" if $Verbose;
723 print STDOUT "'$mmkey' is not a known MakeMaker parameter name.\n"
724 unless exists $Recognized_Att_Keys{$mmkey};
e05e23b1 725 }
f1387719 726 $| = 1 if $Verbose;
e05e23b1 727}
8e07c86e 728
e05e23b1 729sub check_hints {
730 my($self) = @_;
731 # We allow extension-specific hints files.
864a5fa8 732
479d2113 733 require File::Spec;
734 my $curdir = File::Spec->curdir;
735
736 my $hint_dir = File::Spec->catdir($curdir, "hints");
737 return unless -d $hint_dir;
8e07c86e 738
e05e23b1 739 # First we look for the best hintsfile we have
f1387719 740 my($hint)="${^O}_$Config{osvers}";
e05e23b1 741 $hint =~ s/\./_/g;
742 $hint =~ s/_$//;
743 return unless $hint;
fed7345c 744
e05e23b1 745 # Also try without trailing minor version numbers.
746 while (1) {
479d2113 747 last if -f File::Spec->catfile($hint_dir, "$hint.pl"); # found
e05e23b1 748 } continue {
f6d6199c 749 last unless $hint =~ s/_[^_]*$//; # nothing to cut off
e05e23b1 750 }
479d2113 751 my $hint_file = File::Spec->catfile($hint_dir, "$hint.pl");
6626a13a 752
753 return unless -f $hint_file; # really there
fed7345c 754
f6d6199c 755 _run_hintfile($self, $hint_file);
756}
757
758sub _run_hintfile {
57b1a898 759 no strict 'vars';
f6d6199c 760 local($self) = shift; # make $self available to the hint file.
761 my($hint_file) = shift;
762
479d2113 763 local($@, $!);
39234879 764 print STDERR "Processing hints file $hint_file\n";
479d2113 765
766 # Just in case the ./ isn't on the hint file, which File::Spec can
767 # often strip off, we bung the curdir into @INC
768 local @INC = (File::Spec->curdir, @INC);
769 my $ret = do $hint_file;
770 if( !defined $ret ) {
771 my $error = $@ || $!;
772 print STDERR $error;
75e2e551 773 }
e05e23b1 774}
8e07c86e 775
e05e23b1 776sub mv_all_methods {
777 my($from,$to) = @_;
5e9e174b 778 no strict 'refs';
e05e23b1 779 my($symtab) = \%{"${from}::"};
fed7345c 780
e05e23b1 781 # Here you see the *current* list of methods that are overridable
782 # from Makefile.PL via MY:: subroutines. As of VERSION 5.07 I'm
783 # still trying to reduce the list to some reasonable minimum --
784 # because I want to make it easier for the user. A.K.
40000a8c 785
57b1a898 786 local $SIG{__WARN__} = sub {
787 # can't use 'no warnings redefined', 5.6 only
788 warn @_ unless $_[0] =~ /^Subroutine .* redefined/
789 };
5e9e174b 790 foreach my $method (@Overridable) {
fed7345c 791
f6d6199c 792 # We cannot say "next" here. Nick might call MY->makeaperl
793 # which isn't defined right now
794
795 # Above statement was written at 4.23 time when Tk-b8 was
796 # around. As Tk-b9 only builds with 5.002something and MM 5 is
797 # standard, we try to enable the next line again. It was
798 # commented out until MM 5.23
799
800 next unless defined &{"${from}::$method"};
fed7345c 801
f6d6199c 802 *{"${to}::$method"} = \&{"${from}::$method"};
3b03c0f3 803
f6d6199c 804 # delete would do, if we were sure, nobody ever called
805 # MY->makeaperl directly
fed7345c 806
f6d6199c 807 # delete $symtab->{$method};
8e07c86e 808
f6d6199c 809 # If we delete a method, then it will be undefined and cannot
810 # be called. But as long as we have Makefile.PLs that rely on
811 # %MY:: being intact, we have to fill the hole with an
812 # inheriting method:
fed7345c 813
f6d6199c 814 eval "package MY; sub $method { shift->SUPER::$method(\@_); }";
5d94fbed 815 }
816
e05e23b1 817 # We have to clean out %INC also, because the current directory is
818 # changed frequently and Graham Barr prefers to get his version
819 # out of a History.pl file which is "required" so woudn't get
820 # loaded again in another extension requiring a History.pl
a0d0e21e 821
f1387719 822 # With perl5.002_01 the deletion of entries in %INC caused Tk-b11
823 # to core dump in the middle of a require statement. The required
824 # file was Tk/MMutil.pm. The consequence is, we have to be
825 # extremely careful when we try to give perl a reason to reload a
826 # library with same name. The workaround prefers to drop nothing
827 # from %INC and teach the writers not to use such libraries.
828
829# my $inc;
830# foreach $inc (keys %INC) {
f6d6199c 831# #warn "***$inc*** deleted";
832# delete $INC{$inc};
f1387719 833# }
8e07c86e 834}
835
3b03c0f3 836sub skipcheck {
8e07c86e 837 my($self) = shift;
e05e23b1 838 my($section) = @_;
839 if ($section eq 'dynamic') {
f6d6199c 840 print STDOUT "Warning (non-fatal): Target 'dynamic' depends on targets ",
841 "in skipped section 'dynamic_bs'\n"
e05e23b1 842 if $self->{SKIPHASH}{dynamic_bs} && $Verbose;
843 print STDOUT "Warning (non-fatal): Target 'dynamic' depends on targets ",
f6d6199c 844 "in skipped section 'dynamic_lib'\n"
e05e23b1 845 if $self->{SKIPHASH}{dynamic_lib} && $Verbose;
8e07c86e 846 }
e05e23b1 847 if ($section eq 'dynamic_lib') {
848 print STDOUT "Warning (non-fatal): Target '\$(INST_DYNAMIC)' depends on ",
f6d6199c 849 "targets in skipped section 'dynamic_bs'\n"
e05e23b1 850 if $self->{SKIPHASH}{dynamic_bs} && $Verbose;
851 }
852 if ($section eq 'static') {
853 print STDOUT "Warning (non-fatal): Target 'static' depends on targets ",
f6d6199c 854 "in skipped section 'static_lib'\n"
e05e23b1 855 if $self->{SKIPHASH}{static_lib} && $Verbose;
8e07c86e 856 }
e05e23b1 857 return 'skipped' if $self->{SKIPHASH}{$section};
858 return '';
8e07c86e 859}
860
e05e23b1 861sub flush {
862 my $self = shift;
863 my($chunk);
3b03c0f3 864 local *FH;
e05e23b1 865 print STDOUT "Writing $self->{MAKEFILE} for $self->{NAME}\n";
8e07c86e 866
e05e23b1 867 unlink($self->{MAKEFILE}, "MakeMaker.tmp", $Is_VMS ? 'Descrip.MMS' : '');
3b03c0f3 868 open(FH,">MakeMaker.tmp") or die "Unable to open MakeMaker.tmp: $!";
8e07c86e 869
e05e23b1 870 for $chunk (@{$self->{RESULT}}) {
f6d6199c 871 print FH "$chunk\n";
8e07c86e 872 }
e05e23b1 873
3b03c0f3 874 close FH;
e05e23b1 875 my($finalname) = $self->{MAKEFILE};
479d2113 876 _rename("MakeMaker.tmp", $finalname) or
877 warn "rename MakeMaker.tmp => $finalname: $!";
e05e23b1 878 chmod 0644, $finalname unless $Is_VMS;
3b03c0f3 879
479d2113 880 my %keep = map { ($_ => 1) } qw(NEEDS_LINKING HAS_LINK_CODE);
881
e0678a30 882 if ($self->{PARENT} && !$self->{_KEEP_AFTER_FLUSH}) {
f6d6199c 883 foreach (keys %$self) { # safe memory
479d2113 884 delete $self->{$_} unless $keep{$_};
f6d6199c 885 }
3b03c0f3 886 }
887
e05e23b1 888 system("$Config::Config{eunicefix} $finalname") unless $Config::Config{eunicefix} eq ":";
40000a8c 889}
890
479d2113 891
892# This is a rename for OS's where the target must be unlinked first.
893sub _rename {
894 my($src, $dest) = @_;
895 chmod 0666, $dest;
896 unlink $dest;
897 return rename $src, $dest;
898}
899
dedf98bc 900# This is an unlink for OS's where the target must be writable first.
901sub _unlink {
902 my @files = @_;
903 chmod 0666, @files;
904 return unlink @files;
905}
906
479d2113 907
e05e23b1 908# The following mkbootstrap() is only for installations that are calling
909# the pre-4.1 mkbootstrap() from their old Makefiles. This MakeMaker
910# writes Makefiles, that use ExtUtils::Mkbootstrap directly.
911sub mkbootstrap {
912 die <<END;
913!!! Your Makefile has been built such a long time ago, !!!
914!!! that is unlikely to work with current MakeMaker. !!!
915!!! Please rebuild your Makefile !!!
916END
8e07c86e 917}
005c1a0e 918
e05e23b1 919# Ditto for mksymlists() as of MakeMaker 5.17
920sub mksymlists {
921 die <<END;
922!!! Your Makefile has been built such a long time ago, !!!
923!!! that is unlikely to work with current MakeMaker. !!!
924!!! Please rebuild your Makefile !!!
925END
4633a7c4 926}
927
e05e23b1 928sub neatvalue {
929 my($v) = @_;
930 return "undef" unless defined $v;
931 my($t) = ref $v;
932 return "q[$v]" unless $t;
933 if ($t eq 'ARRAY') {
f6d6199c 934 my(@m, @neat);
935 push @m, "[";
936 foreach my $elem (@$v) {
937 push @neat, "q[$elem]";
938 }
939 push @m, join ", ", @neat;
940 push @m, "]";
941 return join "", @m;
e05e23b1 942 }
943 return "$v" unless $t eq 'HASH';
944 my(@m, $key, $val);
3b03c0f3 945 while (($key,$val) = each %$v){
f6d6199c 946 last unless defined $key; # cautious programming in case (undef,undef) is true
947 push(@m,"$key=>".neatvalue($val)) ;
3b03c0f3 948 }
e05e23b1 949 return "{ ".join(', ',@m)." }";
4e68a208 950}
951
e05e23b1 952sub selfdocument {
953 my($self) = @_;
954 my(@m);
955 if ($Verbose){
f6d6199c 956 push @m, "\n# Full list of MakeMaker attribute values:";
957 foreach my $key (sort keys %$self){
958 next if $key eq 'RESULT' || $key =~ /^[A-Z][a-z]/;
959 my($v) = neatvalue($self->{$key});
960 $v =~ s/(CODE|HASH|ARRAY|SCALAR)\([\dxa-f]+\)/$1\(...\)/;
961 $v =~ tr/\n/ /s;
962 push @m, "# $key => $v";
963 }
e05e23b1 964 }
965 join "\n", @m;
966}
4e68a208 967
3b03c0f3 9681;
969
970__END__
005c1a0e 971
972=head1 NAME
973
479d2113 974ExtUtils::MakeMaker - Create a module Makefile
005c1a0e 975
976=head1 SYNOPSIS
977
e0678a30 978 use ExtUtils::MakeMaker;
005c1a0e 979
e0678a30 980 WriteMakefile( ATTRIBUTE => VALUE [, ...] );
8e07c86e 981
005c1a0e 982=head1 DESCRIPTION
983
984This utility is designed to write a Makefile for an extension module
985from a Makefile.PL. It is based on the Makefile.SH model provided by
986Andy Dougherty and the perl5-porters.
987
988It splits the task of generating the Makefile into several subroutines
989that can be individually overridden. Each subroutine returns the text
990it wishes to have written to the Makefile.
991
f1387719 992MakeMaker is object oriented. Each directory below the current
e0678a30 993directory that contains a Makefile.PL is treated as a separate
f1387719 994object. This makes it possible to write an unlimited number of
995Makefiles with a single invocation of WriteMakefile().
8e07c86e 996
f1387719 997=head2 How To Write A Makefile.PL
8e07c86e 998
479d2113 999See ExtUtils::MakeMaker::Tutorial.
8e07c86e 1000
bab2b58e 1001The long answer is the rest of the manpage :-)
005c1a0e 1002
1003=head2 Default Makefile Behaviour
1004
f1387719 1005The generated Makefile enables the user of the extension to invoke
005c1a0e 1006
1007 perl Makefile.PL # optionally "perl Makefile.PL verbose"
1008 make
8e07c86e 1009 make test # optionally set TEST_VERBOSE=1
1010 make install # See below
005c1a0e 1011
1012The Makefile to be produced may be altered by adding arguments of the
e05e23b1 1013form C<KEY=VALUE>. E.g.
005c1a0e 1014
e05e23b1 1015 perl Makefile.PL PREFIX=/tmp/myperl5
005c1a0e 1016
1017Other interesting targets in the generated Makefile are
1018
1019 make config # to check if the Makefile is up-to-date
8e07c86e 1020 make clean # delete local temp files (Makefile gets renamed)
1021 make realclean # delete derived files (including ./blib)
e05e23b1 1022 make ci # check in all the files in the MANIFEST file
005c1a0e 1023 make dist # see below the Distribution Support section
1024
e05e23b1 1025=head2 make test
1026
bab2b58e 1027MakeMaker checks for the existence of a file named F<test.pl> in the
d5d4ec93 1028current directory and if it exists it execute the script with the
1029proper set of perl C<-I> options.
e05e23b1 1030
1031MakeMaker also checks for any files matching glob("t/*.t"). It will
d5d4ec93 1032execute all matching files in alphabetical order via the
1033L<Test::Harness> module with the C<-I> switches set correctly.
1034
1035If you'd like to see the raw output of your tests, set the
1036C<TEST_VERBOSE> variable to true.
1037
1038 make test TEST_VERBOSE=1
e05e23b1 1039
bab2b58e 1040=head2 make testdb
1041
1042A useful variation of the above is the target C<testdb>. It runs the
1043test under the Perl debugger (see L<perldebug>). If the file
1044F<test.pl> exists in the current directory, it is used for the test.
1045
d5d4ec93 1046If you want to debug some other testfile, set the C<TEST_FILE> variable
bab2b58e 1047thusly:
1048
1049 make testdb TEST_FILE=t/mytest.t
1050
1051By default the debugger is called using C<-d> option to perl. If you
d5d4ec93 1052want to specify some other option, set the C<TESTDB_SW> variable:
bab2b58e 1053
1054 make testdb TESTDB_SW=-Dx
1055
e05e23b1 1056=head2 make install
005c1a0e 1057
8e07c86e 1058make alone puts all relevant files into directories that are named by
f6d6199c 1059the macros INST_LIB, INST_ARCHLIB, INST_SCRIPT, INST_MAN1DIR and
1060INST_MAN3DIR. All these default to something below ./blib if you are
1061I<not> building below the perl source directory. If you I<are>
1062building below the perl source, INST_LIB and INST_ARCHLIB default to
1063../../lib, and INST_SCRIPT is not defined.
005c1a0e 1064
e05e23b1 1065The I<install> target of the generated Makefile copies the files found
1066below each of the INST_* directories to their INSTALL*
1067counterparts. Which counterparts are chosen depends on the setting of
1068INSTALLDIRS according to the following table:
005c1a0e 1069
f6d6199c 1070 INSTALLDIRS set to
5c161494 1071 perl site vendor
e05e23b1 1072
479d2113 1073 PERLPREFIX SITEPREFIX VENDORPREFIX
5c161494 1074 INST_ARCHLIB INSTALLARCHLIB INSTALLSITEARCH INSTALLVENDORARCH
1075 INST_LIB INSTALLPRIVLIB INSTALLSITELIB INSTALLVENDORLIB
1076 INST_BIN INSTALLBIN INSTALLSITEBIN INSTALLVENDORBIN
1077 INST_SCRIPT INSTALLSCRIPT INSTALLSCRIPT INSTALLSCRIPT
1078 INST_MAN1DIR INSTALLMAN1DIR INSTALLSITEMAN1DIR INSTALLVENDORMAN1DIR
1079 INST_MAN3DIR INSTALLMAN3DIR INSTALLSITEMAN3DIR INSTALLVENDORMAN3DIR
005c1a0e 1080
8e07c86e 1081The INSTALL... macros in turn default to their %Config
1082($Config{installprivlib}, $Config{installarchlib}, etc.) counterparts.
005c1a0e 1083
3b03c0f3 1084You can check the values of these variables on your system with
1085
bab2b58e 1086 perl '-V:install.*'
3b03c0f3 1087
f1387719 1088And to check the sequence in which the library directories are
1089searched by perl, run
005c1a0e 1090
f1387719 1091 perl -le 'print join $/, @INC'
005c1a0e 1092
005c1a0e 1093
bab2b58e 1094=head2 PREFIX and LIB attribute
1095
1096PREFIX and LIB can be used to set several INSTALL* attributes in one
1097go. The quickest way to install a module in a non-standard place might
1098be
1099
f6d6199c 1100 perl Makefile.PL PREFIX=~
005c1a0e 1101
f6d6199c 1102This will install all files in the module under your home directory,
1103with man pages and libraries going into an appropriate place (usually
1104~/man and ~/lib).
bab2b58e 1105
1106Another way to specify many INSTALL directories with a single
f6d6199c 1107parameter is LIB.
005c1a0e 1108
f6d6199c 1109 perl Makefile.PL LIB=~/lib
005c1a0e 1110
f6d6199c 1111This will install the module's architecture-independent files into
1112~/lib, the architecture-dependent files into ~/lib/$archname.
005c1a0e 1113
bab2b58e 1114Note, that in both cases the tilde expansion is done by MakeMaker, not
e35b8f9e 1115by perl by default, nor by make.
1116
f6d6199c 1117Conflicts between parameters LIB, PREFIX and the various INSTALL*
1118arguments are resolved so that:
e35b8f9e 1119
1120=over 4
1121
1122=item *
1123
1124setting LIB overrides any setting of INSTALLPRIVLIB, INSTALLARCHLIB,
1125INSTALLSITELIB, INSTALLSITEARCH (and they are not affected by PREFIX);
1126
1127=item *
1128
1129without LIB, setting PREFIX replaces the initial C<$Config{prefix}>
1130part of those INSTALL* arguments, even if the latter are explicitly
1131set (but are set to still start with C<$Config{prefix}>).
1132
1133=back
005c1a0e 1134
f6d6199c 1135If the user has superuser privileges, and is not working on AFS or
1136relatives, then the defaults for INSTALLPRIVLIB, INSTALLARCHLIB,
1137INSTALLSCRIPT, etc. will be appropriate, and this incantation will be
1138the best:
005c1a0e 1139
e0678a30 1140 perl Makefile.PL;
1141 make;
1142 make test
005c1a0e 1143 make install
1144
8e07c86e 1145make install per default writes some documentation of what has been
e05e23b1 1146done into the file C<$(INSTALLARCHLIB)/perllocal.pod>. This feature
1147can be bypassed by calling make pure_install.
8e07c86e 1148
1149=head2 AFS users
1150
1151will have to specify the installation directories as these most
1152probably have changed since perl itself has been installed. They will
1153have to do this by calling
1154
e05e23b1 1155 perl Makefile.PL INSTALLSITELIB=/afs/here/today \
f6d6199c 1156 INSTALLSCRIPT=/afs/there/now INSTALLMAN3DIR=/afs/for/manpages
8e07c86e 1157 make
1158
e05e23b1 1159Be careful to repeat this procedure every time you recompile an
1160extension, unless you are sure the AFS installation directories are
1161still valid.
005c1a0e 1162
8e07c86e 1163=head2 Static Linking of a new Perl Binary
005c1a0e 1164
1165An extension that is built with the above steps is ready to use on
1166systems supporting dynamic loading. On systems that do not support
1167dynamic loading, any newly created extension has to be linked together
1168with the available resources. MakeMaker supports the linking process
1169by creating appropriate targets in the Makefile whenever an extension
1170is built. You can invoke the corresponding section of the makefile with
1171
1172 make perl
1173
1174That produces a new perl binary in the current directory with all
da7f727a 1175extensions linked in that can be found in INST_ARCHLIB, SITELIBEXP,
e05e23b1 1176and PERL_ARCHLIB. To do that, MakeMaker writes a new Makefile, on
1177UNIX, this is called Makefile.aperl (may be system dependent). If you
1178want to force the creation of a new perl, it is recommended, that you
1179delete this Makefile.aperl, so the directories are searched-through
1180for linkable libraries again.
005c1a0e 1181
1182The binary can be installed into the directory where perl normally
1183resides on your machine with
1184
1185 make inst_perl
1186
1187To produce a perl binary with a different name than C<perl>, either say
1188
1189 perl Makefile.PL MAP_TARGET=myperl
1190 make myperl
1191 make inst_perl
1192
1193or say
1194
1195 perl Makefile.PL
1196 make myperl MAP_TARGET=myperl
1197 make inst_perl MAP_TARGET=myperl
1198
1199In any case you will be prompted with the correct invocation of the
1200C<inst_perl> target that installs the new binary into INSTALLBIN.
1201
8e07c86e 1202make inst_perl per default writes some documentation of what has been
1203done into the file C<$(INSTALLARCHLIB)/perllocal.pod>. This
1204can be bypassed by calling make pure_inst_perl.
005c1a0e 1205
e05e23b1 1206Warning: the inst_perl: target will most probably overwrite your
1207existing perl binary. Use with care!
005c1a0e 1208
8e07c86e 1209Sometimes you might want to build a statically linked perl although
1210your system supports dynamic loading. In this case you may explicitly
1211set the linktype with the invocation of the Makefile.PL or make:
1212
1213 perl Makefile.PL LINKTYPE=static # recommended
1214
1215or
1216
1217 make LINKTYPE=static # works on most systems
1218
005c1a0e 1219=head2 Determination of Perl Library and Installation Locations
1220
1221MakeMaker needs to know, or to guess, where certain things are
e05e23b1 1222located. Especially INST_LIB and INST_ARCHLIB (where to put the files
1223during the make(1) run), PERL_LIB and PERL_ARCHLIB (where to read
1224existing modules from), and PERL_INC (header files and C<libperl*.*>).
005c1a0e 1225
1226Extensions may be built either using the contents of the perl source
e05e23b1 1227directory tree or from the installed perl library. The recommended way
1228is to build extensions after you have run 'make install' on perl
1229itself. You can do that in any directory on your hard disk that is not
1230below the perl source tree. The support for extensions below the ext
1231directory of the perl distribution is only good for the standard
1232extensions that come with perl.
005c1a0e 1233
1234If an extension is being built below the C<ext/> directory of the perl
e05e23b1 1235source then MakeMaker will set PERL_SRC automatically (e.g.,
1236C<../..>). If PERL_SRC is defined and the extension is recognized as
1237a standard extension, then other variables default to the following:
005c1a0e 1238
1239 PERL_INC = PERL_SRC
1240 PERL_LIB = PERL_SRC/lib
1241 PERL_ARCHLIB = PERL_SRC/lib
1242 INST_LIB = PERL_LIB
1243 INST_ARCHLIB = PERL_ARCHLIB
1244
1245If an extension is being built away from the perl source then MakeMaker
1246will leave PERL_SRC undefined and default to using the installed copy
1247of the perl library. The other variables default to the following:
1248
e05e23b1 1249 PERL_INC = $archlibexp/CORE
1250 PERL_LIB = $privlibexp
1251 PERL_ARCHLIB = $archlibexp
1252 INST_LIB = ./blib/lib
1253 INST_ARCHLIB = ./blib/arch
005c1a0e 1254
1255If perl has not yet been installed then PERL_SRC can be defined on the
1256command line as shown in the previous section.
1257
005c1a0e 1258
f1387719 1259=head2 Which architecture dependent directory?
005c1a0e 1260
f1387719 1261If you don't want to keep the defaults for the INSTALL* macros,
1262MakeMaker helps you to minimize the typing needed: the usual
1263relationship between INSTALLPRIVLIB and INSTALLARCHLIB is determined
1264by Configure at perl compilation time. MakeMaker supports the user who
1265sets INSTALLPRIVLIB. If INSTALLPRIVLIB is set, but INSTALLARCHLIB not,
1266then MakeMaker defaults the latter to be the same subdirectory of
1267INSTALLPRIVLIB as Configure decided for the counterparts in %Config ,
1268otherwise it defaults to INSTALLPRIVLIB. The same relationship holds
1269for INSTALLSITELIB and INSTALLSITEARCH.
005c1a0e 1270
f1387719 1271MakeMaker gives you much more freedom than needed to configure
1272internal variables and get different results. It is worth to mention,
1273that make(1) also lets you configure most of the variables that are
1274used in the Makefile. But in the majority of situations this will not
a7665c5e 1275be necessary, and should only be done if the author of a package
f1387719 1276recommends it (or you know what you're doing).
005c1a0e 1277
e05e23b1 1278=head2 Using Attributes and Parameters
005c1a0e 1279
a884ca7c 1280The following attributes may be specified as arguments to WriteMakefile()
1281or as NAME=VALUE pairs on the command line.
005c1a0e 1282
875fa795 1283=over 2
005c1a0e 1284
875fa795 1285=item ABSTRACT
1286
1287One line description of the module. Will be included in PPD file.
1288
1289=item ABSTRACT_FROM
1290
1291Name of the file that contains the package description. MakeMaker looks
1292for a line in the POD matching /^($package\s-\s)(.*)/. This is typically
1293the first line in the "=head1 NAME" section. $2 becomes the abstract.
1294
e35b8f9e 1295=item AUTHOR
1296
1297String containing name (and email address) of package author(s). Is used
1298in PPD (Perl Package Description) files for PPM (Perl Package Manager).
1299
875fa795 1300=item BINARY_LOCATION
1301
1302Used when creating PPD files for binary packages. It can be set to a
1303full or relative path or URL to the binary archive for a particular
1304architecture. For example:
1305
f6d6199c 1306 perl Makefile.PL BINARY_LOCATION=x86/Agent.tar.gz
875fa795 1307
1308builds a PPD package that references a binary of the C<Agent> package,
20e08411 1309located in the C<x86> directory relative to the PPD itself.
8e07c86e 1310
864a5fa8 1311=item C
8e07c86e 1312
864a5fa8 1313Ref to array of *.c file names. Initialised from a directory scan
1314and the values portion of the XS attribute hash. This is not
1315currently used by MakeMaker but may be handy in Makefile.PLs.
8e07c86e 1316
84902520 1317=item CCFLAGS
1318
1319String that will be included in the compiler call command line between
1320the arguments INC and OPTIMIZE.
1321
864a5fa8 1322=item CONFIG
8e07c86e 1323
864a5fa8 1324Arrayref. E.g. [qw(archname manext)] defines ARCHNAME & MANEXT from
1325config.sh. MakeMaker will add to CONFIG the following values anyway:
1326ar
1327cc
1328cccdlflags
1329ccdlflags
1330dlext
1331dlsrc
1332ld
1333lddlflags
1334ldflags
1335libc
1336lib_ext
1337obj_ext
1338ranlib
e05e23b1 1339sitelibexp
1340sitearchexp
864a5fa8 1341so
8e07c86e 1342
1343=item CONFIGURE
1344
e05e23b1 1345CODE reference. The subroutine should return a hash reference. The
1fef88e7 1346hash may contain further attributes, e.g. {LIBS =E<gt> ...}, that have to
8e07c86e 1347be determined by some evaluation method.
1348
864a5fa8 1349=item DEFINE
8e07c86e 1350
864a5fa8 1351Something like C<"-DHAVE_UNISTD_H">
8e07c86e 1352
479d2113 1353=item DESTDIR
1354
1355This is the root directory into which the code will be installed. It
1356I<prepends itself to the normal prefix>. For example, if your code
531e2ba1 1357would normally go into /usr/local/lib/perl you could set DESTDIR=/tmp/
479d2113 1358and installation would go into /tmp/usr/local/lib/perl.
1359
1360This is primarily of use for people who repackage Perl modules.
1361
531e2ba1 1362NOTE: Due to the nature of make, it is important that you put the trailing
1363slash on your DESTDIR. "/tmp/" not "/tmp".
479d2113 1364
864a5fa8 1365=item DIR
8e07c86e 1366
864a5fa8 1367Ref to array of subdirectories containing Makefile.PLs e.g. [ 'sdbm'
1368] in ext/SDBM_File
8e07c86e 1369
864a5fa8 1370=item DISTNAME
8e07c86e 1371
479d2113 1372A safe filename for the package.
1373
1374Defaults to NAME above but with :: replaced with -.
1375
1376For example, Foo::Bar becomes Foo-Bar.
1377
1378=item DISTVNAME
1379
1380Your name for distributing the package with the version number
1381included. This is used by 'make dist' to name the resulting archive
1382file.
1383
1384Defaults to DISTNAME-VERSION.
1385
1386For example, version 1.04 of Foo::Bar becomes Foo-Bar-1.04.
1387
1388On some OS's where . has special meaning VERSION_SYM may be used in
1389place of VERSION.
8e07c86e 1390
864a5fa8 1391=item DL_FUNCS
8e07c86e 1392
875fa795 1393Hashref of symbol names for routines to be made available as universal
1394symbols. Each key/value pair consists of the package name and an
1395array of routine names in that package. Used only under AIX, OS/2,
1396VMS and Win32 at present. The routine names supplied will be expanded
1397in the same way as XSUB names are expanded by the XS() macro.
1398Defaults to
8e07c86e 1399
864a5fa8 1400 {"$(NAME)" => ["boot_$(NAME)" ] }
8e07c86e 1401
864a5fa8 1402e.g.
8e07c86e 1403
864a5fa8 1404 {"RPC" => [qw( boot_rpcb rpcb_gettime getnetconfigent )],
1405 "NetconfigPtr" => [ 'DESTROY'] }
8e07c86e 1406
875fa795 1407Please see the L<ExtUtils::Mksymlists> documentation for more information
1408about the DL_FUNCS, DL_VARS and FUNCLIST attributes.
1409
864a5fa8 1410=item DL_VARS
8e07c86e 1411
875fa795 1412Array of symbol names for variables to be made available as universal symbols.
1413Used only under AIX, OS/2, VMS and Win32 at present. Defaults to [].
1414(e.g. [ qw(Foo_version Foo_numstreams Foo_tree ) ])
8e07c86e 1415
f1387719 1416=item EXCLUDE_EXT
1417
1418Array of extension names to exclude when doing a static build. This
1419is ignored if INCLUDE_EXT is present. Consult INCLUDE_EXT for more
1420details. (e.g. [ qw( Socket POSIX ) ] )
1421
1422This attribute may be most useful when specified as a string on the
de592821 1423command line: perl Makefile.PL EXCLUDE_EXT='Socket Safe'
f1387719 1424
864a5fa8 1425=item EXE_FILES
8e07c86e 1426
864a5fa8 1427Ref to array of executable files. The files will be copied to the
f1387719 1428INST_SCRIPT directory. Make realclean will delete them from there
864a5fa8 1429again.
8e07c86e 1430
2530b651 1431If your executables start with something like #!perl or
1432#!/usr/bin/perl MakeMaker will change this to the path of the perl
1433'Makefile.PL' was invoked with so the programs will be sure to run
1434properly even if perl is not in /usr/bin/perl.
1435
864a5fa8 1436=item FIRST_MAKEFILE
1437
479d2113 1438The name of the Makefile to be produced. This is used for the second
1439Makefile that will be produced for the MAP_TARGET.
1440
1441Defaults to 'Makefile' or 'Descrip.MMS' on VMS.
1442
1443(Note: we couldn't use MAKEFILE because dmake uses this for something
1444else).
864a5fa8 1445
1446=item FULLPERL
8e07c86e 1447
75e2e551 1448Perl binary able to run this extension, load XS modules, etc...
1449
1450=item FULLPERLRUN
1451
1452Like PERLRUN, except it uses FULLPERL.
1453
1454=item FULLPERLRUNINST
1455
1456Like PERLRUNINST, except it uses FULLPERL.
864a5fa8 1457
762efda7 1458=item FUNCLIST
1459
1460This provides an alternate means to specify function names to be
1461exported from the extension. Its value is a reference to an
1462array of function names to be exported by the extension. These
1463names are passed through unaltered to the linker options file.
1464
864a5fa8 1465=item H
1466
1467Ref to array of *.h file names. Similar to C.
1468
84902520 1469=item IMPORTS
1470
875fa795 1471This attribute is used to specify names to be imported into the
69ff8adf 1472extension. Takes a hash ref.
1473
1474It is only used on OS/2 and Win32.
84902520 1475
864a5fa8 1476=item INC
1477
1478Include file dirs eg: C<"-I/usr/5include -I/path/to/inc">
1479
f1387719 1480=item INCLUDE_EXT
1481
1482Array of extension names to be included when doing a static build.
1483MakeMaker will normally build with all of the installed extensions when
1484doing a static build, and that is usually the desired behavior. If
1485INCLUDE_EXT is present then MakeMaker will build only with those extensions
1486which are explicitly mentioned. (e.g. [ qw( Socket POSIX ) ])
1487
1488It is not necessary to mention DynaLoader or the current extension when
1489filling in INCLUDE_EXT. If the INCLUDE_EXT is mentioned but is empty then
1490only DynaLoader and the current extension will be included in the build.
1491
1492This attribute may be most useful when specified as a string on the
de592821 1493command line: perl Makefile.PL INCLUDE_EXT='POSIX Socket Devel::Peek'
f1387719 1494
864a5fa8 1495=item INSTALLARCHLIB
1496
e05e23b1 1497Used by 'make install', which copies files from INST_ARCHLIB to this
1498directory if INSTALLDIRS is set to perl.
864a5fa8 1499
1500=item INSTALLBIN
1501
5c161494 1502Directory to install binary files (e.g. tkperl) into if
1503INSTALLDIRS=perl.
e05e23b1 1504
1505=item INSTALLDIRS
1506
5c161494 1507Determines which of the sets of installation directories to choose:
1508perl, site or vendor. Defaults to site.
8e07c86e 1509
1510=item INSTALLMAN1DIR
1511
1512=item INSTALLMAN3DIR
1513
5c161494 1514These directories get the man pages at 'make install' time if
1515INSTALLDIRS=perl. Defaults to $Config{installman*dir}.
8e07c86e 1516
5c161494 1517If set to 'none', no man pages will be installed.
e0678a30 1518
864a5fa8 1519=item INSTALLPRIVLIB
8e07c86e 1520
e05e23b1 1521Used by 'make install', which copies files from INST_LIB to this
1522directory if INSTALLDIRS is set to perl.
1523
5c161494 1524Defaults to $Config{installprivlib}.
1525
f1387719 1526=item INSTALLSCRIPT
1527
1528Used by 'make install' which copies files from INST_SCRIPT to this
1529directory.
1530
875fa795 1531=item INSTALLSITEARCH
e05e23b1 1532
875fa795 1533Used by 'make install', which copies files from INST_ARCHLIB to this
e05e23b1 1534directory if INSTALLDIRS is set to site (default).
1535
5c161494 1536=item INSTALLSITEBIN
1537
1538Used by 'make install', which copies files from INST_BIN to this
1539directory if INSTALLDIRS is set to site (default).
1540
875fa795 1541=item INSTALLSITELIB
e05e23b1 1542
875fa795 1543Used by 'make install', which copies files from INST_LIB to this
e05e23b1 1544directory if INSTALLDIRS is set to site (default).
8e07c86e 1545
5c161494 1546=item INSTALLSITEMAN1DIR
1547
1548=item INSTALLSITEMAN3DIR
1549
1550These directories get the man pages at 'make install' time if
1551INSTALLDIRS=site (default). Defaults to
1552$(SITEPREFIX)/man/man$(MAN*EXT).
1553
1554If set to 'none', no man pages will be installed.
1555
1556=item INSTALLVENDORARCH
1557
1558Used by 'make install', which copies files from INST_ARCHLIB to this
1559directory if INSTALLDIRS is set to vendor.
1560
1561=item INSTALLVENDORBIN
1562
1563Used by 'make install', which copies files from INST_BIN to this
1564directory if INSTALLDIRS is set to vendor.
1565
1566=item INSTALLVENDORLIB
1567
1568Used by 'make install', which copies files from INST_LIB to this
1569directory if INSTALLDIRS is set to vendor.
1570
1571=item INSTALLVENDORMAN1DIR
1572
1573=item INSTALLVENDORMAN3DIR
1574
1575These directories get the man pages at 'make install' time if
1576INSTALLDIRS=vendor. Defaults to $(VENDORPREFIX)/man/man$(MAN*EXT).
1577
1578If set to 'none', no man pages will be installed.
1579
864a5fa8 1580=item INST_ARCHLIB
8e07c86e 1581
864a5fa8 1582Same as INST_LIB for architecture dependent files.
8e07c86e 1583
f1387719 1584=item INST_BIN
1585
1586Directory to put real binary files during 'make'. These will be copied
1587to INSTALLBIN during 'make install'
1588
e35b8f9e 1589=item INST_LIB
1590
1591Directory where we put library files of this extension while building
1592it.
1593
864a5fa8 1594=item INST_MAN1DIR
8e07c86e 1595
864a5fa8 1596Directory to hold the man pages at 'make' time
8e07c86e 1597
864a5fa8 1598=item INST_MAN3DIR
8e07c86e 1599
864a5fa8 1600Directory to hold the man pages at 'make' time
8e07c86e 1601
f1387719 1602=item INST_SCRIPT
1603
1604Directory, where executable files should be installed during
c3fed81c 1605'make'. Defaults to "./blib/script", just to have a dummy location during
f1387719 1606testing. make install will copy the files in INST_SCRIPT to
1607INSTALLSCRIPT.
1608
479d2113 1609=item LD
1610
1611Program to be used to link libraries for dynamic loading.
1612
1613Defaults to $Config{ld}.
1614
a884ca7c 1615=item LDDLFLAGS
1616
1617Any special flags that might need to be passed to ld to create a
1618shared library suitable for dynamic loading. It is up to the makefile
1619to use it. (See L<Config/lddlflags>)
1620
1621Defaults to $Config{lddlflags}.
1622
864a5fa8 1623=item LDFROM
8e07c86e 1624
69ff8adf 1625Defaults to "$(OBJECT)" and is used in the ld command to specify
864a5fa8 1626what files to link/load from (also see dynamic_lib below for how to
1627specify ld flags)
8e07c86e 1628
bab2b58e 1629=item LIB
1630
e35b8f9e 1631LIB should only be set at C<perl Makefile.PL> time but is allowed as a
f6d6199c 1632MakeMaker argument. It has the effect of setting both INSTALLPRIVLIB
1633and INSTALLSITELIB to that value regardless any explicit setting of
1634those arguments (or of PREFIX). INSTALLARCHLIB and INSTALLSITEARCH
1635are set to the corresponding architecture subdirectory.
bab2b58e 1636
762efda7 1637=item LIBPERL_A
1638
1639The filename of the perllibrary that will be used together with this
1640extension. Defaults to libperl.a.
1641
8e07c86e 1642=item LIBS
1643
1644An anonymous array of alternative library
1645specifications to be searched for (in order) until
864a5fa8 1646at least one library is found. E.g.
8e07c86e 1647
1648 'LIBS' => ["-lgdbm", "-ldbm -lfoo", "-L/path -ldbm.nfs"]
1649
1650Mind, that any element of the array
1651contains a complete set of arguments for the ld
1652command. So do not specify
1653
1654 'LIBS' => ["-ltcl", "-ltk", "-lX11"]
1655
1656See ODBM_File/Makefile.PL for an example, where an array is needed. If
1657you specify a scalar as in
1658
1659 'LIBS' => "-ltcl -ltk -lX11"
1660
1661MakeMaker will turn it into an array with one element.
1662
864a5fa8 1663=item LINKTYPE
8e07c86e 1664
e05e23b1 1665'static' or 'dynamic' (default unless usedl=undef in
1666config.sh). Should only be used to force static linking (also see
864a5fa8 1667linkext below).
8e07c86e 1668
864a5fa8 1669=item MAKEAPERL
8e07c86e 1670
864a5fa8 1671Boolean which tells MakeMaker, that it should include the rules to
1672make a perl. This is handled automatically as a switch by
1673MakeMaker. The user normally does not need it.
8e07c86e 1674
479d2113 1675=item MAKEFILE_OLD
1676
1677When 'make clean' or similar is run, the $(FIRST_MAKEFILE) will be
1678backed up at this location.
8e07c86e 1679
479d2113 1680Defaults to $(FIRST_MAKEFILE).old or $(FIRST_MAKEFILE)_old on VMS.
8e07c86e 1681
864a5fa8 1682=item MAN1PODS
8e07c86e 1683
864a5fa8 1684Hashref of pod-containing files. MakeMaker will default this to all
1685EXE_FILES files that include POD directives. The files listed
1686here will be converted to man pages and installed as was requested
1687at Configure time.
8e07c86e 1688
864a5fa8 1689=item MAN3PODS
8e07c86e 1690
bfa2a9ad 1691Hashref that assigns to *.pm and *.pod files the files into which the
1692manpages are to be written. MakeMaker parses all *.pod and *.pm files
1693for POD directives. Files that contain POD will be the default keys of
1694the MAN3PODS hashref. These will then be converted to man pages during
1695C<make> and will be installed during C<make install>.
8e07c86e 1696
864a5fa8 1697=item MAP_TARGET
8e07c86e 1698
864a5fa8 1699If it is intended, that a new perl binary be produced, this variable
1700may hold a name for that binary. Defaults to perl
8e07c86e 1701
864a5fa8 1702=item MYEXTLIB
4633a7c4 1703
864a5fa8 1704If the extension links to a library that it builds set this to the
1705name of the library (see SDBM_File)
4633a7c4 1706
864a5fa8 1707=item NAME
8e07c86e 1708
864a5fa8 1709Perl module name for this extension (DBD::Oracle). This will default
1710to the directory name but should be explicitly defined in the
1711Makefile.PL.
8e07c86e 1712
864a5fa8 1713=item NEEDS_LINKING
8e07c86e 1714
a7665c5e 1715MakeMaker will figure out if an extension contains linkable code
864a5fa8 1716anywhere down the directory tree, and will set this variable
a7665c5e 1717accordingly, but you can speed it up a very little bit if you define
864a5fa8 1718this boolean variable yourself.
8e07c86e 1719
e05e23b1 1720=item NOECHO
1721
479d2113 1722Command so make does not print the literal commands its running.
1723
1724By setting it to an empty string you can generate a Makefile that
1725prints all commands. Mainly used in debugging MakeMaker itself.
1726
1727Defaults to C<@>.
e05e23b1 1728
864a5fa8 1729=item NORECURS
8e07c86e 1730
e05e23b1 1731Boolean. Attribute to inhibit descending into subdirectories.
8e07c86e 1732
1df8d179 1733=item NO_META
1734
1735When true, suppresses the generation and addition to the MANIFEST of
1736the META.yml module meta-data file during 'make distdir'.
1737
1738Defaults to false.
1739
762efda7 1740=item NO_VC
1741
a7665c5e 1742In general, any generated Makefile checks for the current version of
762efda7 1743MakeMaker and the version the Makefile was built under. If NO_VC is
1744set, the version check is neglected. Do not write this into your
1745Makefile.PL, use it interactively instead.
1746
864a5fa8 1747=item OBJECT
8e07c86e 1748
864a5fa8 1749List of object files, defaults to '$(BASEEXT)$(OBJ_EXT)', but can be a long
1750string containing all object files, e.g. "tkpBind.o
1751tkpButton.o tkpCanvas.o"
8e07c86e 1752
e35b8f9e 1753(Where BASEEXT is the last component of NAME, and OBJ_EXT is $Config{obj_ext}.)
1754
3b03c0f3 1755=item OPTIMIZE
1756
1757Defaults to C<-O>. Set it to C<-g> to turn debugging on. The flag is
1758passed to subdirectory makes.
1759
864a5fa8 1760=item PERL
8e07c86e 1761
864a5fa8 1762Perl binary for tasks that can be done by miniperl
8e07c86e 1763
da7f727a 1764=item PERL_CORE
1765
1766Set only when MakeMaker is building the extensions of the Perl core
1767distribution.
1768
864a5fa8 1769=item PERLMAINCC
005c1a0e 1770
864a5fa8 1771The call to the program that is able to compile perlmain.c. Defaults
1772to $(CC).
005c1a0e 1773
864a5fa8 1774=item PERL_ARCHLIB
005c1a0e 1775
da7f727a 1776Same as for PERL_LIB, but for architecture dependent files.
1777
1778Used only when MakeMaker is building the extensions of the Perl core
1779distribution (because normally $(PERL_ARCHLIB) is automatically in @INC,
1780and adding it would get in the way of PERL5LIB).
8e07c86e 1781
864a5fa8 1782=item PERL_LIB
8e07c86e 1783
864a5fa8 1784Directory containing the Perl library to use.
8e07c86e 1785
da7f727a 1786Used only when MakeMaker is building the extensions of the Perl core
1787distribution (because normally $(PERL_LIB) is automatically in @INC,
1788and adding it would get in the way of PERL5LIB).
1789
e35b8f9e 1790=item PERL_MALLOC_OK
1791
1792defaults to 0. Should be set to TRUE if the extension can work with
1793the memory allocation routines substituted by the Perl malloc() subsystem.
1794This should be applicable to most extensions with exceptions of those
1795
1796=over 4
1797
1798=item *
1799
1800with bugs in memory allocations which are caught by Perl's malloc();
1801
1802=item *
1803
1804which interact with the memory allocator in other ways than via
1805malloc(), realloc(), free(), calloc(), sbrk() and brk();
1806
1807=item *
1808
1809which rely on special alignment which is not provided by Perl's malloc().
1810
1811=back
1812
1813B<NOTE.> Negligence to set this flag in I<any one> of loaded extension
1814nullifies many advantages of Perl's malloc(), such as better usage of
1815system resources, error detection, memory usage reporting, catchable failure
1816of memory allocations, etc.
1817
479d2113 1818=item PERLPREFIX
1819
1820Directory under which core modules are to be installed.
1821
1822Defaults to $Config{installprefixexp} falling back to
1823$Config{installprefix}, $Config{prefixexp} or $Config{prefix} should
1824$Config{installprefixexp} not exist.
1825
1826Overridden by PREFIX.
1827
da7f727a 1828=item PERLRUN
1829
75e2e551 1830Use this instead of $(PERL) when you wish to run perl. It will set up
1831extra necessary flags for you.
f6d6199c 1832
ffbaec2a 1833=item PERLRUNINST
f6d6199c 1834
75e2e551 1835Use this instead of $(PERL) when you wish to run perl to work with
1836modules. It will add things like -I$(INST_ARCH) and other necessary
1837flags so perl can see the modules you're about to install.
f6d6199c 1838
864a5fa8 1839=item PERL_SRC
8e07c86e 1840
864a5fa8 1841Directory containing the Perl source code (use of this should be
1842avoided, it may be undefined)
8e07c86e 1843
2366100d 1844=item PERM_RW
1845
de592821 1846Desired permission for read/writable files. Defaults to C<644>.
2366100d 1847See also L<MM_Unix/perm_rw>.
1848
1849=item PERM_RWX
1850
1851Desired permission for executable files. Defaults to C<755>.
1852See also L<MM_Unix/perm_rwx>.
1853
864a5fa8 1854=item PL_FILES
8e07c86e 1855
864a5fa8 1856Ref to hash of files to be processed as perl programs. MakeMaker
1857will default to any found *.PL file (except Makefile.PL) being keys
1858and the basename of the file being the value. E.g.
8e07c86e 1859
864a5fa8 1860 {'foobar.PL' => 'foobar'}
8e07c86e 1861
864a5fa8 1862The *.PL files are expected to produce output to the target files
3aa35033 1863themselves. If multiple files can be generated from the same *.PL
1864file then the value in the hash can be a reference to an array of
1865target file names. E.g.
1866
1867 {'foobar.PL' => ['foobar1','foobar2']}
8e07c86e 1868
864a5fa8 1869=item PM
8e07c86e 1870
864a5fa8 1871Hashref of .pm files and *.pl files to be installed. e.g.
8e07c86e 1872
864a5fa8 1873 {'name_of_file.pm' => '$(INST_LIBDIR)/install_as.pm'}
8e07c86e 1874
a3cb178b 1875By default this will include *.pm and *.pl and the files found in
1876the PMLIBDIRS directories. Defining PM in the
864a5fa8 1877Makefile.PL will override PMLIBDIRS.
8e07c86e 1878
864a5fa8 1879=item PMLIBDIRS
8e07c86e 1880
864a5fa8 1881Ref to array of subdirectories containing library files. Defaults to
a3cb178b 1882[ 'lib', $(BASEEXT) ]. The directories will be scanned and I<any> files
864a5fa8 1883they contain will be installed in the corresponding location in the
1884library. A libscan() method can be used to alter the behaviour.
1885Defining PM in the Makefile.PL will override PMLIBDIRS.
8e07c86e 1886
e35b8f9e 1887(Where BASEEXT is the last component of NAME.)
1888
131aa089 1889=item PM_FILTER
1890
1891A filter program, in the traditional Unix sense (input from stdin, output
1892to stdout) that is passed on each .pm file during the build (in the
1893pm_to_blib() phase). It is empty by default, meaning no filtering is done.
1894
1895Great care is necessary when defining the command if quoting needs to be
1896done. For instance, you would need to say:
1897
1898 {'PM_FILTER' => 'grep -v \\"^\\#\\"'}
1899
1900to remove all the leading coments on the fly during the build. The
1901extra \\ are necessary, unfortunately, because this variable is interpolated
1902within the context of a Perl program built on the command line, and double
1903quotes are what is used with the -e switch to build that command line. The
1904# is escaped for the Makefile, since what is going to be generated will then
1905be:
1906
1907 PM_FILTER = grep -v \"^\#\"
1908
1909Without the \\ before the #, we'd have the start of a Makefile comment,
1910and the macro would be incorrectly defined.
1911
2aea4d40 1912=item POLLUTE
1913
1914Release 5.005 grandfathered old global symbol names by providing preprocessor
a7665c5e 1915macros for extension source compatibility. As of release 5.6, these
2aea4d40 1916preprocessor definitions are not available by default. The POLLUTE flag
1917specifies that the old names should still be defined:
1918
1919 perl Makefile.PL POLLUTE=1
1920
1921Please inform the module author if this is necessary to successfully install
a7665c5e 1922a module under 5.6 or later.
2aea4d40 1923
875fa795 1924=item PPM_INSTALL_EXEC
1925
20e08411 1926Name of the executable used to run C<PPM_INSTALL_SCRIPT> below. (e.g. perl)
875fa795 1927
1928=item PPM_INSTALL_SCRIPT
1929
1930Name of the script that gets executed by the Perl Package Manager after
1931the installation of a package.
1932
864a5fa8 1933=item PREFIX
8e07c86e 1934
f6d6199c 1935This overrides all the default install locations. Man pages,
1936libraries, scripts, etc... MakeMaker will try to make an educated
1937guess about where to place things under the new PREFIX based on your
1938Config defaults. Failing that, it will fall back to a structure
1939which should be sensible for your platform.
1940
1941If you specify LIB or any INSTALL* variables they will not be effected
1942by the PREFIX.
a4260cbc 1943
b2340c53 1944=item PREREQ_FATAL
1945
1946Bool. If this parameter is true, failing to have the required modules
1947(or the right versions thereof) will be fatal. perl Makefile.PL will die
1948with the proper message.
1949
1950Note: see L<Test::Harness> for a shortcut for stopping tests early if
1951you are missing dependencies.
1952
1953Do I<not> use this parameter for simple requirements, which could be resolved
1954at a later time, e.g. after an unsuccessful B<make test> of your module.
1955
1956It is I<extremely> rare to have to use C<PREREQ_FATAL> at all!
1957
d5d4ec93 1958=item PREREQ_PM
1959
1960Hashref: Names of modules that need to be available to run this
1961extension (e.g. Fcntl for SDBM_File) are the keys of the hash and the
1962desired version is the value. If the required version number is 0, we
1963only check if any version is installed already.
1964
88d69b28 1965=item PREREQ_PRINT
1966
1967Bool. If this parameter is true, the prerequisites will be printed to
1968stdout and MakeMaker will exit. The output format is
1969
1970$PREREQ_PM = {
1971 'A::B' => Vers1,
1972 'C::D' => Vers2,
1973 ...
1974 };
1975
1976=item PRINT_PREREQ
1977
1978RedHatism for C<PREREQ_PRINT>. The output format is different, though:
1979
1980 perl(A::B)>=Vers1 perl(C::D)>=Vers2 ...
1981
5c161494 1982=item SITEPREFIX
1983
479d2113 1984Like PERLPREFIX, but only for the site install locations.
1985
1986Defaults to $Config{siteprefixexp}. Perls prior to 5.6.0 didn't have
1987an explicit siteprefix in the Config. In those cases
1988$Config{installprefix} will be used.
5c161494 1989
479d2113 1990Overridable by PREFIX
5c161494 1991
864a5fa8 1992=item SKIP
8e07c86e 1993
da7f727a 1994Arrayref. E.g. [qw(name1 name2)] skip (do not write) sections of the
a7665c5e 1995Makefile. Caution! Do not use the SKIP attribute for the negligible
1996speedup. It may seriously damage the resulting Makefile. Only use it
f1387719 1997if you really need it.
8e07c86e 1998
864a5fa8 1999=item TYPEMAPS
8e07c86e 2000
864a5fa8 2001Ref to array of typemap file names. Use this when the typemaps are
2002in some directory other than the current directory or when they are
2003not named B<typemap>. The last typemap in the list takes
2004precedence. A typemap in the current directory has highest
2005precedence, even if it isn't listed in TYPEMAPS. The default system
2006typemap has lowest precedence.
8e07c86e 2007
5c161494 2008=item VENDORPREFIX
2009
479d2113 2010Like PERLPREFIX, but only for the vendor install locations.
2011
2012Defaults to $Config{vendorprefixexp}.
5c161494 2013
479d2113 2014Overridable by PREFIX
5c161494 2015
45bc4d3a 2016=item VERBINST
2017
2018If true, make install will be verbose
2019
864a5fa8 2020=item VERSION
8e07c86e 2021
864a5fa8 2022Your version number for distributing the package. This defaults to
20230.1.
8e07c86e 2024
0d8023a2 2025=item VERSION_FROM
2026
2027Instead of specifying the VERSION in the Makefile.PL you can let
2028MakeMaker parse a file to determine the version number. The parsing
2029routine requires that the file named by VERSION_FROM contains one
2030single line to compute the version number. The first line in the file
2031that contains the regular expression
2032
84902520 2033 /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/
0d8023a2 2034
2035will be evaluated with eval() and the value of the named variable
2036B<after> the eval() will be assigned to the VERSION attribute of the
2037MakeMaker object. The following lines will be parsed o.k.:
2038
2039 $VERSION = '1.00';
84902520 2040 *VERSION = \'1.01';
1b0fc073 2041 $VERSION = sprintf "%d.%03d", q$Revision: 1.124 $ =~ /(\d+)/g;
0d8023a2 2042 $FOO::VERSION = '1.10';
84902520 2043 *FOO::VERSION = \'1.11';
f6d6199c 2044 our $VERSION = 1.2.3; # new for perl5.6.0
0d8023a2 2045
2046but these will fail:
2047
2048 my $VERSION = '1.01';
2049 local $VERSION = '1.02';
2050 local $FOO::VERSION = '1.30';
2051
e35b8f9e 2052(Putting C<my> or C<local> on the preceding line will work o.k.)
2053
84902520 2054The file named in VERSION_FROM is not added as a dependency to
2055Makefile. This is not really correct, but it would be a major pain
2056during development to have to rewrite the Makefile for any smallish
2057change in that file. If you want to make sure that the Makefile
2058contains the correct VERSION macro after any change of the file, you
2059would have to do something like
2060
2061 depend => { Makefile => '$(VERSION_FROM)' }
2062
2063See attribute C<depend> below.
0d8023a2 2064
479d2113 2065=item VERSION_SYM
2066
2067A sanitized VERSION with . replaced by _. For places where . has
2068special meaning (some filesystems, RCS labels, etc...)
2069
864a5fa8 2070=item XS
8e07c86e 2071
864a5fa8 2072Hashref of .xs files. MakeMaker will default this. e.g.
8e07c86e 2073
864a5fa8 2074 {'name_of_file.xs' => 'name_of_file.c'}
8e07c86e 2075
864a5fa8 2076The .c files will automatically be included in the list of files
2077deleted by a make clean.
4633a7c4 2078
864a5fa8 2079=item XSOPT
8e07c86e 2080
864a5fa8 2081String of options to pass to xsubpp. This might include C<-C++> or
2082C<-extern>. Do not include typemaps here; the TYPEMAP parameter exists for
2083that purpose.
8e07c86e 2084
864a5fa8 2085=item XSPROTOARG
4633a7c4 2086
4e68a208 2087May be set to an empty string, which is identical to C<-prototypes>, or
864a5fa8 2088C<-noprototypes>. See the xsubpp documentation for details. MakeMaker
4e68a208 2089defaults to the empty string.
2090
0d8023a2 2091=item XS_VERSION
2092
2093Your version number for the .xs file of this package. This defaults
2094to the value of the VERSION attribute.
2095
8e07c86e 2096=back
2097
2098=head2 Additional lowercase attributes
2099
2100can be used to pass parameters to the methods which implement that
531e2ba1 2101part of the Makefile. Parameters are specified as a hash ref but are
2102passed to the method as a hash.
8e07c86e 2103
2104=over 2
2105
864a5fa8 2106=item clean
8e07c86e 2107
864a5fa8 2108 {FILES => "*.xyz foo"}
2109
c07a80fd 2110=item depend
2111
2112 {ANY_TARGET => ANY_DEPENDECY, ...}
2113
e35b8f9e 2114(ANY_TARGET must not be given a double-colon rule by MakeMaker.)
2115
864a5fa8 2116=item dist
2117
5f8e730b 2118 {TARFLAGS => 'cvfF', COMPRESS => 'gzip', SUFFIX => '.gz',
3b03c0f3 2119 SHAR => 'shar -m', DIST_CP => 'ln', ZIP => '/bin/zip',
f1387719 2120 ZIPFLAGS => '-rl', DIST_DEFAULT => 'private tardist' }
864a5fa8 2121
2122If you specify COMPRESS, then SUFFIX should also be altered, as it is
2123needed to tell make the target file of the compression. Setting
2124DIST_CP to ln can be useful, if you need to preserve the timestamps on
2125your files. DIST_CP can take the values 'cp', which copies the file,
2126'ln', which links the file, and 'best' which copies symbolic links and
2127links the rest. Default is 'best'.
2128
2129=item dynamic_lib
2130
0d8023a2 2131 {ARMAYBE => 'ar', OTHERLDFLAGS => '...', INST_DYNAMIC_DEP => '...'}
8e07c86e 2132
8e07c86e 2133=item linkext
2134
2135 {LINKTYPE => 'static', 'dynamic' or ''}
2136
864a5fa8 2137NB: Extensions that have nothing but *.pm files had to say
8e07c86e 2138
2139 {LINKTYPE => ''}
2140
864a5fa8 2141with Pre-5.0 MakeMakers. Since version 5.00 of MakeMaker such a line
a7665c5e 2142can be deleted safely. MakeMaker recognizes when there's nothing to
864a5fa8 2143be linked.
8e07c86e 2144
864a5fa8 2145=item macro
8e07c86e 2146
864a5fa8 2147 {ANY_MACRO => ANY_VALUE, ...}
8e07c86e 2148
531e2ba1 2149=item postamble
2150
2151Anything put here will be passed to MY::postamble() if you have one.
2152
8e07c86e 2153=item realclean
2154
2155 {FILES => '$(INST_ARCHAUTODIR)/*.xyz'}
2156
f2f614a6 2157=item test
2158
2159 {TESTS => 't/*.t'}
2160
8e07c86e 2161=item tool_autosplit
2162
f2f614a6 2163 {MAXLEN => 8}
005c1a0e 2164
2165=back
2166
2167=head2 Overriding MakeMaker Methods
2168
2169If you cannot achieve the desired Makefile behaviour by specifying
2170attributes you may define private subroutines in the Makefile.PL.
e0678a30 2171Each subroutine returns the text it wishes to have written to
005c1a0e 2172the Makefile. To override a section of the Makefile you can
2173either say:
2174
f6d6199c 2175 sub MY::c_o { "new literal text" }
005c1a0e 2176
2177or you can edit the default by saying something like:
2178
e0678a30 2179 package MY; # so that "SUPER" works right
2180 sub c_o {
f6d6199c 2181 my $inherited = shift->SUPER::c_o(@_);
2182 $inherited =~ s/old text/new text/;
2183 $inherited;
2184 }
8e07c86e 2185
bdda3fbd 2186If you are running experiments with embedding perl as a library into
2187other applications, you might find MakeMaker is not sufficient. You'd
2188better have a look at ExtUtils::Embed which is a collection of utilities
2189for embedding.
005c1a0e 2190
2191If you still need a different solution, try to develop another
bdda3fbd 2192subroutine that fits your needs and submit the diffs to
e0678a30 2193F<makemaker@perl.org>
005c1a0e 2194
e0678a30 2195For a complete description of all MakeMaker methods see
2196L<ExtUtils::MM_Unix>.
3b03c0f3 2197
2198Here is a simple example of how to add a new target to the generated
2199Makefile:
2200
2201 sub MY::postamble {
e0678a30 2202 return <<'MAKE_FRAG';
3b03c0f3 2203 $(MYEXTLIB): sdbm/Makefile
f6d6199c 2204 cd sdbm && $(MAKE) all
e0678a30 2205
2206 MAKE_FRAG
3b03c0f3 2207 }
2208
a884ca7c 2209=head2 The End Of Cargo Cult Programming
2210
2211WriteMakefile() now does some basic sanity checks on its parameters to
2212protect against typos and malformatted values. This means some things
2213which happened to work in the past will now throw warnings and
2214possibly produce internal errors.
2215
2216Some of the most common mistakes:
2217
2218=over 2
2219
2220=item C<<MAN3PODS => ' '>>
2221
2222This is commonly used to supress the creation of man pages. MAN3PODS
2223takes a hash ref not a string, but the above worked by accident in old
2224versions of MakeMaker.
2225
2226The correct code is C<<MAN3PODS => { }>>.
2227
2228=back
2229
3b03c0f3 2230
f1387719 2231=head2 Hintsfile support
2232
2233MakeMaker.pm uses the architecture specific information from
2234Config.pm. In addition it evaluates architecture specific hints files
2235in a C<hints/> directory. The hints files are expected to be named
2236like their counterparts in C<PERL_SRC/hints>, but with an C<.pl> file
2237name extension (eg. C<next_3_2.pl>). They are simply C<eval>ed by
2238MakeMaker within the WriteMakefile() subroutine, and can be used to
2239execute commands as well as to include special variables. The rules
2240which hintsfile is chosen are the same as in Configure.
2241
2242The hintsfile is eval()ed immediately after the arguments given to
2243WriteMakefile are stuffed into a hash reference $self but before this
2244reference becomes blessed. So if you want to do the equivalent to
2245override or create an attribute you would say something like
2246
2247 $self->{LIBS} = ['-ldbm -lucb -lc'];
2248
005c1a0e 2249=head2 Distribution Support
2250
2251For authors of extensions MakeMaker provides several Makefile
2252targets. Most of the support comes from the ExtUtils::Manifest module,
2253where additional documentation can be found.
2254
2255=over 4
2256
2257=item make distcheck
8e07c86e 2258
005c1a0e 2259reports which files are below the build directory but not in the
2260MANIFEST file and vice versa. (See ExtUtils::Manifest::fullcheck() for
2261details)
2262
4633a7c4 2263=item make skipcheck
2264
2265reports which files are skipped due to the entries in the
2266C<MANIFEST.SKIP> file (See ExtUtils::Manifest::skipcheck() for
2267details)
2268
005c1a0e 2269=item make distclean
8e07c86e 2270
005c1a0e 2271does a realclean first and then the distcheck. Note that this is not
a7665c5e 2272needed to build a new distribution as long as you are sure that the
005c1a0e 2273MANIFEST file is ok.
2274
2275=item make manifest
8e07c86e 2276
005c1a0e 2277rewrites the MANIFEST file, adding all remaining files found (See
2278ExtUtils::Manifest::mkmanifest() for details)
2279
2280=item make distdir
8e07c86e 2281
005c1a0e 2282Copies all the files that are in the MANIFEST file to a newly created
2283directory with the name C<$(DISTNAME)-$(VERSION)>. If that directory
2284exists, it will be removed first.
2285
1df8d179 2286Additionally, it will create a META.yml module meta-data file and add
2287this to your MANFIEST. You can shut this behavior off with the NO_META
2288flag.
2289
f6d6199c 2290=item make disttest
8e07c86e 2291
2292Makes a distdir first, and runs a C<perl Makefile.PL>, a make, and
4633a7c4 2293a make test in that directory.
8e07c86e 2294
005c1a0e 2295=item make tardist
8e07c86e 2296
3b03c0f3 2297First does a distdir. Then a command $(PREOP) which defaults to a null
f1387719 2298command, followed by $(TOUNIX), which defaults to a null command under
2299UNIX, and will convert files in distribution directory to UNIX format
2300otherwise. Next it runs C<tar> on that directory into a tarfile and
3b03c0f3 2301deletes the directory. Finishes with a command $(POSTOP) which
2302defaults to a null command.
005c1a0e 2303
2304=item make dist
8e07c86e 2305
005c1a0e 2306Defaults to $(DIST_DEFAULT) which in turn defaults to tardist.
2307
2308=item make uutardist
8e07c86e 2309
005c1a0e 2310Runs a tardist first and uuencodes the tarfile.
2311
2312=item make shdist
8e07c86e 2313
3b03c0f3 2314First does a distdir. Then a command $(PREOP) which defaults to a null
2315command. Next it runs C<shar> on that directory into a sharfile and
2316deletes the intermediate directory again. Finishes with a command
2317$(POSTOP) which defaults to a null command. Note: For shdist to work
2318properly a C<shar> program that can handle directories is mandatory.
2319
2320=item make zipdist
2321
2322First does a distdir. Then a command $(PREOP) which defaults to a null
2323command. Runs C<$(ZIP) $(ZIPFLAGS)> on that directory into a
2324zipfile. Then deletes that directory. Finishes with a command
2325$(POSTOP) which defaults to a null command.
005c1a0e 2326
2327=item make ci
8e07c86e 2328
2329Does a $(CI) and a $(RCS_LABEL) on all files in the MANIFEST file.
2330
2331=back
005c1a0e 2332
2333Customization of the dist targets can be done by specifying a hash
2334reference to the dist attribute of the WriteMakefile call. The
2335following parameters are recognized:
2336
8e07c86e 2337 CI ('ci -u')
5f8e730b 2338 COMPRESS ('gzip --best')
005c1a0e 2339 POSTOP ('@ :')
8e07c86e 2340 PREOP ('@ :')
f1387719 2341 TO_UNIX (depends on the system)
8e07c86e 2342 RCS_LABEL ('rcs -q -Nv$(VERSION_SYM):')
2343 SHAR ('shar')
5f8e730b 2344 SUFFIX ('.gz')
8e07c86e 2345 TAR ('tar')
2346 TARFLAGS ('cvf')
3b03c0f3 2347 ZIP ('zip')
2348 ZIPFLAGS ('-r')
005c1a0e 2349
2350An example:
2351
5f8e730b 2352 WriteMakefile( 'dist' => { COMPRESS=>"bzip2", SUFFIX=>".bz2" })
005c1a0e 2353
1df8d179 2354
2355=head2 Module Meta-Data
2356
2357Long plaguing users of MakeMaker based modules has been the problem of
2358getting basic information about the module out of the sources
2359I<without> running the F<Makefile.PL> and doing a bunch of messy
2360heuristics on the resulting F<Makefile>. To this end a simple module
2361meta-data file has been introduced, F<META.yml>.
2362
2363F<META.yml> is a YAML document (see http://www.yaml.org) containing
2364basic information about the module (name, version, prerequisites...)
2365in an easy to read format. The format is developed and defined by the
2366Module::Build developers.
2367
2368MakeMaker will automatically generate a F<META.yml> file for you and
2369add it to your F<MANIFEST> as part of the 'distdir' target (and thus
2370the 'dist' target). This is intended to seamlessly and rapidly
2371populate CPAN with module meta-data. If you wish to shut this feature
2372off, set the C<NO_META> C<WriteMakefile()> flag to true.
2373
2374
1b171b8d 2375=head2 Disabling an extension
2376
2377If some events detected in F<Makefile.PL> imply that there is no way
2378to create the Module, but this is a normal state of things, then you
2379can create a F<Makefile> which does nothing, but succeeds on all the
2380"usual" build targets. To do so, use
2381
2382 ExtUtils::MakeMaker::WriteEmptyMakefile();
2383
2384instead of WriteMakefile().
2385
2386This may be useful if other modules expect this module to be I<built>
2387OK, as opposed to I<work> OK (say, this system-dependent module builds
2388in a subdirectory of some other distribution, or is listed as a
2389dependency in a CPAN::Bundle, but the functionality is supported by
2390different means on the current architecture).
2391
479d2113 2392=head2 Other Handy Functions
2393
2394=over 4
2395
2396=item prompt
2397
2398 my $value = prompt($message);
2399 my $value = prompt($message, $default);
2400
2401The C<prompt()> function provides an easy way to request user input
2402used to write a makefile. It displays the $message as a prompt for
2403input. If a $default is provided it will be used as a default. The
2404function returns the $value selected by the user.
2405
2406If C<prompt()> detects that it is not running interactively and there
2407is nothing on STDIN or if the PERL_MM_USE_DEFAULT environment variable
2408is set to true, the $default will be used without prompting. This
2409prevents automated processes from blocking on user input.
2410
2411If no $default is provided an empty string will be used instead.
2412
2413=back
2414
2415
6ce21ffa 2416=head1 ENVIRONMENT
2417
479d2113 2418=over 4
6ce21ffa 2419
2443aee5 2420=item PERL_MM_OPT
6ce21ffa 2421
2422Command line options used by C<MakeMaker-E<gt>new()>, and thus by
2423C<WriteMakefile()>. The string is split on whitespace, and the result
2424is processed before any actual command line arguments are processed.
2425
9d05ba64 2426=item PERL_MM_USE_DEFAULT
2427
2428If set to a true value then MakeMaker's prompt function will
2429always return the default without waiting for user input.
2430
6ce21ffa 2431=back
2432
f1387719 2433=head1 SEE ALSO
2434
f6d6199c 2435ExtUtils::MM_Unix, ExtUtils::Manifest ExtUtils::Install,
2436ExtUtils::Embed
005c1a0e 2437
e05e23b1 2438=head1 AUTHORS
fed7345c 2439
e0678a30 2440Andy Dougherty <F<doughera@lafayette.edu>>, Andreas KE<ouml>nig
2441<F<andreas.koenig@mind.de>>, Tim Bunce <F<timb@cpan.org>>. VMS
de90321e 2442support by Charles Bailey <F<bailey@newman.upenn.edu>>. OS/2 support
2443by Ilya Zakharevich <F<ilya@math.ohio-state.edu>>.
2444
f6d6199c 2445Currently maintained by Michael G Schwern <F<schwern@pobox.com>>
2446
2447Send patches and ideas to <F<makemaker@perl.org>>.
e8012c20 2448
e0678a30 2449Send bug reports via http://rt.cpan.org/. Please send your
2450generated Makefile along with your report.
2451
2452For more up-to-date information, see http://www.makemaker.org.
fed7345c 2453
479d2113 2454=head1 LICENSE
2455
2456This program is free software; you can redistribute it and/or
2457modify it under the same terms as Perl itself.
2458
2459See F<http://www.perl.com/perl/misc/Artistic.html>
2460
2461
005c1a0e 2462=cut