< prev index next >

make/lib/Lib-jdk.internal.le.gmk

Print this page




  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 LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 ifeq ($(OPENJDK_TARGET_OS), windows)
  31 
  32   LIBLE_SRC := $(TOPDIR)/src/jdk.internal.le/$(OPENJDK_TARGET_OS_TYPE)/native/lible \
  33       #
  34   LIBLE_CPPFLAGS := \
  35       $(addprefix -I, $(LIBLE_SRC)) \
  36       -I$(SUPPORT_OUTPUTDIR)/headers/jdk.internal.le \
  37       #
  38 
  39   $(eval $(call SetupJdkLibrary, BUILD_LIBLE, \
  40       NAME := le, \
  41       SRC := $(LIBLE_SRC), \
  42       OPTIMIZATION := LOW, \
  43       CFLAGS := $(CFLAGS_JDKLIB) $(LIBJAVA_HEADER_FLAGS)\
  44           $(LIBLE_CPPFLAGS), \
  45       LDFLAGS := $(LDFLAGS_JDKLIB), \
  46       LIBS := $(JDKLIB_LIBS) user32.lib, \
  47   ))
  48 
  49   TARGETS += $(BUILD_LIBLE)
  50 
  51 endif # OPENJDK_TARGET_OS
  52 
  53 ################################################################################


  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 LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 ifeq ($(OPENJDK_TARGET_OS), windows)
  31 







  32   $(eval $(call SetupJdkLibrary, BUILD_LIBLE, \
  33       NAME := le, \

  34       OPTIMIZATION := LOW, \
  35       CFLAGS := $(CFLAGS_JDKLIB), \

  36       LDFLAGS := $(LDFLAGS_JDKLIB), \
  37       LIBS := $(JDKLIB_LIBS) user32.lib, \
  38   ))
  39 
  40   TARGETS += $(BUILD_LIBLE)
  41 
  42 endif # OPENJDK_TARGET_OS
  43 
  44 ################################################################################
< prev index next >