This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add the URL for annotated svn of S03.
[perl5.git] / regen.pl
... / ...
CommitLineData
1#!/usr/bin/perl -w
2require 5.003; # keep this compatible, an old perl is all we may have before
3 # we build the new one
4
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
9# anything else.
10
11use strict;
12my $perl = $^X;
13
14# keep warnings.pl in sync with the CPAN distribution by not requiring core
15# changes. Um, what ?
16# safer_unlink ("warnings.h", "lib/warnings.pm");
17
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?
20
21my %gen = (
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]],
31 );
32
33sub do_cksum {
34 my $pl = shift;
35 my %cksum;
36 for my $f (@{ $gen{$pl} }) {
37 local *FH;
38 if (open(FH, $f)) {
39 local $/;
40 $cksum{$f} = unpack("%32C*", <FH>);
41 close FH;
42 } else {
43 warn "$0: $f: $!\n";
44 }
45 }
46 return %cksum;
47}
48
49# this puts autodoc.pl last, which can be useful as it reads reentr.c
50foreach my $pl (reverse sort keys %gen) {
51 my @command = ($^X, $pl, @ARGV);
52 print "@command\n";
53 system @command;
54}