blob: d96fd7da3ee3507a1f53c4fe4c267cda7f2b82bc (
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
|
all: man
POD = \
perl.pod \
perlapi.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 \
perlapi.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 \
perlapi.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
man: $(MAN)
html: $(HTML)
.SUFFIXES: .pod .man
.pod.man:
../miniperl pod2man $*.pod >$*.man
.SUFFIXES: .pod .html
.pod.html:
../miniperl pod2html $*.pod >$*.html
clean:
rm -f $(MAN) $(HTML)
|