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 |
# |
12 |
# extra switches for each machine flavor |
13 |
# |
14 |
|
15 |
M30INX = |
16 |
|
17 |
X486INX = |
18 |
|
19 |
# |
20 |
# Define the source list for rsrvLib.o |
21 |
# |
22 |
|
23 |
SRCS =\ |
24 |
$(SRC)/rbMgt.c \ |
25 |
$(SRC)/serverMgt.c \ |
26 |
$(SRC)/getAgentField.c \ |
27 |
$(SRC)/rsrvTask.c \ |
28 |
$(SRC)/postEvents.c \ |
29 |
$(SRC)/mapTypes.c \ |
30 |
$(SRC)/serverDump.c \ |
31 |
$(SRC)/declareNameServer.c \ |
32 |
$(SRC)/getAlarmStream.c \ |
33 |
# --- |
34 |
|
35 |
# |
36 |
# Define the object list for rsrvLib.o |
37 |
# |
38 |
|
39 |
OBJS =\ |
40 |
rbMgt.o \ |
41 |
serverMgt.o \ |
42 |
getAgentField.o \ |
43 |
rsrvTask.o \ |
44 |
postEvents.o \ |
45 |
mapTypes.o \ |
46 |
serverDump.o \ |
47 |
declareNameServer.o \ |
48 |
getAlarmStream.o \ |
49 |
# --- |
50 |
|
51 |
PRIV_OBJS =\ |
52 |
rbMgt.o \ |
53 |
serverMgt.o \ |
54 |
getAgentField.o \ |
55 |
priv_rsrvTask.o \ |
56 |
postEvents.o \ |
57 |
mapTypes.o \ |
58 |
serverDump.o \ |
59 |
declareNameServer.o \ |
60 |
getAlarmStream.o \ |
61 |
# --- |
62 |
|
63 |
# |
64 |
# END of Makefile.config |
65 |
# |