36506
+ − 1
#
+ − 2
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ − 3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ − 4
#
+ − 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.
+ − 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
# This makefile is called for every imported module to copy the non class
+ − 27
# contents into the exploded jdk image.
+ − 28
+ − 29
default: all
+ − 30
+ − 31
include $(SPEC)
+ − 32
include MakeBase.gmk
+ − 33
+ − 34
LIBS_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_LIBS)))
+ − 35
CMDS_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_CMDS)))
+ − 36
CONF_DIR := $(wildcard $(addsuffix /$(MODULE), $(IMPORT_MODULES_CONF)))
+ − 37
+ − 38
$(eval $(call FillCacheFind, $(LIBS_DIR) $(CMDS_DIR) $(CONF_DIR)))
+ − 39
+ − 40
ifneq ($(LIBS_DIR), )
+ − 41
ifeq ($(OPENJDK_TARGET_OS), windows)
+ − 42
TO_BIN_FILTER := %$(SHARED_LIBRARY_SUFFIX) %.diz %.pdb %.map
+ − 43
+ − 44
$(eval $(call SetupCopyFiles,COPY_LIBS_TO_BIN, \
+ − 45
SRC := $(LIBS_DIR), \
+ − 46
DEST := $(JDK_OUTPUTDIR)/bin, \
+ − 47
FILES := $(filter $(TO_BIN_FILTER), \
+ − 48
$(call CacheFind, $(LIBS_DIR))) \
+ − 49
))
+ − 50
+ − 51
$(eval $(call SetupCopyFiles,COPY_LIBS_TO_LIB, \
+ − 52
SRC := $(LIBS_DIR), \
+ − 53
DEST := $(JDK_OUTPUTDIR)/lib, \
+ − 54
FILES := $(filter-out $(TO_BIN_FILTER), \
+ − 55
$(call CacheFind, $(LIBS_DIR))) \
+ − 56
))
+ − 57
TARGETS += $(COPY_LIBS_TO_BIN) $(COPY_LIBS_TO_LIB)
+ − 58
else
+ − 59
$(eval $(call SetupCopyFiles, COPY_LIBS, \
+ − 60
SRC := $(LIBS_DIR), \
+ − 61
DEST := $(JDK_OUTPUTDIR)/lib, \
+ − 62
FILES := $(call CacheFind, $(LIBS_DIR)), \
+ − 63
))
+ − 64
TARGETS += $(COPY_LIBS)
+ − 65
endif
+ − 66
endif
+ − 67
+ − 68
ifneq ($(CMDS_DIR), )
+ − 69
$(eval $(call SetupCopyFiles, COPY_CMDS, \
+ − 70
SRC := $(CMDS_DIR), \
+ − 71
DEST := $(JDK_OUTPUTDIR)/bin, \
+ − 72
FILES := $(call CacheFind, $(CMDS_DIR)), \
+ − 73
))
+ − 74
TARGETS += $(COPY_CMDS)
+ − 75
endif
+ − 76
+ − 77
ifneq ($(CONF_DIR), )
+ − 78
$(eval $(call SetupCopyFiles, COPY_CONF, \
+ − 79
SRC := $(CONF_DIR), \
+ − 80
DEST := $(JDK_OUTPUTDIR)/lib, \
+ − 81
FILES := $(call CacheFind, $(CONF_DIR)), \
+ − 82
))
+ − 83
TARGETS += $(COPY_CONF)
+ − 84
endif
+ − 85
+ − 86
all: $(TARGETS)