2 require 5.003; # keep this compatible, an old perl is all we may have before
5 # The idea is to move the regen_headers target out of the Makefile so that
6 # it is possible to rebuild the headers before the Makefile is available.
7 # (and the Makefile is unavailable until after Configure is run, and we may
8 # wish to make a clean source tree but with current headers without running
14 # keep warnings.pl in sync with the CPAN distribution by not requiring core
16 # safer_unlink ("warnings.h", "lib/warnings.pm");
18 # We no longer need the values on this mapping, as the "changed" message is
19 # now generated by regen_lib.pl, so should we just drop them?
22 'autodoc.pl' => [qw[pod/perlapi.pod pod/perlintern.pod]],
23 'embed.pl' => [qw[proto.h embed.h embedvar.h global.sym
24 perlapi.h perlapi.c]],
25 'keywords.pl' => [qw[keywords.h]],
26 'opcode.pl' => [qw[opcode.h opnames.h pp_proto.h pp.sym]],
27 'regcomp.pl' => [qw[regnodes.h]],
28 'warnings.pl' => [qw[warnings.h lib/warnings.pm]],
29 'reentr.pl' => [qw[reentr.c reentr.h]],
30 'overload.pl' => [qw[overload.c overload.h]],
36 for my $f (@{ $gen{$pl} }) {
40 $cksum{$f} = unpack("%32C*", <FH>);
49 # this puts autodoc.pl last, which can be useful as it reads reentr.c
50 foreach my $pl (reverse sort keys %gen) {
51 my @command = ($^X, $pl, @ARGV);