blob: 0e059d8d647b83f34c6c05964e47cfa65be691aa (
plain) (
blame)
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
#************************** makefile for cmd\... ***************************
msg =..\..\messages
dos =..\..\dos
inc =..\..\inc
hinc =..\..\h
#
####################### dependencies begin here. #########################
#
all: mode.com
mode.ctl: mode.skl \
makefile \
$(msg)\$(COUNTRY).msg
main.obj: main.asm \
makefile \
$(inc)\copyrigh.inc \
$(inc)\versiona.inc \
$(inc)\struc.inc \
$(inc)\sysmsg.inc \
$(inc)\msgserv.asm \
mode.ctl \
mode.cl1 \
mode.cl2 \
mode.cla \
mode.clb
scrntab.obj: scrntab.asm \
makefile
modescrn.obj: modescrn.asm \
makefile \
$(inc)\struc.inc
rescode.obj: rescode.asm \
makefile \
$(inc)\struc.inc
modecom.obj: modecom.asm \
makefile \
$(inc)\struc.inc \
modequat.inc \
common.stc
modeprin.obj: modeprin.asm \
makefile \
$(inc)\struc.inc
modevid.obj: modevid.asm \
makefile \
$(inc)\struc.inc
modeecho.obj: modeecho.asm \
makefile \
common.stc \
$(inc)\struc.inc
modeleng.obj: modeleng.asm \
modequat.inc \
makefile \
$(inc)\struc.inc
modemes.obj: modemes.asm \
makefile \
$(inc)\msgserv.asm \
modesubs.inc \
modedefs.inc \
modequat.inc \
common.stc
display.obj: display.asm \
makefile \
common.stc
typamat.obj: typamat.asm \
makefile \
$(inc)\struc.inc \
modequat.inc
invoke.obj: invoke.asm \
makefile \
$(inc)\struc.inc \
modequat.inc \
common.stc
modepars.obj: modepars.asm \
makefile \
$(inc)\struc.inc \
$(inc)\psdata.inc \
modequat.inc \
common.stc
parshell.obj: parshell.asm \
makefile \
$(inc)\parse.asm
modecp.obj: modecp.asm \
makefile \
modecpro.inc \
modecpeq.inc \
modecpms.inc \
$(inc)\struc.inc
mode.com: main.obj \
makefile \
scrntab.obj \
modescrn.obj \
rescode.obj \
modecom.obj \
modeprin.obj \
modevid.obj \
modeleng.obj \
modeecho.obj \
modecp.obj \
display.obj \
typamat.obj \
invoke.obj \
parshell.obj \
modepars.obj \
modemes.obj \
mode.lnk
link @mode.lnk
exe2bin mode.exe mode.com
del mode.exe
|