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 = -I$(STDH)/drv/tis |
16 |
|
17 |
X486INX = -I$(STDH)/drv/tis |
18 |
|
19 |
# |
20 |
# Define the source list for drvCom.o |
21 |
# |
22 |
|
23 |
SRCS =\ |
24 |
$(SRC)/gentimer.c \ |
25 |
$(SRC)/masks.c \ |
26 |
$(SRC)/iocsiodvr_bridge.c \ |
27 |
$(SRC)/drvcommon.c \ |
28 |
$(SRC)/cpuLoad.c \ |
29 |
$(SRC)/redundTask.c \ |
30 |
$(SRC)/serialTask.c \ |
31 |
$(SRC)/tomato.c \ |
32 |
$(SRC)/resGroupTask.c \ |
33 |
$(SRC)/serialFile.c \ |
34 |
# --- |
35 |
|
36 |
# |
37 |
# Define the object list for drvCom.o |
38 |
# |
39 |
|
40 |
OBJS =\ |
41 |
gentimer.o \ |
42 |
masks.o \ |
43 |
iocsiodvr_bridge.o \ |
44 |
drvcommon.o \ |
45 |
cpuLoad.o \ |
46 |
redundTask.o \ |
47 |
serialTask.o \ |
48 |
tomato.o \ |
49 |
resGroupTask.o \ |
50 |
serialFile.o \ |
51 |
# --- |
52 |
|
53 |
# |
54 |
# END of Makefile.config |
55 |
# |