< prev index next >

jdk/make/lib/LibCommon.gmk

Print this page




   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 include $(SPEC)
  27 include MakeBase.gmk
  28 include NativeCompilation.gmk
  29 
  30 GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc
  31 
  32 # Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more
  33 # elegant solution to this.
  34 WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib
  35 
  36 ifdef OPENJDK
  37   # Build everything with debugging on OpenJDK
  38   DEBUG_ALL_BINARIES := true
  39 else
  40   # Use this variable to set DEBUG_SYMBOLS true on windows for all libraries, but
  41   # not on other platforms.
  42   ifeq ($(OPENJDK_TARGET_OS), windows)
  43     DEBUG_ALL_BINARIES := true
  44   else
  45     DEBUG_ALL_BINARIES := false
  46   endif
  47 endif


  70 FindLib = \
  71     $(call FindLibDirForModule, \
  72         $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX)
  73 
  74 
  75 ################################################################################
  76 # Define the header include flags needed to compile against it.
  77 LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java))
  78 
  79 # Put the libraries here.
  80 INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE))
  81 
  82 ################################################################################
  83 
  84 # Define it here since there are multiple uses.
  85 ifeq ($(USE_EXTERNAL_LIBZ), true)
  86   LIBZ := -lz
  87 else
  88   ZLIB_CPPFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/libzip/zlib-1.2.8
  89 endif




   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 


  26 include NativeCompilation.gmk
  27 
  28 GLOBAL_VERSION_INFO_RESOURCE := $(JDK_TOPDIR)/src/java.base/windows/native/common/version.rc
  29 
  30 # Absolute paths to lib files on windows for use in LDFLAGS. Should figure out a more
  31 # elegant solution to this.
  32 WIN_JAVA_LIB := $(SUPPORT_OUTPUTDIR)/native/java.base/libjava/java.lib
  33 
  34 ifdef OPENJDK
  35   # Build everything with debugging on OpenJDK
  36   DEBUG_ALL_BINARIES := true
  37 else
  38   # Use this variable to set DEBUG_SYMBOLS true on windows for all libraries, but
  39   # not on other platforms.
  40   ifeq ($(OPENJDK_TARGET_OS), windows)
  41     DEBUG_ALL_BINARIES := true
  42   else
  43     DEBUG_ALL_BINARIES := false
  44   endif
  45 endif


  68 FindLib = \
  69     $(call FindLibDirForModule, \
  70         $(strip $1))$(strip $3)/$(LIBRARY_PREFIX)$(strip $2)$(SHARED_LIBRARY_SUFFIX)
  71 
  72 
  73 ################################################################################
  74 # Define the header include flags needed to compile against it.
  75 LIBJAVA_HEADER_FLAGS := $(addprefix -I, $(call FindSrcDirsForLib, java.base, java))
  76 
  77 # Put the libraries here.
  78 INSTALL_LIBRARIES_HERE := $(call FindLibDirForModule, $(MODULE))
  79 
  80 ################################################################################
  81 
  82 # Define it here since there are multiple uses.
  83 ifeq ($(USE_EXTERNAL_LIBZ), true)
  84   LIBZ := -lz
  85 else
  86   ZLIB_CPPFLAGS := -I$(JDK_TOPDIR)/src/java.base/share/native/libzip/zlib-1.2.8
  87 endif
  88 
  89 ###############################################################################
< prev index next >