summaryrefslogtreecommitdiff
path: root/pod/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pod/Makefile')
-rw-r--r--pod/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/pod/Makefile b/pod/Makefile
index 7eeabd943b..e9623a62ff 100644
--- a/pod/Makefile
+++ b/pod/Makefile
@@ -9,6 +9,7 @@ POD2HTML = pod2html \
all: $(CONVERTERS) man
PERL = ../miniperl
+REALPERL = ../perl
POD = \
perl.pod \
@@ -240,7 +241,7 @@ toc:
clean:
rm -f $(MAN) $(HTML) $(TEX)
rm -f pod2html-*cache
- rm -f *.aux *.log
+ rm -f *.aux *.log *.exe
realclean: clean
rm -f $(CONVERTERS)
@@ -267,4 +268,7 @@ pod2text: pod2text.PL ../lib/Config.pm
checkpods: checkpods.PL ../lib/Config.pm
$(PERL) -I ../lib checkpods.PL
+compile: all
+ $(REALPERL) -I../lib ../utils/perlcc -regex 's/$$/.exe/' pod2latex pod2man pod2text checkpods -prog -verbose dcf -log ../compilelog;
+