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