1 |
tis4000 |
1.1 |
|
2 |
|
|
# Define the local target base directory |
3 |
|
|
CUR = boot_tools |
4 |
|
|
|
5 |
|
|
# Define the release root directory |
6 |
|
|
TOP = ..\..\.. |
7 |
|
|
|
8 |
|
|
# Define the Tornado install directory and host type |
9 |
|
|
WIND_BASE = c:/Tornado2 |
10 |
|
|
WIND_HOST_TYPE = x86-win32 |
11 |
|
|
|
12 |
|
|
# define the base location of the standard makefile |
13 |
|
|
MAKE_TOP = $(TOP)\Tornado2\stdMakefiles |
14 |
|
|
|
15 |
|
|
# TORNADO Makefile strategy- |
16 |
|
|
# perform make with the -C <dir> for each valid target |
17 |
|
|
# Each target subdir will select correct Make include environment |
18 |
|
|
# target names hardcoded for now |
19 |
|
|
|
20 |
|
|
default:: M30 X486 |
21 |
|
|
|
22 |
|
|
M30 : |
23 |
|
|
mkdir M30 |
24 |
|
|
X486 : |
25 |
|
|
mkdir X486 |
26 |
|
|
|
27 |
|
|
M30_O: |
28 |
|
|
make -C ./M30 -f $(MAKE_TOP)/Makefile user_target DST=M30 CUR=$(CUR) CPU=MC68040 |
29 |
|
|
|
30 |
|
|
X486_O: |
31 |
|
|
make -C ./X486 -f $(MAKE_TOP)/Makefile user_target DST=X486 CUR=$(CUR) CPU=I80486 |
32 |
|
|
|