1 |
tis4000 |
1.1 |
# |
2 |
|
|
# Makefile.config |
3 |
|
|
# |
4 |
|
|
# this file contains specific configuration for a given directory '.../Vx/xxx' |
5 |
|
|
# by defining the working directory name, any special include search path |
6 |
|
|
# directories, the source file list (used for make 'depend'), and the object |
7 |
|
|
# module list (used by default user target). |
8 |
|
|
# |
9 |
|
|
|
10 |
|
|
# |
11 |
|
|
# extra switches for each machine flavor |
12 |
|
|
# |
13 |
|
|
|
14 |
|
|
M30INX = |
15 |
|
|
|
16 |
|
|
X486INX = |
17 |
|
|
|
18 |
|
|
# |
19 |
|
|
# individual module compiler flag requirements |
20 |
|
|
# for particularly persnickety objects |
21 |
|
|
# |
22 |
|
|
|
23 |
|
|
# |
24 |
|
|
# Define the source list for CalISO.o |
25 |
|
|
# |
26 |
|
|
|
27 |
|
|
SRCS =\ |
28 |
|
|
$(SRC)\vxslave.c \ |
29 |
|
|
$(SRC)\vxmaster.c \ |
30 |
|
|
$(SRC)\pdpbrm.c \ |
31 |
|
|
$(SRC)\pdpdbas1.c \ |
32 |
|
|
$(SRC)\pdpdbas2.c \ |
33 |
|
|
$(SRC)\pdpdca.c \ |
34 |
|
|
$(SRC)\pdpdpa.c \ |
35 |
|
|
$(SRC)\pdpdtime.c \ |
36 |
|
|
$(SRC)\pdpdvrs.c \ |
37 |
|
|
$(SRC)\pdplink.c \ |
38 |
|
|
$(SRC)\pdplog.c \ |
39 |
|
|
$(SRC)\pdpobj.c \ |
40 |
|
|
$(SRC)\pdpphys.c \ |
41 |
|
|
$(SRC)\pdpque.c \ |
42 |
|
|
$(SRC)\pdprbe.c \ |
43 |
|
|
$(SRC)\pdptask.c \ |
44 |
|
|
$(SRC)\pdptport.c \ |
45 |
|
|
$(SRC)\tmwbcd.c \ |
46 |
|
|
$(SRC)\tmwintel.c \ |
47 |
|
|
$(SRC)\tmwmtrla.c \ |
48 |
|
|
$(SRC)\targ.c \ |
49 |
|
|
$(SRC)\dnptask.c \ |
50 |
|
|
$(SRC)\address.c \ |
51 |
|
|
$(SRC)\parse.c \ |
52 |
|
|
$(SRC)\shadow.c \ |
53 |
|
|
$(SRC)\tcpip.c \ |
54 |
|
|
$(SRC)\dev$(CUR).c \ |
55 |
|
|
$(SRC)\drv$(CUR).c \ |
56 |
|
|
# --- |
57 |
|
|
|
58 |
|
|
# |
59 |
|
|
# Define the object list for CalISO.o |
60 |
|
|
# |
61 |
|
|
|
62 |
|
|
OBJS =\ |
63 |
|
|
vxslave.o \ |
64 |
|
|
vxmaster.o \ |
65 |
|
|
pdpbrm.o \ |
66 |
|
|
pdpdbas1.o \ |
67 |
|
|
pdpdbas2.o \ |
68 |
|
|
pdpdca.o \ |
69 |
|
|
pdpdpa.o \ |
70 |
|
|
pdpdtime.o \ |
71 |
|
|
pdpdvrs.o \ |
72 |
|
|
pdplink.o \ |
73 |
|
|
pdplog.o \ |
74 |
|
|
pdpobj.o \ |
75 |
|
|
pdpphys.o \ |
76 |
|
|
pdpque.o \ |
77 |
|
|
pdprbe.o \ |
78 |
|
|
pdptask.o \ |
79 |
|
|
pdptport.o \ |
80 |
|
|
tmwbcd.o \ |
81 |
|
|
tmwintel.o \ |
82 |
|
|
tmwmtrla.o \ |
83 |
|
|
targ.o \ |
84 |
|
|
dnptask.o \ |
85 |
|
|
address.o \ |
86 |
|
|
parse.o \ |
87 |
|
|
shadow.o \ |
88 |
|
|
tcpip.o \ |
89 |
|
|
dev$(CUR).o \ |
90 |
|
|
drv$(CUR).o \ |
91 |
|
|
# --- |
92 |
|
|
|
93 |
|
|
# END of Makefile.config |
94 |
|
|
# |