< prev index next >

make/copy/Copy-java.base.gmk

Print this page




 220 
 221 TARGETS += $(COPY_NET_PROPERTIES)
 222 
 223 ifeq ($(OPENJDK_TARGET_OS), solaris)
 224   $(eval $(call SetupCopyFiles, COPY_SDP_CONF, \
 225       FILES := $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/conf/sdp/sdp.conf.template, \
 226       DEST := $(CONF_DST_DIR)/sdp, \
 227   ))
 228 
 229   TARGETS += $(COPY_SDP_CONF)
 230 endif
 231 
 232 ################################################################################
 233 
 234 # JDK license and assembly exception files to be packaged in JMOD
 235 
 236 # The license files may not be present if the source has been obtained using a
 237 # different license.
 238 JDK_LICENSE ?= $(wildcard $(TOPDIR)/LICENSE)
 239 JDK_NOTICE  ?= $(wildcard $(TOPDIR)/ASSEMBLY_EXCEPTION)

 240 
 241 $(eval $(call SetupCopyFiles, COPY_JDK_NOTICES, \
 242     FILES := $(JDK_LICENSE) $(JDK_NOTICE), \
 243     DEST := $(LEGAL_DST_DIR), \
 244     FLATTEN := true, \
 245 ))
 246 
 247 TARGETS += $(COPY_JDK_NOTICES)
 248 
 249 ################################################################################
 250 # Optionally copy libffi.so.? into the the image
 251 
 252 ifeq ($(ENABLE_LIBFFI_BUNDLING), true)
 253   $(eval $(call SetupCopyFiles, COPY_LIBFFI, \
 254       FILES := $(LIBFFI_LIB_FILE), \
 255       DEST := $(call FindLibDirForModule, $(MODULE)), \
 256       FLATTEN := true, \
 257       MACRO := install-file-nolink, \
 258   ))
 259 
 260   TARGETS += $(COPY_LIBFFI)
 261 endif
 262 


 220 
 221 TARGETS += $(COPY_NET_PROPERTIES)
 222 
 223 ifeq ($(OPENJDK_TARGET_OS), solaris)
 224   $(eval $(call SetupCopyFiles, COPY_SDP_CONF, \
 225       FILES := $(TOPDIR)/src/java.base/$(OPENJDK_TARGET_OS_TYPE)/conf/sdp/sdp.conf.template, \
 226       DEST := $(CONF_DST_DIR)/sdp, \
 227   ))
 228 
 229   TARGETS += $(COPY_SDP_CONF)
 230 endif
 231 
 232 ################################################################################
 233 
 234 # JDK license and assembly exception files to be packaged in JMOD
 235 
 236 # The license files may not be present if the source has been obtained using a
 237 # different license.
 238 JDK_LICENSE ?= $(wildcard $(TOPDIR)/LICENSE)
 239 JDK_NOTICE  ?= $(wildcard $(TOPDIR)/ASSEMBLY_EXCEPTION)
 240 JDK_ADDITIONAL_LICENSE_INFO  ?= $(wildcard $(TOPDIR)/ADDITIONAL_LICENSE_INFO)
 241 
 242 $(eval $(call SetupCopyFiles, COPY_JDK_NOTICES, \
 243     FILES := $(JDK_LICENSE) $(JDK_NOTICE) $(JDK_ADDITIONAL_LICENSE_INFO), \
 244     DEST := $(LEGAL_DST_DIR), \
 245     FLATTEN := true, \
 246 ))
 247 
 248 TARGETS += $(COPY_JDK_NOTICES)
 249 
 250 ################################################################################
 251 # Optionally copy libffi.so.? into the the image
 252 
 253 ifeq ($(ENABLE_LIBFFI_BUNDLING), true)
 254   $(eval $(call SetupCopyFiles, COPY_LIBFFI, \
 255       FILES := $(LIBFFI_LIB_FILE), \
 256       DEST := $(call FindLibDirForModule, $(MODULE)), \
 257       FLATTEN := true, \
 258       MACRO := install-file-nolink, \
 259   ))
 260 
 261   TARGETS += $(COPY_LIBFFI)
 262 endif
 263 
< prev index next >