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 |
# NOTE: GCC_BASE is passed to Makefile.defaults which this is included in |
9 |
# |
10 |
|
11 |
|
12 |
# |
13 |
# extra switches for each machine flavor |
14 |
# |
15 |
|
16 |
CFG = ../../../share/vw$(GCC_BASE)/config/mv147 |
17 |
M30INX = |
18 |
|
19 |
X486INX = |
20 |
|
21 |
# |
22 |
# Define the source list for platformSup |
23 |
# |
24 |
|
25 |
SRCS =\ |
26 |
$(SRC)/platform.c \ |
27 |
$(SRC)/mv147.c \ |
28 |
$(SRC)/mv167.c \ |
29 |
$(SRC)/watchdog.c \ |
30 |
$(SRC)/tisAbortHandler.c \ |
31 |
$(SRC)/x486.c \ |
32 |
$(SRC)/DosFsExtras.c \ |
33 |
$(SRC)/GetPCTime.c \ |
34 |
# $(SRC)/taskMon.c \ |
35 |
# --- |
36 |
|
37 |
ifeq ($(CPU),I80486) |
38 |
# |
39 |
# Define the object list for pcioc.o |
40 |
# |
41 |
|
42 |
PCIOC_OBJS =\ |
43 |
DosFsExtras.o \ |
44 |
GetPCTime.o \ |
45 |
# --- |
46 |
|
47 |
endif |
48 |
# |
49 |
# Define the object list for platformSup |
50 |
# |
51 |
|
52 |
OBJS =\ |
53 |
platform.o \ |
54 |
mv147.o \ |
55 |
mv167.o \ |
56 |
watchdog.o \ |
57 |
tisAbortHandler.o \ |
58 |
x486.o \ |
59 |
# --- |
60 |
|
61 |
# |
62 |
# END of Makefile.config |
63 |
# |