diff options
author | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
---|---|---|
committer | Larry Wall <lwall@netlabs.com> | 1994-10-17 23:00:00 +0000 |
commit | a0d0e21ea6ea90a22318550944fe6cb09ae10cda (patch) | |
tree | faca1018149b736b1142f487e44d1ff2de5cc1fa /pod/Makefile | |
parent | 85e6fe838fb25b257a1b363debf8691c0992ef71 (diff) | |
download | perl-a0d0e21ea6ea90a22318550944fe6cb09ae10cda.tar.gz |
perl 5.000perl-5.000
[editor's note: this commit combines approximate 4 months of furious
releases of Andy Dougherty and Larry Wall - see pod/perlhist.pod for
details. Andy notes that;
Alas neither my "Irwin AccuTrack" nor my DC 600A quarter-inch cartridge
backup tapes from that era seem to be readable anymore. I guess 13 years
exceeds the shelf life for that backup technology :-(.
]
Diffstat (limited to 'pod/Makefile')
-rw-r--r-- | pod/Makefile | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/pod/Makefile b/pod/Makefile new file mode 100644 index 0000000000..d96fd7da3e --- /dev/null +++ b/pod/Makefile @@ -0,0 +1,106 @@ +all: man + +POD = \ + perl.pod \ + perlapi.pod \ + perlbook.pod \ + perlbot.pod \ + perlcall.pod \ + perldata.pod \ + perldebug.pod \ + perldiag.pod \ + perlembed.pod \ + perlform.pod \ + perlfunc.pod \ + perlguts.pod \ + perlipc.pod \ + perlmod.pod \ + perlobj.pod \ + perlop.pod \ + perlovl.pod \ + perlpod.pod \ + perlre.pod \ + perlref.pod \ + perlrun.pod \ + perlsec.pod \ + perlstyle.pod \ + perlsub.pod \ + perlsyn.pod \ + perltrap.pod \ + perlvar.pod + +MAN = \ + perl.man \ + perlapi.man \ + perlbook.man \ + perlbot.man \ + perlcall.man \ + perldata.man \ + perldebug.man \ + perldiag.man \ + perlembed.man \ + perlform.man \ + perlfunc.man \ + perlguts.man \ + perlipc.man \ + perlmod.man \ + perlobj.man \ + perlop.man \ + perlovl.man \ + perlpod.man \ + perlre.man \ + perlref.man \ + perlrun.man \ + perlsec.man \ + perlstyle.man \ + perlsub.man \ + perlsyn.man \ + perltrap.man \ + perlvar.man + +HTML = \ + perl.html \ + perlapi.html \ + perlbook.html \ + perlbot.html \ + perlcall.html \ + perldata.html \ + perldebug.html \ + perldiag.html \ + perlembed.html \ + perlform.html \ + perlfunc.html \ + perlguts.html \ + perlipc.html \ + perlmod.html \ + perlobj.html \ + perlop.html \ + perlovl.html \ + perlpod.html \ + perlre.html \ + perlref.html \ + perlrun.html \ + perlsec.html \ + perlstyle.html \ + perlsub.html \ + perlsyn.html \ + perltrap.html \ + perlvar.html + +man: $(MAN) + +html: $(HTML) + +.SUFFIXES: .pod .man + +.pod.man: + ../miniperl pod2man $*.pod >$*.man + +.SUFFIXES: .pod .html + +.pod.html: + ../miniperl pod2html $*.pod >$*.html + +clean: + rm -f $(MAN) $(HTML) + |