< prev index next >

make/modules/jdk.net/Lib.gmk

Print this page
rev 59102 : imported patch build


  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 LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 ifeq ($(call isTargetOs, solaris linux macosx), true)
  31 
  32   $(eval $(call SetupJdkLibrary, BUILD_LIBEXTNET, \
  33       NAME := extnet, \
  34       OPTIMIZATION := LOW, \
  35       CFLAGS := $(CFLAGS_JDKLIB), \
  36       LDFLAGS := $(LDFLAGS_JDKLIB) \
  37           $(call SET_SHARED_LIBRARY_ORIGIN), \
  38       LIBS := -ljava, \
  39       LIBS_solaris := -lsocket, \
  40       LIBS_linux := -ljvm, \
  41   ))
  42 
  43   $(BUILD_LIBEXTNET): $(call FindLib, java.base, java)
  44 
  45   TARGETS += $(BUILD_LIBEXTNET)
  46 endif
  47 
  48 ################################################################################


  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 LibCommon.gmk
  27 
  28 ################################################################################
  29 
  30 ifeq ($(call isTargetOs, linux macosx), true)
  31 
  32   $(eval $(call SetupJdkLibrary, BUILD_LIBEXTNET, \
  33       NAME := extnet, \
  34       OPTIMIZATION := LOW, \
  35       CFLAGS := $(CFLAGS_JDKLIB), \
  36       LDFLAGS := $(LDFLAGS_JDKLIB) \
  37           $(call SET_SHARED_LIBRARY_ORIGIN), \
  38       LIBS := -ljava, \

  39       LIBS_linux := -ljvm, \
  40   ))
  41 
  42   $(BUILD_LIBEXTNET): $(call FindLib, java.base, java)
  43 
  44   TARGETS += $(BUILD_LIBEXTNET)
  45 endif
  46 
  47 ################################################################################
< prev index next >