hotspot/make/closed.make
changeset 8107 78e5bd944384
equal deleted inserted replaced
8076:96d498ec7ae1 8107:78e5bd944384
       
     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 #
       
    24 
       
    25 # Support for setting HS_CLOSED_PATH, required GAMMADIR and SRCARCH
       
    26 
       
    27 CLOSED_DIR_EXISTS := $(shell                                \
       
    28   if [ -d $(GAMMADIR)/src/closed ] ; then                   \
       
    29     echo true;                                              \
       
    30   else                                                      \
       
    31     echo false;                                             \
       
    32   fi)
       
    33 
       
    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)
       
    40 
       
    41 ifeq ($(CLOSED_SRCARCH_DIR_EXISTS), true)
       
    42   HS_CLOSED_PATH=closed/
       
    43 endif
       
    44 
       
    45 # Support for setting HS_JNI_ARCH_SRC, requires HS_SRC_DIR and HS_ARCH
       
    46 
       
    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)
       
    53 
       
    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
       
    59