summaryrefslogtreecommitdiff
path: root/pod
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafcol.lafayette.edu>1995-04-18 01:06:04 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1995-04-18 01:06:04 +0000
commitf0b7e567eb499713477c3eec4806ba74015e12df (patch)
tree5e477773bbd88ff38d2f0978ce5f3deeb7ee4119 /pod
parent5d94fbed3754780f11eb4db2d2379544cacb60e1 (diff)
downloadperl-f0b7e567eb499713477c3eec4806ba74015e12df.tar.gz
perl5.001 patch.1e
Here's what's included: Configure Change a few more spots so that ' ' is equivalent to "none". This allows hint files to set empty values for variables. Split cpp-symbol awk command for old awk (Harris Night Hawk). hints/irix_5.sh hints/irix_6.sh Explicitly use 'ld' rather than 'cc' to build dynamic modules. hints/linux.sh Allow users to specify an alternate compiler on the command line, e.g. Configure -Dcc=gcc-elf. lib/ExtUtils/MakeMaker.pm Fix CC substitution to allow c++ and variants as well. perl.c fputs("Unofficial patchlevel 1e.\n",stdout); pod/Makefile Include $(TEX) target for running pod2latex. Include some fixes from Bill Middleton.
Diffstat (limited to 'pod')
-rw-r--r--pod/Makefile51
1 files changed, 44 insertions, 7 deletions
diff --git a/pod/Makefile b/pod/Makefile
index 47fc2e9512..fa16e2ce9d 100644
--- a/pod/Makefile
+++ b/pod/Makefile
@@ -89,25 +89,62 @@ HTML = \
perltrap.html \
perlvar.html
-man: $(MAN)
-
-# pod2html runs on all the pods at once in order to build up
+TEX = \
+ perl.tex \
+ perlapi.tex \
+ perlbook.tex \
+ perlbot.tex \
+ perlcall.tex \
+ perldata.tex \
+ perldebug.tex \
+ perldiag.tex \
+ perlembed.tex \
+ perlform.tex \
+ perlfunc.tex \
+ perlguts.tex \
+ perlipc.tex \
+ perlmod.tex \
+ perlobj.tex \
+ perlop.tex \
+ perlovl.tex \
+ perlpod.tex \
+ perlre.tex \
+ perlref.tex \
+ perlrun.tex \
+ perlsec.tex \
+ perlstyle.tex \
+ perlsub.tex \
+ perlsyn.tex \
+ perltrap.tex \
+ perlvar.tex
+
+
+man: pod2man $(MAN)
+
+# pod2html normally runs on all the pods at once in order to build up
# cross-references.
-html:
+html: pod2html
$(PERL) pod2html *.pod
+tex: pod2latex $(TEX)
+
.SUFFIXES: .pod .man
-.pod.man:
+.pod.man: pod2man
$(PERL) pod2man $*.pod >$*.man
.SUFFIXES: .pod .html
-.pod.html:
+.pod.html: pod2html
$(PERL) pod2html $*.pod
+.SUFFIXES: .pod .tex
+
+.pod.tex: pod2latex
+ $(PERL) pod2latex $*.pod
+
clean:
- rm -f $(MAN) $(HTML)
+ rm -f $(MAN) $(HTML) $(TEX)
realclean: clean
rm -f pod2man pod2latex pod2html