This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perldiag: Fix typo
[perl5.git] / utils / Makefile.PL
CommitLineData
145bbcac
NC
1#!./miniperl -w
2use strict;
3use Config;
4
5if (@ARGV) {
6 my $dir = shift;
7 chdir $dir or die "Can't chdir '$dir': $!";
8}
9
0827416d
NC
10# Note, the generated utils/Makefile isn't used by VMS yet.
11# The next step on cleaning this is up is probably to work to reduce the size
12# of the "problem" in both this file and vms/descrip_mms.template by
13# attempting to move the work from them to the extension directories and
14# ExtUtils::MakeMaker.
15
145bbcac
NC
16require 'regen/regen_lib.pl';
17
18my $target = 'utils/Makefile';
19print "Extracting $target (with variable substitutions)\n";
0827416d 20my $fh = open_new($target, undef, {by => $0}, 1);
145bbcac 21
939767c9
AD
22# These use the Cwd extension. For statically-built perls, we
23# need perl, not just miniperl.
145bbcac
NC
24my $perl = defined $Config{usedl} ? '../miniperl' : '../perl';
25
26print $fh <<"EOT";
939767c9 27PERL = $perl
52cebf5e 28REALPERL = ../perl
d708ee4b 29RUN = # Used mainly cross-compilation setups.
6d4b7d88 30
145bbcac 31EOT
6d4b7d88 32
145bbcac 33print $fh <<'EOT';
1756d26f 34
35# Files to be built with variable substitution after miniperl is
36# available. Dependencies handled manually below (for now).
37
2ea3abd4
RS
38pl = c2ph.PL corelist.PL cpan.PL h2ph.PL h2xs.PL instmodsh.PL json_pp.PL perlbug.PL perldoc.PL perlivp.PL pl2pm.PL prove.PL ptar.PL ptardiff.PL ptargrep.PL shasum.PL splain.PL libnetcfg.PL piconv.PL enc2xs.PL xsubpp.PL pod2html.PL zipdetails.PL
39plextract = c2ph corelist cpan h2ph h2xs instmodsh json_pp perlbug perldoc perlivp pl2pm prove ptar ptardiff ptargrep shasum splain libnetcfg piconv enc2xs xsubpp pod2html zipdetails
40plextractexe = ./c2ph ./corelist ./cpan ./h2ph ./h2xs ./json_pp ./instmodsh ./perlbug ./perldoc ./perlivp ./pl2pm ./prove ./ptar ./ptardiff ./ptargrep ./shasum ./splain ./libnetcfg ./piconv ./enc2xs ./xsubpp ./pod2html ./zipdetails
1756d26f 41
52cebf5e
EP
42all: $(plextract)
43
1756d26f 44$(plextract):
6d4b7d88 45 $(RUN) $(PERL) -I../lib $@.PL
1756d26f 46
84902520 47c2ph: c2ph.PL ../config.sh
774d564b 48
ce28de53
RGS
49cpan: cpan.PL ../config.sh
50
8f2fd531
JB
51corelist: corelist.PL ../config.sh
52
84902520 53h2ph: h2ph.PL ../config.sh
774d564b 54
84902520 55h2xs: h2xs.PL ../config.sh
32ea9a2a 56
a55f9fbc
RGS
57instmodsh: instmodsh.PL ../config.sh
58
bdec6fb9
MH
59json_pp: json_pp.PL ../config.sh
60
84902520 61perlbug: perlbug.PL ../config.sh ../patchlevel.h
774d564b 62
84902520 63perldoc: perldoc.PL ../config.sh
774d564b 64
cdf8b154
PK
65perlivp: perlivp.PL ../config.sh
66
e4fc8a1e
RGS
67prove: prove.PL ../config.sh
68
291d3373
RGS
69ptar: ptar.PL ../config.sh
70
b8669316
RGS
71ptardiff: ptardiff.PL ../config.sh
72
deabda19
CBW
73ptargrep: ptargrep.PL ../config.sh
74
84902520 75pl2pm: pl2pm.PL ../config.sh
774d564b 76
6bc89f92
SP
77shasum: shasum.PL ../config.sh
78
84902520 79splain: splain.PL ../config.sh ../lib/diagnostics.pm
5f05dabc 80
406c51ee
JH
81libnetcfg: libnetcfg.PL ../config.sh
82
3e06bf43
JH
83piconv: piconv.PL ../config.sh
84
5d437a65
JH
85enc2xs: enc2xs.PL ../config.sh
86
a55f9fbc
RGS
87xsubpp: xsubpp.PL ../config.sh
88
08ad9465
CBW
89zipdetails: zipdetails.PL ../config.sh
90
d658129c
FR
91pod2html: pod2html.PL ../config.sh ../ext/Pod-Html/bin/pod2html
92
1756d26f 93clean:
94
95realclean:
52cebf5e 96 rm -rf $(plextract) pstruct $(plextractexe)
bb0110d4 97 rm -f ../t/_h2ph_pre.ph
1756d26f 98
99clobber: realclean
100
101distclean: clobber
2edbd6da
JH
102
103veryclean: distclean
104 -rm -f *~ *.org
145bbcac
NC
105EOT
106
0827416d 107read_only_bottom_close_and_rename($fh);