1 |
tis4000 |
1.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 |
|
|
# |
22 |
|
|
|
23 |
|
|
SRCS =\ |
24 |
|
|
$(SRC)\dev$(CUR).c \ |
25 |
|
|
$(SRC)\drv$(CUR).c \ |
26 |
|
|
$(SRC)\vxquad4.c \ |
27 |
|
|
$(SRC)\q4task.c \ |
28 |
|
|
$(SRC)\meter.c \ |
29 |
|
|
$(SRC)\mv90.c \ |
30 |
|
|
# --- |
31 |
|
|
|
32 |
|
|
# |
33 |
|
|
# Define the object list for $(CUR).o |
34 |
|
|
# |
35 |
|
|
|
36 |
|
|
OBJS =\ |
37 |
|
|
dev$(CUR).o \ |
38 |
|
|
drv$(CUR).o \ |
39 |
|
|
vxquad4.o \ |
40 |
|
|
q4task.o \ |
41 |
|
|
meter.o \ |
42 |
|
|
mv90.o \ |
43 |
|
|
# --- |
44 |
|
|
|
45 |
|
|
# |
46 |
|
|
# END of Makefile.config |
47 |
|
|
# |