This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.003_06: pod/perlre.pod
[perl5.git] / pod / Makefile
index ebe4f17..564a63a 100644 (file)
@@ -1,10 +1,11 @@
-CONVERTERS = pod2html pod2latex pod2man pod2text
+CONVERTERS = pod2html pod2latex pod2man pod2text checkpods
 
 all: $(CONVERTERS) man
 PERL = ../miniperl
 
 POD =  \
        perl.pod        \
+       perlapio.pod    \
        perlbook.pod    \
        perlbot.pod     \
        perlcall.pod    \
@@ -16,6 +17,7 @@ POD =         \
        perlform.pod    \
        perlfunc.pod    \
        perlguts.pod    \
+       perli18n.pod    \
        perlipc.pod     \
        perllol.pod     \
        perlmod.pod     \
@@ -39,6 +41,7 @@ POD =         \
 
 MAN =  \
        perl.man        \
+       perlapio.man    \
        perlbook.man    \
        perlbot.man     \
        perlcall.man    \
@@ -50,6 +53,7 @@ MAN =         \
        perlform.man    \
        perlfunc.man    \
        perlguts.man    \
+       perli18n.man    \
        perlipc.man     \
        perllol.man     \
        perlmod.man     \
@@ -73,6 +77,7 @@ MAN =         \
 
 HTML =         \
        perl.html       \
+       perlapio.html   \
        perlbook.html   \
        perlbot.html    \
        perlcall.html   \
@@ -84,6 +89,7 @@ HTML =        \
        perlform.html   \
        perlfunc.html   \
        perlguts.html   \
+       perli18n.html   \
        perlipc.html    \
        perllol.html    \
        perlmod.html    \
@@ -107,6 +113,7 @@ HTML =      \
 
 TEX =  \
        perl.tex        \
+       perlapio.tex    \
        perlbook.tex    \
        perlbot.tex     \
        perlcall.tex    \
@@ -118,6 +125,7 @@ TEX =       \
        perlform.tex    \
        perlfunc.tex    \
        perlguts.tex    \
+       perli18n.tex    \
        perlipc.tex     \
        perllol.tex     \
        perlmod.tex     \
@@ -139,7 +147,7 @@ TEX =       \
        perlxs.tex      \
        perlxstut.tex
 
-man:   pod2man ($MAN)
+man:  pod2man $(MAN)
 
 # pod2html normally runs on all the pods at once in order to build up
 # cross-references.
@@ -180,6 +188,10 @@ realclean: clean
 
 distclean:     realclean
 
+check: checkpods
+       @echo "checking..."; \
+       $(PERL) -I../lib checkpods $(POD)
+
 # Dependencies.
 pod2latex:     pod2latex.PL ../lib/Config.pm
        $(PERL) -I../lib pod2latex.PL
@@ -192,3 +204,8 @@ pod2man:    pod2man.PL ../lib/Config.pm
 
 pod2text:      pod2text.PL ../lib/Config.pm
        $(PERL) -I ../lib pod2text.PL
+
+checkpods:     checkpods.PL ../lib/Config.pm
+       $(PERL) -I ../lib checkpods.PL
+
+