blob: b901f501d6e470431383e87720a065b250eba81d (
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
|
DOCS=accesslog.txt \
authentication.txt \
cgi.txt \
compress.txt \
configuration.txt \
extforward.txt \
fastcgi-state.txt \
fastcgi.txt \
features.txt \
performance.txt \
plugins.txt \
proxy.txt \
redirect.txt \
rewrite.txt \
security.txt \
simple-vhost.txt \
skeleton.txt \
ssi.txt \
ssl.txt \
state.txt \
rrdtool.txt \
alias.txt \
userdir.txt \
access.txt \
traffic-shaping.txt \
setenv.txt \
status.txt \
scgi.txt \
webdav.txt \
expire.txt \
dirlisting.txt \
evhost.txt \
magnet.txt
HTMLDOCS=accesslog.html \
authentication.html \
cgi.html \
compress.html \
configuration.html \
extforward.html \
fastcgi-state.html \
fastcgi.html \
features.html \
performance.html \
plugins.html \
proxy.html \
redirect.html \
rewrite.html \
security.html \
simple-vhost.html \
skeleton.html \
ssi.html \
ssl.html \
state.html \
rrdtool.html \
alias.html \
userdir.html \
access.html \
traffic-shaping.html \
setenv.html \
status.html \
scgi.html \
webdav.html \
expire.html \
dirlisting.html \
evhost.html \
magnet.html
EXTRA_DIST= \
state.dot fastcgi-state.dot \
$(DOCS)
.txt.html:
rst2html $^ > $@
html-local: $(HTMLDOCS)
#%.ps.gz: %.ps
# gzip $^
#%.ps: %.dot
# dot -Tps -o $@ $^
clean-local:
rm -f *.html
|