1 |
# |
2 |
# Makefile.config |
3 |
# !! special 'driver' version = Makefile.drvcnfg |
4 |
# |
5 |
# this file contains specific configuration for a given directory '.../Vx/xxx' |
6 |
# by defining the working directory name, any special include search path |
7 |
# directories, the source file list (used for make 'depend'), and the object |
8 |
# module list (used by default user target). |
9 |
# |
10 |
|
11 |
# |
12 |
# extra switches for each machine flavor |
13 |
# |
14 |
|
15 |
M30INX = |
16 |
|
17 |
X486INX = |
18 |
|
19 |
# |
20 |
# Define the source list for $(CUR).o |
21 |
# $(SRC)\dev$(CUR).c \ |
22 |
# $(SRC)\drv$(CUR).c \ |
23 |
|
24 |
|
25 |
SRCS =\ |
26 |
$(SRC)\casm.c \ |
27 |
$(SRC)\cfg1006.c \ |
28 |
$(SRC)\client.c \ |
29 |
$(SRC)\cli_cfg.c \ |
30 |
$(SRC)\cli_enc.c \ |
31 |
$(SRC)\cli_req.c \ |
32 |
$(SRC)\cli_res.c \ |
33 |
$(SRC)\cli_tra.c \ |
34 |
$(SRC)\cli_tst.c \ |
35 |
$(SRC)\d2t_tab.c \ |
36 |
$(SRC)\data_cfg.c \ |
37 |
$(SRC)\deviccp.c \ |
38 |
$(SRC)\dlsm.c \ |
39 |
$(SRC)\drviccp.c \ |
40 |
$(SRC)\dt_io.c \ |
41 |
$(SRC)\dt_list.c \ |
42 |
$(SRC)\emitfetc.c \ |
43 |
$(SRC)\error.c \ |
44 |
$(SRC)\evalfunc.c \ |
45 |
$(SRC)\files.c \ |
46 |
$(SRC)\iccpdata.c \ |
47 |
$(SRC)\iccpio.c \ |
48 |
$(SRC)\iccprbe.c \ |
49 |
$(SRC)\iccptask.c \ |
50 |
$(SRC)\ioroutin.c \ |
51 |
$(SRC)\mmsdecod.c \ |
52 |
$(SRC)\mmstypes.c \ |
53 |
$(SRC)\pr_tab.c \ |
54 |
$(SRC)\rfc1006.c \ |
55 |
$(SRC)\search.c \ |
56 |
$(SRC)\service.c \ |
57 |
$(SRC)\t2d_lex.c \ |
58 |
$(SRC)\t2d_tab.c \ |
59 |
$(SRC)\tam.c \ |
60 |
$(SRC)\tam_con.c \ |
61 |
$(SRC)\tam_tp.c \ |
62 |
$(SRC)\utility.c \ |
63 |
$(SRC)\vxiccp.c \ |
64 |
$(SRC)\win_time.c \ |
65 |
$(SRC)\yy_tab.c |
66 |
# --- |
67 |
|
68 |
# |
69 |
# Define the object list for $(CUR).o |
70 |
# dev$(CUR).o \ |
71 |
# drv$(CUR).o \ |
72 |
|
73 |
OBJS =\ |
74 |
casm.o \ |
75 |
cfg1006.o \ |
76 |
client.o \ |
77 |
cli_cfg.o \ |
78 |
cli_enc.o \ |
79 |
cli_req.o \ |
80 |
cli_res.o \ |
81 |
cli_tra.o \ |
82 |
cli_tst.o \ |
83 |
d2t_tab.o \ |
84 |
data_cfg.o \ |
85 |
deviccp.o \ |
86 |
dlsm.o \ |
87 |
drviccp.o \ |
88 |
dt_io.o \ |
89 |
dt_list.o \ |
90 |
emitfetc.o \ |
91 |
error.o \ |
92 |
evalfunc.o \ |
93 |
files.o \ |
94 |
iccpdata.o \ |
95 |
iccpio.o \ |
96 |
iccprbe.o \ |
97 |
iccptask.o \ |
98 |
ioroutin.o \ |
99 |
mmsdecod.o \ |
100 |
mmstypes.o \ |
101 |
pr_tab.o \ |
102 |
rfc1006.o \ |
103 |
search.o \ |
104 |
service.o \ |
105 |
t2d_lex.o \ |
106 |
t2d_tab.o \ |
107 |
tam.o \ |
108 |
tam_con.o \ |
109 |
tam_tp.o \ |
110 |
utility.o \ |
111 |
vxiccp.o \ |
112 |
win_time.o \ |
113 |
yy_tab.o |
114 |
# --- |
115 |
|
116 |
# |
117 |
# END of Makefile.config |
118 |
# |