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 |
M30INX = |
15 |
|
16 |
X486INX = |
17 |
|
18 |
# |
19 |
# Define the source list for $(CUR).o |
20 |
# |
21 |
|
22 |
SRCS =\ |
23 |
$(SRC)/dev$(CUR).c \ |
24 |
$(SRC)/drv$(CUR).c \ |
25 |
# --- |
26 |
|
27 |
# |
28 |
# Define the object list for $(CUR).o |
29 |
# |
30 |
|
31 |
OBJS =\ |
32 |
dev$(CUR).o \ |
33 |
drv$(CUR).o \ |
34 |
# --- |
35 |
|
36 |
# |
37 |
# END of Makefile.config |
38 |
# |