annotate make/closed.make @ 2192:b92c45f2bc75

7016023: Enable building ARM and PPC from src/closed repository Reviewed-by: dholmes, bdelsart
author bobv
date Wed, 02 Feb 2011 11:35:26 -0500
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2192
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
1 #
b92c45f2bc75 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.
b92c45f2bc75 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.
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
4 #
b92c45f2bc75 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
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
7 # published by the Free Software Foundation.
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
8 #
b92c45f2bc75 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
b92c45f2bc75 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
b92c45f2bc75 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
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
13 # accompanied this code).
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
14 #
b92c45f2bc75 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
b92c45f2bc75 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,
b92c45f2bc75 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.
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
18 #
b92c45f2bc75 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
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
21 # questions.
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
22 #
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
23 #
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
24
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
26
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
27 CLOSED_DIR_EXISTS := $(shell \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
28 if [ -d $(GAMMADIR)/src/closed ] ; then \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
29 echo true; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
30 else \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
31 echo false; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
32 fi)
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
33
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
34 CLOSED_SRCARCH_DIR_EXISTS := $(shell \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
35 if [ -d $(GAMMADIR)/src/closed/cpu/$(SRCARCH)/vm ] ; then \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
36 echo true; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
37 else \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
38 echo false; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
39 fi)
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
40
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
41 ifeq ($(CLOSED_SRCARCH_DIR_EXISTS), true)
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
42 HS_CLOSED_PATH=closed/
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
43 endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
44
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
46
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
47 CLOSED_HS_ARCH_DIR_EXISTS := $(shell \
b92c45f2bc75 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 \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
49 echo true; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
50 else \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
51 echo false; \
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
52 fi)
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
53
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
54 ifeq ($(CLOSED_HS_ARCH_DIR_EXISTS), true)
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
56 else
b92c45f2bc75 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
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
58 endif
b92c45f2bc75 7016023: Enable building ARM and PPC from src/closed repository
bobv
parents:
diff changeset
59