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 |
|
|
# |
12 |
|
|
# extra switches for each machine flavor |
13 |
|
|
# |
14 |
|
|
|
15 |
|
|
M30INX = |
16 |
|
|
|
17 |
|
|
X486INX = |
18 |
|
|
|
19 |
|
|
# |
20 |
|
|
# Define the source list for dbServer |
21 |
|
|
# |
22 |
|
|
|
23 |
|
|
SRCS =\ |
24 |
|
|
$(SRC)/reslib.c \ |
25 |
|
|
$(SRC)/dbserver.c \ |
26 |
|
|
$(SRC)/redflib.c \ |
27 |
|
|
$(SRC)/redqlib.c \ |
28 |
|
|
$(SRC)/resmgr_seq.c \ |
29 |
|
|
$(SRC)/dbCrcSubs.c \ |
30 |
|
|
$(SRC)/pvdOnTheFly.c \ |
31 |
|
|
$(SRC)/getPrecord.c \ |
32 |
|
|
$(SRC)/freeMemory.c \ |
33 |
|
|
$(SRC)/localEndian.c \ |
34 |
|
|
# --- |
35 |
|
|
# $(SRC)/adjust.c \ |
36 |
|
|
# $(SRC)/sdrLoad.c \ |
37 |
|
|
|
38 |
|
|
# |
39 |
|
|
# Define the object list for dbServer |
40 |
|
|
# |
41 |
|
|
|
42 |
|
|
OBJS =\ |
43 |
|
|
reslib.o \ |
44 |
|
|
dbserver.o \ |
45 |
|
|
redflib.o \ |
46 |
|
|
redqlib.o \ |
47 |
|
|
resmgr_seq.o \ |
48 |
|
|
dbCrcSubs.o \ |
49 |
|
|
pvdOnTheFly.o \ |
50 |
|
|
getPrecord.o \ |
51 |
|
|
freeMemory.o \ |
52 |
|
|
localEndian.o \ |
53 |
|
|
# --- |
54 |
|
|
# adjust.o \ |
55 |
|
|
# sdrLoad.o \ |
56 |
|
|
|
57 |
|
|
PRIV_OBJS =\ |
58 |
|
|
reslib.o \ |
59 |
|
|
priv_dbserver.o \ |
60 |
|
|
redflib.o \ |
61 |
|
|
redqlib.o \ |
62 |
|
|
resmgr_seq.o \ |
63 |
|
|
dbCrcSubs.o \ |
64 |
|
|
pvdOnTheFly.o \ |
65 |
|
|
getPrecord.o \ |
66 |
|
|
freeMemory.o \ |
67 |
|
|
localEndian.o \ |
68 |
|
|
# --- |
69 |
|
|
# |
70 |
|
|
# END of Makefile.config |
71 |
|
|
# |