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 |
|
|
# Define the source list for devCom.o |
20 |
|
|
# |
21 |
|
|
|
22 |
|
|
SRCS =\ |
23 |
|
|
$(SRC)/devRes.c \ |
24 |
|
|
$(SRC)/devSoft.c \ |
25 |
|
|
$(SRC)/devSoftRaw.c \ |
26 |
|
|
$(SRC)/devTestAsyn.c \ |
27 |
|
|
# --- |
28 |
|
|
|
29 |
|
|
# |
30 |
|
|
# Define the object list for devCom.o |
31 |
|
|
# |
32 |
|
|
|
33 |
|
|
OBJS =\ |
34 |
|
|
devRes.o \ |
35 |
|
|
devSoft.o \ |
36 |
|
|
devSoftRaw.o \ |
37 |
|
|
devTestAsyn.o \ |
38 |
|
|
# --- |
39 |
|
|
|
40 |
|
|
# |
41 |
|
|
# END of Makefile.config |
42 |
|
|
# |