summaryrefslogtreecommitdiff
path: root/pod/Makefile
diff options
context:
space:
mode:
authorPerl 5 Porters <perl5-porters@africa.nicoh.com>1996-09-08 23:26:45 +0000
committerAndy Dougherty <doughera@lafcol.lafayette.edu>1996-09-08 23:26:45 +0000
commit3ad621c01ccc5670e9efa783bdbe434d39468936 (patch)
tree8b111c9553389349f0a8f7f8f1adb2e29944078a /pod/Makefile
parentc7ae39e52c720f8479971d43d75d9d3689d93064 (diff)
downloadperl-3ad621c01ccc5670e9efa783bdbe434d39468936.tar.gz
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).
Diffstat (limited to 'pod/Makefile')
-rw-r--r--pod/Makefile11
1 files changed, 10 insertions, 1 deletions
diff --git a/pod/Makefile b/pod/Makefile
index bfe6c8edad..330dfa64d7 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
+
+