From: Perl 5 Porters Date: Sun, 8 Sep 1996 23:26:45 +0000 (+0000) Subject: perl 5.003_05: pod/Makefile X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=3ad621c01ccc5670e9efa783bdbe434d39468936;p=p5sagit%2Fp5-mst-13.2.git perl 5.003_05: pod/Makefile Remove trailing spaces in pods. Include a call to the checkpods script in the Makefile (though it's not ordinarily used by users). --- diff --git a/pod/Makefile b/pod/Makefile index bfe6c8e..330dfa6 100644 --- a/pod/Makefile +++ b/pod/Makefile @@ -1,4 +1,4 @@ -CONVERTERS = pod2html pod2latex pod2man pod2text +CONVERTERS = pod2html pod2latex pod2man pod2text checkpods all: $(CONVERTERS) man PERL = ../miniperl @@ -180,6 +180,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 +196,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 + +