blob: d515024aafc853fadbbeb59317f63fae72cdbd88 (
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
|
dist_man1_MANS=lighttpd.1
DOCS=accesslog.txt \
authentification.txt \
cgi.txt \
compress.txt \
configuration.txt \
fastcgi-state.txt \
fastcgi.txt \
features.txt \
performance.txt \
plugins.txt \
proxy.txt \
redirect.txt \
rewrite.txt \
secdownload.txt \
security.txt \
simple-vhost.txt \
skeleton.txt \
ssi.txt \
ssl.txt \
state.txt \
rrdtool.txt \
alias.txt \
userdir.txt \
mysqlvhost.txt \
access.txt \
traffic-shaping.txt \
setenv.txt \
status.txt
HTMLDOCS=accesslog.html \
authentification.html \
cgi.html \
compress.html \
configuration.html \
fastcgi-state.html \
fastcgi.html \
features.html \
performance.html \
plugins.html \
proxy.html \
redirect.html \
rewrite.html \
secdownload.html \
security.html \
simple-vhost.html \
skeleton.html \
ssi.html \
ssl.html \
state.html \
rrdtool.html \
alias.html \
userdir.html \
mysqlvhost.html \
access.html \
traffic-shaping.html \
setenv.html \
status.html
EXTRA_DIST=lighttpd.conf lighttpd.user \
rc.lighttpd rc.lighttpd.redhat sysconfig.lighttpd \
state.ps.gz rrdtool-graph.sh \
state.dot fastcgi-state.dot fastcgi-state.ps.gz \
spawn-php.sh \
$(DOCS)
%.html: %.txt
rst2html.py $^ > $@
html: $(HTMLDOCS)
%.ps.gz: %.ps
gzip $^
%.ps: %.dot
dot -Tps -o $@ $^
clean-local:
rm -f *.html
|