blob: 0502286274e1a8eb5cf8d6239464166dfbe70a6a (
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
|
</$objtype/mkfile
TARG = faxreceive\
faxsend\
OFILES=\
fax2modem.$O\
file.$O\
modem.$O\
subr.$O\
RECEIVE=\
$OFILES\
receive.$O\
fax2receive.$O\
SEND=\
$OFILES\
send.$O\
fax2send.$O\
BIN=/$objtype/bin/aux
UPDATE=\
mkfile\
$HFILES\
${OFILES:%.$O=%.c}\
receive.c\
send.c\
fax2receive.c\
fax2send.c\
${TARG:%=%.c}\
${TARG:%=/386/bin/%}\
</sys/src/cmd/mkmany
$O.faxreceive: $RECEIVE
$LD -o $target $prereq
$O.faxsend: $SEND
$LD -o $target $prereq
install.rc:V:
mkdir /sys/lib/fax
cp receiverc /sys/lib/fax
|