This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Removed unnecessary pointers checks
[perl5.git] / pod / Makefile.SH
CommitLineData
aa275be2 1case $PERL_CONFIG_SH in
4755096e
GS
2'')
3 if test -f config.sh; then TOP=.;
4 elif test -f ../config.sh; then TOP=..;
5 elif test -f ../../config.sh; then TOP=../..;
6 elif test -f ../../../config.sh; then TOP=../../..;
7 elif test -f ../../../../config.sh; then TOP=../../../..;
8 else
9 echo "Can't find config.sh."; exit 1
10 fi
11 . $TOP/config.sh
12 ;;
13esac
14: This forces SH files to create target in same directory as SH file.
15: This is so that make depend always knows where to find SH derivatives.
16case "$0" in
17*/*) cd `expr X$0 : 'X\(.*\)/'` ;;
18esac
19
20if test -d pod; then
21 cd pod || exit 1
22fi
23POD=`echo *.pod`
24MAN=`echo $POD|sed 's/\.pod/\.man/g'`
e788edff 25HTML=`echo $POD|sed 's/perltoc.pod//'|sed 's/\.pod/\.html/g'`
4755096e
GS
26TEX=`echo $POD|sed 's/\.pod/\.tex/g'`
27
28echo "Extracting pod/Makefile (with variable substitutions)"
29: This section of the file will have variable substitutions done on it.
30: Move anything that needs config subs from !NO!SUBS! section to !GROK!THIS!.
31: Protect any dollar signs and backticks that you do not want interpreted
32: by putting a backslash in front. You may delete these comments.
33
34$spitshell >Makefile <<!GROK!THIS!
35# pod/Makefile
36# This file is derived from pod/Makefile.SH. Any changes made here will
37# be lost the next time you run Configure.
38
39POD = $POD
40
41MAN = $MAN
42
43# no perltoc.html
44HTML = $HTML
45
46TEX = $TEX
47
c2e66d9e
GS
48# The following is used to include the current directory in
49# the dynamic loader path you are building a shared libperl.
50LDLIBPTH = $ldlibpth
51
4755096e
GS
52!GROK!THIS!
53
54## In the following dollars and backticks do not need the extra backslash.
55$spitshell >>Makefile <<'!NO!SUBS!'
56
57CONVERTERS = pod2html pod2latex pod2man pod2text checkpods \
58 pod2usage podchecker podselect
59
60HTMLROOT = / # Change this to fix cross-references in HTML
61POD2HTML = pod2html \
62 --htmlroot=$(HTMLROOT) \
63 --podroot=.. --podpath=pod:lib:ext:vms \
64 --libpods=perlfunc:perlguts:perlvar:perlrun:perlop
65
66PERL = ../miniperl
2607bbb4 67PERLILIB = $(PERL) -I../lib
4755096e
GS
68REALPERL = ../perl
69
70all: $(CONVERTERS) man
71
72converters: $(CONVERTERS)
73
74regen_pods: perlmodlib.pod toc
75
a7ffa9b9 76perltoc.pod: buildtoc
4755096e
GS
77
78man: pod2man $(MAN)
79
80html: pod2html $(HTML)
81
82tex: pod2latex $(TEX)
83
1fa7ca25 84toc perltoc.pod: buildtoc
1db354ff 85 $(PERLILIB) buildtoc --build-toc
4755096e
GS
86
87.SUFFIXES: .pm .pod
88
89.SUFFIXES: .man
90
91.pm.man: pod2man
f6592834 92 $(REALPERL) -I../lib pod2man $*.pm >$*.man
4755096e
GS
93
94.pod.man: pod2man
f6592834 95 $(REALPERL) -I../lib pod2man $*.pod >$*.man
4755096e
GS
96
97.SUFFIXES: .html
98
99.pm.html: pod2html
100 $(PERL) -I../lib $(POD2HTML) --infile=$*.pm --outfile=$*.html
101
102.pod.html: pod2html
103 $(PERL) -I../lib $(POD2HTML) --infile=$*.pod --outfile=$*.html
104
105.SUFFIXES: .tex
106
107.pm.tex: pod2latex
108 $(PERL) -I../lib pod2latex $*.pm
109
110.pod.tex: pod2latex
111 $(PERL) -I../lib pod2latex $*.pod
112
113clean:
114 rm -f $(MAN)
115 rm -f $(HTML)
116 rm -f $(TEX)
117 rm -f pod2html-*cache
118 rm -f *.aux *.log *.exe
119
120realclean: clean
121 rm -f $(CONVERTERS)
122
123distclean: realclean
124
2edbd6da
JH
125veryclean: distclean
126 -rm -f *~ *.orig
127
4755096e
GS
128check: checkpods
129 @echo "checking..."; \
130 $(PERL) -I../lib checkpods $(POD)
131
132# Dependencies.
133pod2latex: pod2latex.PL ../lib/Config.pm
c2e66d9e 134 $(LDLIBPTH) $(PERL) -I../lib pod2latex.PL
4755096e
GS
135
136pod2html: pod2html.PL ../lib/Config.pm
c2e66d9e 137 $(LDLIBPTH) $(PERL) -I ../lib pod2html.PL
4755096e
GS
138
139pod2man: pod2man.PL ../lib/Config.pm
c2e66d9e 140 $(LDLIBPTH) $(PERL) -I ../lib pod2man.PL
4755096e
GS
141
142pod2text: pod2text.PL ../lib/Config.pm
c2e66d9e 143 $(LDLIBPTH) $(PERL) -I ../lib pod2text.PL
4755096e
GS
144
145checkpods: checkpods.PL ../lib/Config.pm
c2e66d9e 146 $(LDLIBPTH) $(PERL) -I ../lib checkpods.PL
4755096e
GS
147
148pod2usage: pod2usage.PL ../lib/Config.pm
149 $(PERL) -I ../lib pod2usage.PL
150
151podchecker: podchecker.PL ../lib/Config.pm
152 $(PERL) -I ../lib podchecker.PL
153
154podselect: podselect.PL ../lib/Config.pm
155 $(PERL) -I ../lib podselect.PL
156
b7da254d
RGS
157perlmodlib.pod: $(PERL) perlmodlib.PL ../MANIFEST
158 rm -f perlmodlib.pod
4755096e 159 $(PERL) -I ../lib perlmodlib.PL
4755096e
GS
160
161compile: all
f5eac215
JH
162 $(REALPERL) -I../lib ../utils/perlcc -I .. -L .. -o pod2latex.exe pod2latex -log ../compilelog
163 $(REALPERL) -I../lib ../utils/perlcc -I .. -L .. -o pod2man.exe pod2man -log ../compilelog
164 $(REALPERL) -I../lib ../utils/perlcc -I .. -L .. -o pod2text.exe pod2text -log ../compilelog
165 $(REALPERL) -I../lib ../utils/perlcc -I .. -L .. -o checkpods.exe checkpods -log ../compilelog
4755096e
GS
166
167!NO!SUBS!