author | bobv |
Wed, 02 Feb 2011 11:35:26 -0500 | |
changeset 8107 | 78e5bd944384 |
permissions | -rw-r--r-- |
8107
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
1 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
2 |
# Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved. |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
4 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
8 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
9 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
10 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
11 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
12 |
# version 2 for more details (a copy is included in the LICENSE file that |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
13 |
# accompanied this code). |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
14 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
15 |
# You should have received a copy of the GNU General Public License version |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
16 |
# 2 along with this work; if not, write to the Free Software Foundation, |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
17 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
18 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
21 |
# questions. |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
22 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
23 |
# |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
24 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
25 |
# Support for setting HS_CLOSED_PATH, required GAMMADIR and SRCARCH |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
26 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
27 |
CLOSED_DIR_EXISTS := $(shell \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
28 |
if [ -d $(GAMMADIR)/src/closed ] ; then \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
29 |
echo true; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
30 |
else \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
31 |
echo false; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
32 |
fi) |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
33 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
34 |
CLOSED_SRCARCH_DIR_EXISTS := $(shell \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
35 |
if [ -d $(GAMMADIR)/src/closed/cpu/$(SRCARCH)/vm ] ; then \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
36 |
echo true; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
37 |
else \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
38 |
echo false; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
39 |
fi) |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
40 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
41 |
ifeq ($(CLOSED_SRCARCH_DIR_EXISTS), true) |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
42 |
HS_CLOSED_PATH=closed/ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
43 |
endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
44 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
45 |
# Support for setting HS_JNI_ARCH_SRC, requires HS_SRC_DIR and HS_ARCH |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
46 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
47 |
CLOSED_HS_ARCH_DIR_EXISTS := $(shell \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
48 |
if [ -d $(HS_SRC_DIR)/closed/cpu/$(HS_ARCH)/vm ] ; then \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
49 |
echo true; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
50 |
else \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
51 |
echo false; \ |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
52 |
fi) |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
53 |
|
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
54 |
ifeq ($(CLOSED_HS_ARCH_DIR_EXISTS), true) |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
55 |
HS_JNI_ARCH_SRC=$(HS_SRC_DIR)/closed/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
56 |
else |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
57 |
HS_JNI_ARCH_SRC=$(HS_SRC_DIR)/cpu/$(HS_ARCH)/vm/jni_$(HS_ARCH).h |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
58 |
endif |
78e5bd944384
7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff
changeset
|
59 |