blob: 6ef971db45972fc6fd1fc0dd80581639b0a546d2 (
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
|
all: man
PERL = ../miniperl
POD = \
perl.pod \
perlxs.pod \
perlbook.pod \
perlbot.pod \
perlcall.pod \
perldata.pod \
perldebug.pod \
perldiag.pod \
perlembed.pod \
perlform.pod \
perlfunc.pod \
perlguts.pod \
perlipc.pod \
perlmod.pod \
perlobj.pod \
perlop.pod \
perlovl.pod \
perlpod.pod \
perlre.pod \
perlref.pod \
perlrun.pod \
perlsec.pod \
perlstyle.pod \
perlsub.pod \
perlsyn.pod \
perltrap.pod \
perlvar.pod
MAN = \
perl.man \
perlxs.man \
perlbook.man \
perlbot.man \
perlcall.man \
perldata.man \
perldebug.man \
perldiag.man \
perlembed.man \
perlform.man \
perlfunc.man \
perlguts.man \
perlipc.man \
perlmod.man \
perlobj.man \
perlop.man \
perlovl.man \
perlpod.man \
perlre.man \
perlref.man \
perlrun.man \
perlsec.man \
perlstyle.man \
perlsub.man \
perlsyn.man \
perltrap.man \
perlvar.man
HTML = \
perl.html \
perlxs.html \
perlbook.html \
perlbot.html \
perlcall.html \
perldata.html \
perldebug.html \
perldiag.html \
perlembed.html \
perlform.html \
perlfunc.html \
perlguts.html \
perlipc.html \
perlmod.html \
perlobj.html \
perlop.html \
perlovl.html \
perlpod.html \
perlre.html \
perlref.html \
perlrun.html \
perlsec.html \
perlstyle.html \
perlsub.html \
perlsyn.html \
perltrap.html \
perlvar.html
TEX = \
perl.tex \
perlxs.tex \
perlbook.tex \
perlbot.tex \
perlcall.tex \
perldata.tex \
perldebug.tex \
perldiag.tex \
perlembed.tex \
perlform.tex \
perlfunc.tex \
perlguts.tex \
perlipc.tex \
perlmod.tex \
perlobj.tex \
perlop.tex \
perlovl.tex \
perlpod.tex \
perlre.tex \
perlref.tex \
perlrun.tex \
perlsec.tex \
perlstyle.tex \
perlsub.tex \
perlsyn.tex \
perltrap.tex \
perlvar.tex
man: pod2man $(MAN)
# pod2html normally runs on all the pods at once in order to build up
# cross-references.
html: pod2html
$(PERL) pod2html *.pod
tex: pod2latex $(TEX)
.SUFFIXES: .pod .man
.pod.man: pod2man
$(PERL) pod2man $*.pod >$*.man
.SUFFIXES: .pod .html
.pod.html: pod2html
$(PERL) pod2html $*.pod
.SUFFIXES: .pod .tex
.pod.tex: pod2latex
$(PERL) pod2latex $*.pod
clean:
rm -f $(MAN) $(HTML) $(TEX)
realclean: clean
rm -f pod2man pod2latex pod2html
distclean: realclean
# Dependencies.
pod2latex: pod2latex.SH ../config.sh
sh pod2latex.SH
pod2html: pod2html.SH ../config.sh
sh pod2html.SH
pod2man: pod2man.SH ../config.sh
sh pod2man.SH
|