blob: 9012b5735b5b30ca6efa9426c2219728a2deac0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
CONVERTERS = pod2html pod2latex pod2man pod2text checkpods
all: $(CONVERTERS) man
PERL = ../miniperl
POD = \
perl.pod \
perlapio.pod \
perlbook.pod \
perlbot.pod \
perlcall.pod \
perldata.pod \
perldebug.pod \
perldiag.pod \
perldsc.pod \
perlembed.pod \
perlform.pod \
perlfunc.pod \
perlguts.pod \
perlipc.pod \
perllocale.pod \
perllol.pod \
perlmod.pod \
perlnews.pod \
perlobj.pod \
perlop.pod \
perlovl.pod \
perlpod.pod \
perlre.pod \
perlref.pod \
perlrun.pod \
perlsec.pod \
perlstyle.pod \
perlsub.pod \
perlsyn.pod \
perltie.pod \
perltoc.pod \
perltoot.pod \
perltrap.pod \
perlvar.pod \
perlxs.pod \
perlxstut.pod
MAN = \
perl.man \
perlapio.man \
perlbook.man \
perlbot.man \
perlcall.man \
perldata.man \
perldebug.man \
perldiag.man \
perldsc.man \
perlembed.man \
perlform.man \
perlfunc.man \
perlguts.man \
perlipc.man \
perllocale.man \
perllol.man \
perlmod.man \
perlnews.man \
perlobj.man \
perlop.man \
perlovl.man \
perlpod.man \
perlre.man \
perlref.man \
perlrun.man \
perlsec.man \
perlstyle.man \
perlsub.man \
perlsyn.man \
perltie.man \
perltoc.man \
perltoot.man \
perltrap.man \
perlvar.man \
perlxs.man \
perlxstut.man
HTML = \
perl.html \
perlapio.html \
perlbook.html \
perlbot.html \
perlcall.html \
perldata.html \
perldebug.html \
perldiag.html \
perldsc.html \
perlembed.html \
perlform.html \
perlfunc.html \
perlguts.html \
perlipc.html \
perllocale.html \
perllol.html \
perlmod.html \
perlnews.html \
perlobj.html \
perlop.html \
perlovl.html \
perlpod.html \
perlre.html \
perlref.html \
perlrun.html \
perlsec.html \
perlstyle.html \
perlsub.html \
perlsyn.html \
perltie.html \
perltoc.html \
perltoot.html \
perltrap.html \
perlvar.html \
perlxs.html \
perlxstut.html
TEX = \
perl.tex \
perlapio.tex \
perlbook.tex \
perlbot.tex \
perlcall.tex \
perldata.tex \
perldebug.tex \
perldiag.tex \
perldsc.tex \
perlembed.tex \
perlform.tex \
perlfunc.tex \
perlguts.tex \
perlipc.tex \
perllocale.tex \
perllol.tex \
perlmod.tex \
perlnews.tex \
perlobj.tex \
perlop.tex \
perlovl.tex \
perlpod.tex \
perlre.tex \
perlref.tex \
perlrun.tex \
perlsec.tex \
perlstyle.tex \
perlsub.tex \
perlsyn.tex \
perltie.tex \
perltoc.tex \
perltoot.tex \
perltrap.tex \
perlvar.tex \
perlxs.tex \
perlxstut.tex
man: pod2man $(MAN)
# pod2html normally runs on all the pods at once in order to build up
# cross-references.
html: pod2html
$(PERL) -I../lib pod2html $(POD)
tex: pod2latex $(TEX)
.SUFFIXES: .pm .pod .man
.pm.man: pod2man
$(PERL) -I../lib pod2man $*.pm >$*.man
.pod.man: pod2man
$(PERL) -I../lib pod2man $*.pod >$*.man
.SUFFIXES: .mp .pod .html
.pm.html: pod2html
$(PERL) -I../lib pod2html $*.pod
.pod.html: pod2html
$(PERL) -I../lib pod2html $*.pod
.SUFFIXES: .pm .pod .tex
.pod.tex: pod2latex
$(PERL) -I../lib pod2latex $*.pod
.pm.tex: pod2latex
$(PERL) -I../lib pod2latex $*.pod
clean:
rm -f $(MAN) $(HTML) $(TEX)
realclean: clean
rm -f $(CONVERTERS)
distclean: realclean
check: checkpods
@echo "checking..."; \
$(PERL) -I../lib checkpods $(POD)
# Dependencies.
pod2latex: pod2latex.PL ../lib/Config.pm
$(PERL) -I../lib pod2latex.PL
pod2html: pod2html.PL ../lib/Config.pm
$(PERL) -I ../lib pod2html.PL
pod2man: pod2man.PL ../lib/Config.pm
$(PERL) -I ../lib pod2man.PL
pod2text: pod2text.PL ../lib/Config.pm
$(PERL) -I ../lib pod2text.PL
checkpods: checkpods.PL ../lib/Config.pm
$(PERL) -I ../lib checkpods.PL
|