|
| 1 | +# =========================================================================== |
| 2 | +# (c) Copyright IBM Corp. 2020, 2020 All Rights Reserved |
| 3 | +# =========================================================================== |
| 4 | +# This code is free software; you can redistribute it and/or modify it |
| 5 | +# under the terms of the GNU General Public License version 2 only, as |
| 6 | +# published by the Free Software Foundation. |
| 7 | +# |
| 8 | +# IBM designates this particular file as subject to the "Classpath" exception |
| 9 | +# as provided by IBM 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, see <http://www.gnu.org/licenses/>. |
| 19 | +# =========================================================================== |
| 20 | + |
| 21 | +no_default : |
| 22 | + $(error Components.gmk has no default target) |
| 23 | + |
| 24 | +include $(SPEC) |
| 25 | +include $(TOPDIR)/closed/custom/common/ComponentsCommon.gmk |
| 26 | +include $(TOPDIR)/make/common/MakeBase.gmk |
| 27 | + |
| 28 | +CMP_TARGETS = \ |
| 29 | + $(foreach module, $(CMP_MODULES), $(addprefix $(module),-stage -libs -copy -clean)) |
| 30 | + |
| 31 | +.PHONY : no_default stage-components $(CMP_TARGETS) |
| 32 | + |
| 33 | +# copy_component_tree |
| 34 | +# ------------------- |
| 35 | +# Copy recursively source $2 to target directory $1. |
| 36 | +# pax returns an exit code >0 when $1/. is newer, ignore this. |
| 37 | +# $1 = target directory |
| 38 | +# $2 = source directory |
| 39 | +define copy_component_tree |
| 40 | + $(if $(filter 1,$(words $2)),,$(error copy_component_tree requires exactly one source directory; got '$2')) |
| 41 | + @$(MKDIR) -p $1 |
| 42 | + @$(CD) $2 ; $(PAX) -rwuC . $1 2>/dev/null || true |
| 43 | +endef |
| 44 | + |
| 45 | +# stage_module_rule |
| 46 | +# ----------------- |
| 47 | +# Copy java classes to $(SUPPORT_OUTPUTDIR)/j9jcl_sources/$1/share/classes. |
| 48 | +# $1 = module name |
| 49 | +define stage_module_rule |
| 50 | +stage-components : $1-stage |
| 51 | +$1-stage : |
| 52 | + $(call copy_component_tree,$(patsubst %,$(SUPPORT_OUTPUTDIR)/j9jcl_sources/%/share/classes,$1),$(wildcard $(TOPDIR)/*/src/$1)) |
| 53 | +endef |
| 54 | + |
| 55 | +# Targets to stage java source |
| 56 | +$(foreach module, $(CMP_MODULES), \ |
| 57 | + $(eval $(call stage_module_rule,$(module))) \ |
| 58 | +) |
| 59 | + |
| 60 | +ibm.os390.security_target := libSecurityServices.so |
| 61 | +ibm.security.auth_target := all_$(OPENJDK_BUILD_CPU_BITS) |
| 62 | + |
| 63 | +# generate_lib_target |
| 64 | +# ------------------- |
| 65 | +# $1 = module name |
| 66 | +# HEADERS_DIR should end with a slash |
| 67 | +define generate_lib_target |
| 68 | +$1-libs : |
| 69 | + @$(ECHO) Compiling $1 native |
| 70 | + $(MAKE) -C $(call find_native_src_dir,$1) \ |
| 71 | + JAVA_HOME=$(BOOT_JDK) \ |
| 72 | + HEADERS_DIR=$(SUPPORT_OUTPUTDIR)/headers/$1/ \ |
| 73 | + $$($1_target) |
| 74 | +endef |
| 75 | + |
| 76 | +# Targets to compile native code |
| 77 | +$(foreach module, $(CMP_MODULES), \ |
| 78 | + $(eval $(call generate_lib_target,$(module)))) |
| 79 | + |
| 80 | +# generate_clean_target |
| 81 | +# --------------------- |
| 82 | +# $1 = module name |
| 83 | +define generate_clean_target |
| 84 | +$1-clean : |
| 85 | + $(MAKE) -C $(call find_native_src_dir,$1) clean |
| 86 | +endef |
| 87 | + |
| 88 | +# Targets to clean natives |
| 89 | +$(foreach module, $(CMP_MODULES), \ |
| 90 | + $(eval $(call generate_clean_target,$(module)))) |
| 91 | + |
| 92 | +# add_component_natives_libs |
| 93 | +# -------------------------- |
| 94 | +# Copy native lib to $(SUPPORT_OUTPUTDIR)/modules_libs/$1 directory. |
| 95 | +# $1 = module name |
| 96 | +# $2 = file to copy |
| 97 | +define add_component_natives_libs |
| 98 | +$1-copy : $(call FindLibDirForModule,$1)/$(notdir $2) |
| 99 | +$(call FindLibDirForModule,$1)/$(notdir $2) : $2 |
| 100 | + $$(call install-file) |
| 101 | +endef |
| 102 | + |
| 103 | +# Targets to copy native libs |
| 104 | +$(foreach module, $(CMP_MODULES), \ |
| 105 | + $(foreach file, \ |
| 106 | + $(wildcard $(call find_native_src_dir,$(module))/*$(SHARED_LIBRARY_SUFFIX)), \ |
| 107 | + $(eval $(call add_component_natives_libs,$(module),$(file))))) |
0 commit comments