diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-08 06:49:35 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-03-08 06:49:35 +0000 |
commit | 9ad884cb5e6c71bf010defc627075ba1610c8eba (patch) | |
tree | adb716aaf185adbec8be8741a5acf1378fcb59dd /Makefile.SH | |
parent | ab9e1bb794a9b6411f23a7479a1d2f0b62d91d9e (diff) | |
download | perl-9ad884cb5e6c71bf010defc627075ba1610c8eba.tar.gz |
regen_headers tiny tidying:
- regen.pl renamed as regen_lib.pl
- regen_headers.pl renamed as regen.pl
- added make target 'regen' (kept target 'regen_headers'
for porters' brains' backward compatibility)
- regen.pl fancified a bit to display the names
of the files that got changed by running the scripts
p4raw-id: //depot/perl@18851
Diffstat (limited to 'Makefile.SH')
-rw-r--r-- | Makefile.SH | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.SH b/Makefile.SH index cd18ffb49f..23ebd77fa4 100644 --- a/Makefile.SH +++ b/Makefile.SH @@ -812,20 +812,20 @@ SYMH = perlvars.h intrpvar.h thrdvar.h CHMOD_W = chmod +w # The following files are generated automatically -# keywords.pl: keywords.h -# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym -# [* embed.pl needs pp.sym generated by opcode.pl! *] -# embed.pl: proto.h embed.h embedvar.h global.sym -# perlapi.h perlapi.c pod/perlintern.pod -# pod/perlapi.pod +# autodoc.pl: pod/perlapi.pod pod/perlintern.pod # bytecode.pl: ext/ByteLoader/byterun.h ext/ByteLoader/byterun.c # ext/B/B/Asmdata.pm +# embed.pl: proto.h embed.h embedvar.h global.sym +# perlapi.h perlapi.c +# [* embed.pl needs pp.sym generated by opcode.pl! *] +# keywords.pl: keywords.h +# opcode.pl: opcode.h opnames.h pp_proto.h pp.sym # regcomp.pl: regnodes.h # warnings.pl: warnings.h lib/warnings.pm # The correct versions should be already supplied with the perl kit, # in case you don't have perl available. # To force them to be regenerated, run -# perl regen_headers.pl +# perl regen.pl # with your existing copy of perl # (make regen_headers is kept for backwards compatibility) @@ -838,13 +838,13 @@ AUTOGEN_FILES = keywords.h opcode.h opnames.h pp_proto.h pp.sym proto.h \ .PHONY: regen_headers regen_pods regen_all -regen_headers: FORCE - -perl regen_headers.pl +regen regen_headers: FORCE + -perl regen.pl regen_pods: FORCE -cd pod; $(LDLIBPTH) $(MAKE) regen_pods -regen_all: $(PERLYVMS) regen_headers regen_pods +regen_all: $(PERLYVMS) regen regen_pods # Extensions: # Names added to $(dynamic_ext) or $(static_ext) or $(nonxs_ext) will |