blob: 216c7f23117859c255e0001b8dea334e1731f170 (
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
|
<../../../mkconfig
TARG= cache.dis\
contents.dis\
date.dis\
echo.dis\
httpd.dis\
imagemap.dis\
parser.dis\
redirect.dis\
stats.dis\
alarms.dis\
cgiparse.dis\
MODULES=\
cache.m\
contents.m\
date.m\
httpd.m\
parser.m\
redirect.m\
alarms.m\
cgiparse.m\
SYSMODULES=
LOGS= httpd.debug\
httpd.log\
httpd.rewrite\
httpd.suff\
DISBIN=$ROOT/dis/svc/httpd
<$ROOT/mkfiles/mkdis
install:V: install-logs-$SHELLTYPE
install-logs-rc install-logs-nt:V:
for (i in $LOGS){
rm -f $ROOT/services/httpd/$i && cp $i $ROOT/services/httpd/$i
}
# chmod 644 $ROOT/services/httpd/httpd.log
install-logs-sh:V:
for i in $LOGS
do
rm -f $ROOT/services/httpd/$i && cp $i $ROOT/services/httpd/$i
done
# chmod 644 $ROOT/services/httpd/httpd.log
|