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