make/closed.make

Wed, 02 Feb 2011 11:35:26 -0500

author
bobv
date
Wed, 02 Feb 2011 11:35:26 -0500
changeset 2508
b92c45f2bc75
permissions
-rw-r--r--

7016023: Enable building ARM and PPC from src/closed repository
Reviewed-by: dholmes, bdelsart

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

mercurial