2
# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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. 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.
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).
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.
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
26
# This makefile is called for every imported module to copy the non class
27
# contents into the exploded jdk image.
36
LIBS_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_LIBS)))
37
CMDS_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_CMDS)))
38
CONF_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_CONF)))
40
$(call FillFindCache, $(LIBS_DIR) $(CMDS_DIR) $(CONF_DIR))
43
ifeq ($(call isTargetOs, windows), true)
44
TO_BIN_FILTER := %$(SHARED_LIBRARY_SUFFIX) %.diz %.pdb %.map
46
$(eval $(call SetupCopyFiles, COPY_LIBS_TO_BIN, \
48
DEST := $(JDK_OUTPUTDIR)/bin, \
49
FILES := $(filter $(TO_BIN_FILTER), \
50
$(call FindFiles, $(LIBS_DIR))) \
53
$(eval $(call SetupCopyFiles, COPY_LIBS_TO_LIB, \
55
DEST := $(JDK_OUTPUTDIR)/lib, \
56
FILES := $(filter-out $(TO_BIN_FILTER), \
57
$(call FindFiles, $(LIBS_DIR))) \
59
TARGETS += $(COPY_LIBS_TO_BIN) $(COPY_LIBS_TO_LIB)
61
$(eval $(call SetupCopyFiles, COPY_LIBS, \
63
DEST := $(JDK_OUTPUTDIR)/lib, \
64
FILES := $(filter %$(SHARED_LIBRARY_SUFFIX), $(call FindFiles, $(LIBS_DIR))), \
67
# Use relative links if the import dir is inside the OUTPUTDIR, otherwise
68
# copy to avoid having automated systems following symlinks when deleting files,
69
# or risk invalidating the build output from external changes.
70
ifeq ($(filter $(OUTPUTDIR)/%, $(LIBS_DIR)), )
71
LINK_MACRO := install-file
74
LINK_MACRO := link-file-relative
75
LOG_ACTION := Creating symlink
77
$(eval $(call SetupCopyFiles, LINK_LIBS, \
79
DEST := $(JDK_OUTPUTDIR)/lib, \
80
FILES := $(filter-out %$(SHARED_LIBRARY_SUFFIX), $(call FindFiles, $(LIBS_DIR))), \
81
MACRO := $(LINK_MACRO), \
82
LOG_ACTION := $(LOG_ACTION), \
84
TARGETS += $(COPY_LIBS) $(LINK_LIBS)
89
$(eval $(call SetupCopyFiles, COPY_CMDS, \
91
DEST := $(JDK_OUTPUTDIR)/bin, \
92
FILES := $(call FindFiles, $(CMDS_DIR)), \
94
TARGETS += $(COPY_CMDS)
98
$(eval $(call SetupCopyFiles, COPY_CONF, \
100
DEST := $(JDK_OUTPUTDIR)/lib, \
101
FILES := $(call FindFiles, $(CONF_DIR)), \
103
TARGETS += $(COPY_CONF)