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 |
|
|
# 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)/tisAbortHandler.c \ |
27 |
|
|
$(SRC)/DosFsExtras.c \ |
28 |
|
|
$(SRC)/GetPCTime.c \ |
29 |
tis4000 |
1.2 |
# $(SRC)/platform.c \ |
30 |
|
|
# $(SRC)/x486.c \ |
31 |
|
|
# $(SRC)/mv147.c \ |
32 |
|
|
# $(SRC)/mv167.c \ |
33 |
|
|
# $(SRC)/watchdog.c \ |
34 |
tis4000 |
1.1 |
# $(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 |
|
|
tisAbortHandler.o \ |
54 |
tis4000 |
1.2 |
# platform.o \ |
55 |
|
|
# mv147.o \ |
56 |
|
|
# mv167.o \ |
57 |
|
|
# watchdog.o \ |
58 |
|
|
# x486.o \ |
59 |
tis4000 |
1.1 |
# --- |
60 |
|
|
|
61 |
|
|
# |
62 |
|
|
# END of Makefile.config |
63 |
|
|
# |