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