blob: 41e3139ecbd97b1d67fed2a92ee58f71bbd39d3a (
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
|
</$objtype/mkfile
TARG=vncs vncv
BIN=/$objtype/bin
OFILES=\
proto.$O\
auth.$O\
SOFILES=\
devdraw.$O\
devmouse.$O\
devcons.$O\
screen.$O\
exporter.$O\
dev.$O\
chan.$O\
compat.$O\
exportfs.$O\
kbds.$O\
rre.$O\
rlist.$O\
COFILES=\
draw.$O\
kbdv.$O\
color.$O\
wsys.$O\
HFILES=\
vnc.h\
screen.h\
compat.h\
errstr.h\
kbd.h\
vncv.h\
vncs.h\
UPDATE=\
mkfile\
$HFILES\
${OFILES:%.$O=%.c}\
${SOFILES:%.$O=%.c}\
${COFILES:%.$O=%.c}\
${TARG:%=%.c}\
default:V: all
</sys/src/cmd/mkmany
$O.vncs: $SOFILES
$O.vncv: $COFILES
errstr.h: error.h
sed 's/extern //;s,;.*/\* (.*) \*/, = "\1";,' < error.h > errstr.h
kbds.$O: ksym2utf.h
kbdv.$O: utf2ksym.h
|