author | ihse |
Thu, 13 Feb 2014 00:01:07 +0100 | |
changeset 22963 | a28e6f0b511b |
parent 22342 | c83795c442b7 |
child 23347 | acb1d044a217 |
permissions | -rw-r--r-- |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
1 |
# |
22963
a28e6f0b511b
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22342
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved. |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
3 |
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
4 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
5 |
# This code is free software; you can redistribute it and/or modify it |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
6 |
# under the terms of the GNU General Public License version 2 only, as |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
7 |
# published by the Free Software Foundation. Oracle designates this |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
8 |
# particular file as subject to the "Classpath" exception as provided |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
9 |
# by Oracle in the LICENSE file that accompanied this code. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
10 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
15 |
# accompanied this code). |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
16 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
17 |
# You should have received a copy of the GNU General Public License version |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
20 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
21 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
22 |
# or visit www.oracle.com if you need additional information or have any |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
23 |
# questions. |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
24 |
# |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
25 |
|
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
26 |
include $(SPEC) |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
27 |
include MakeBase.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
28 |
include JavaCompilation.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
29 |
include Setup.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
30 |
|
12892 | 31 |
default: images |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
32 |
|
15126
bceb690ccf35
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14596
diff
changeset
|
33 |
# Prepare the find cache. Only used if running on windows. |
20547 | 34 |
$(eval $(call FillCacheFind, \ |
15126
bceb690ccf35
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14596
diff
changeset
|
35 |
$(wildcard $(JDK_OUTPUTDIR)/bin \ |
20547 | 36 |
$(JDK_OUTPUTDIR)/lib \ |
37 |
$(IMAGES_OUTPUTDIR)/lib \ |
|
38 |
$(JDK_OUTPUTDIR)/include \ |
|
39 |
$(JDK_OUTPUTDIR)/sample \ |
|
40 |
$(JDK_OUTPUTDIR)/demo))) |
|
15126
bceb690ccf35
8005540: build-infra: Improve incremental build speed on windows by caching find results
erikj
parents:
14596
diff
changeset
|
41 |
|
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
42 |
include Tools.gmk |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
43 |
|
15681 | 44 |
include Profiles.gmk |
45 |
||
13702 | 46 |
# Note: This double-colon rule is intentional, to support |
47 |
# custom make file integration. |
|
48 |
images:: jre-image jdk-image |
|
49 |
||
50 |
overlay-images: jre-overlay-image jdk-overlay-image |
|
51 |
||
52 |
||
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
53 |
|
13702 | 54 |
# Processing license files from source area to image area |
55 |
# These will be modified to have the platform specific EOL chars. |
|
56 |
define process-doc-file |
|
14231 | 57 |
$(ECHO) $(LOG_INFO) Processing $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
13702 | 58 |
$(MKDIR) -p $(@D) |
59 |
$(RM) $@ |
|
15823
9882cddb33b9
8007387: "sed: RE error: illegal byte sequence" when building images on Mac
erikj
parents:
15693
diff
changeset
|
60 |
LC_ALL=C $(SED) 's/$$//g' $< > $@ |
13702 | 61 |
$(CHMOD) 444 $@ |
62 |
endef |
|
63 |
||
14231 | 64 |
define AddFileToCopy |
65 |
# Param 1 - src root dir |
|
66 |
# Param 2 - dest root dir |
|
67 |
# Param 3 - src file |
|
68 |
# Param 4 - variable to add targets to |
|
69 |
||
70 |
# Remove src dir root from src file |
|
71 |
$2_$3_FILE := $$(patsubst $1/%,%,$3) |
|
72 |
||
73 |
$2/$$($2_$3_FILE): $3 |
|
74 |
$(ECHO) $(LOG_INFO) Copying $$(patsubst $(OUTPUT_ROOT)/%,%,$$@) |
|
75 |
$$(install-file) |
|
76 |
||
77 |
$4 += $2/$$($2_$3_FILE) |
|
78 |
endef |
|
13702 | 79 |
|
12892 | 80 |
################################################################################ |
81 |
# |
|
82 |
# JRE and JDK build rules |
|
83 |
# |
|
84 |
################################################################################ |
|
13702 | 85 |
# |
86 |
# Variable prefixes explained: |
|
15681 | 87 |
# JRE_ refers to files in the j2re-*-image. |
13702 | 88 |
# JDK_ refers to files in the j2sdk-image outside of the jre subdir. |
89 |
# JDKJRE_ refers to files in the j2sdk-image inside the jre subdir. |
|
90 |
# |
|
12892 | 91 |
|
92 |
################################################################################ |
|
93 |
# /bin dir |
|
94 |
||
20547 | 95 |
ifeq ($(PROFILE), ) |
96 |
NOT_JRE_BIN_FILES := \ |
|
97 |
appletviewer$(EXE_SUFFIX) \ |
|
98 |
extcheck$(EXE_SUFFIX) \ |
|
99 |
idlj$(EXE_SUFFIX) \ |
|
100 |
jar$(EXE_SUFFIX) \ |
|
101 |
jarsigner$(EXE_SUFFIX) \ |
|
102 |
java-rmi.cgi \ |
|
103 |
javac$(EXE_SUFFIX) \ |
|
104 |
javadoc$(EXE_SUFFIX) \ |
|
105 |
javah$(EXE_SUFFIX) \ |
|
106 |
javap$(EXE_SUFFIX) \ |
|
107 |
jdeps$(EXE_SUFFIX) \ |
|
108 |
jcmd$(EXE_SUFFIX) \ |
|
109 |
jdb$(EXE_SUFFIX) \ |
|
110 |
jps$(EXE_SUFFIX) \ |
|
111 |
jrunscript$(EXE_SUFFIX) \ |
|
112 |
jstat$(EXE_SUFFIX) \ |
|
113 |
jstatd$(EXE_SUFFIX) \ |
|
114 |
jstack$(EXE_SUFFIX) \ |
|
115 |
packagebean$(SCRIPT_SUFFIX) \ |
|
116 |
rmic$(EXE_SUFFIX) \ |
|
117 |
serialver$(EXE_SUFFIX) \ |
|
118 |
unregbean$(EXE_SUFFIX) \ |
|
119 |
jconsole$(EXE_SUFFIX) \ |
|
120 |
jinfo$(EXE_SUFFIX) \ |
|
121 |
jmap$(EXE_SUFFIX) \ |
|
122 |
native2ascii$(EXE_SUFFIX) \ |
|
123 |
xjc$(EXE_SUFFIX) \ |
|
124 |
wsgen$(EXE_SUFFIX) \ |
|
125 |
wsimport$(EXE_SUFFIX) \ |
|
126 |
schemagen$(EXE_SUFFIX) \ |
|
127 |
jsadebugd$(EXE_SUFFIX) \ |
|
128 |
jhat$(EXE_SUFFIX) |
|
15681 | 129 |
endif |
12892 | 130 |
|
131 |
WINDOWS_JDK_BIN_FILES = \ |
|
20547 | 132 |
$(EXE_SUFFIX) \ |
133 |
$(LIBRARY_PREFIX)jli$(SHARED_LIBRARY_SUFFIX) \ |
|
134 |
$(notdir $(MSVCR_DLL)) |
|
13702 | 135 |
|
136 |
WINDOWS_JDKJRE_BIN_FILES := \ |
|
20547 | 137 |
$(LIBRARY_PREFIX)attach$(SHARED_LIBRARY_SUFFIX) \ |
138 |
$(SALIB_NAME) |
|
12892 | 139 |
|
140 |
# Find all files in bin dir |
|
20547 | 141 |
ALL_BIN_LIST := $(call CacheFind, $(JDK_OUTPUTDIR)/bin) |
13164 | 142 |
|
14231 | 143 |
# Prevent sjavac from entering the images. |
20547 | 144 |
ALL_BIN_LIST := $(filter-out %/sjavac, $(ALL_BIN_LIST)) |
14231 | 145 |
|
13702 | 146 |
# For unknown reason the debuginfo files for executables are not put into images |
13164 | 147 |
# e.g filter them out |
20547 | 148 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
149 |
ALL_BIN_LIST := $(filter-out %.debuginfo %.diz, $(ALL_BIN_LIST)) |
|
13702 | 150 |
else |
20547 | 151 |
# On windows, the libraries are in the bin dir, only filter out debuginfo files |
152 |
# for executables. "java" is both a library and executable. |
|
153 |
ALL_BIN_EXEC_FILES := $(filter-out java.exe, $(notdir $(filter %.exe, $(ALL_BIN_LIST)))) |
|
154 |
ALL_BIN_DEBUG_FILTER := $(addprefix %, $(patsubst %.exe, %.debuginfo, $(ALL_BIN_EXEC_FILES)) \ |
|
155 |
$(patsubst %.exe, %.diz, $(ALL_BIN_EXEC_FILES))) %.pdb |
|
156 |
ALL_BIN_LIST := $(filter-out $(ALL_BIN_DEBUG_FILTER), $(ALL_BIN_LIST)) |
|
13702 | 157 |
endif |
13164 | 158 |
|
20547 | 159 |
JDKJRE_BIN_LIST := $(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES)), $(ALL_BIN_LIST)) |
160 |
JRE_BIN_LIST := $(filter-out $(addprefix %, $(WINDOWS_JDKJRE_BIN_FILES)), $(JDKJRE_BIN_LIST)) |
|
14231 | 161 |
|
20547 | 162 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
163 |
JDK_BIN_LIST := $(filter $(addprefix %, $(WINDOWS_JDK_BIN_FILES)), $(ALL_BIN_LIST)) |
|
164 |
# On windows x86, the server jvm is filtered out from the j2re image. This could possibly |
|
165 |
# be handled by profiles in the future. If no client jvm is built, leave server in. |
|
166 |
ifeq ($(OPENJDK_TARGET_CPU), x86) |
|
167 |
ifeq ($(JVM_VARIANT_CLIENT), true) |
|
168 |
JRE_BIN_LIST := $(filter-out $(JDK_OUTPUTDIR)/bin/server/%, $(JRE_BIN_LIST)) |
|
14231 | 169 |
endif |
20547 | 170 |
endif |
12892 | 171 |
else |
20547 | 172 |
JDK_BIN_LIST := $(ALL_BIN_LIST) |
12892 | 173 |
endif |
13702 | 174 |
|
20547 | 175 |
ifneq ($(OPENJDK_TARGET_CPU_ISADIR), ) |
176 |
OVERLAY_FILTER := $(JDK_OUTPUTDIR)/bin$(OPENJDK_TARGET_CPU_ISADIR)% |
|
13702 | 177 |
endif |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
178 |
|
20547 | 179 |
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JRE_BIN_LIST)), \ |
14231 | 180 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_BIN_TARGETS))) |
20547 | 181 |
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JDK_BIN_LIST)), \ |
14231 | 182 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_BIN_TARGETS))) |
20547 | 183 |
$(foreach f,$(filter-out $(OVERLAY_FILTER),$(JDKJRE_BIN_LIST)), \ |
14231 | 184 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_BIN_TARGETS))) |
13702 | 185 |
|
20547 | 186 |
$(foreach f,$(filter $(OVERLAY_FILTER),$(JRE_BIN_LIST)), \ |
14231 | 187 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_OVERLAY_IMAGE_DIR),$f,JRE_BIN_TARGETS))) |
20547 | 188 |
$(foreach f,$(filter $(OVERLAY_FILTER),$(JDK_BIN_LIST)), \ |
14231 | 189 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR),$f,JDK_BIN_TARGETS))) |
20547 | 190 |
$(foreach f,$(filter $(OVERLAY_FILTER),$(JDKJRE_BIN_LIST)), \ |
14231 | 191 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR)/jre,$f,JDKJRE_BIN_TARGETS))) |
12892 | 192 |
|
193 |
################################################################################ |
|
194 |
# /lib dir |
|
13702 | 195 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
20547 | 196 |
JDKJRE_LIB_FILES := \ |
197 |
$(LIBRARY_PREFIX)attach$(SHARED_LIBRARY_SUFFIX) \ |
|
198 |
$(SALIB_NAME) |
|
13702 | 199 |
endif |
12892 | 200 |
|
20547 | 201 |
ifeq ($(PROFILE), ) |
202 |
NOT_JRE_LIB_FILES := \ |
|
203 |
tools.jar \ |
|
204 |
jconsole.jar \ |
|
205 |
sa-jdi.jar \ |
|
206 |
dt.jar \ |
|
207 |
orb.idl \ |
|
208 |
ir.idl \ |
|
209 |
ct.sym |
|
12892 | 210 |
|
20547 | 211 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
212 |
NOT_JRE_LIB_FILES += jawt.lib jvm.lib |
|
213 |
endif |
|
13702 | 214 |
endif |
215 |
||
12892 | 216 |
JDK_LIB_FILES := $(NOT_JRE_LIB_FILES) |
13164 | 217 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
20547 | 218 |
JDK_LIB_FILES += jexec |
12892 | 219 |
endif |
220 |
||
20812 | 221 |
ifneq ($(findstring $(OPENJDK_TARGET_OS), linux solaris),) # If Linux or Solaris |
222 |
JDK_LIB_FILES += $(LIBRARY_PREFIX)jli$(SHARED_LIBRARY_SUFFIX) \ |
|
223 |
$(LIBRARY_PREFIX)jawt$(SHARED_LIBRARY_SUFFIX) |
|
224 |
endif |
|
225 |
||
14231 | 226 |
# Find all files to copy from $(JDK_OUTPUTDIR)/lib |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14231
diff
changeset
|
227 |
# Jar files are not expected to be here |
20547 | 228 |
ALL_JDKOUT_LIB_LIST := $(call not-containing,_the., $(filter-out %.jar, \ |
229 |
$(call CacheFind, $(JDK_OUTPUTDIR)/lib))) |
|
14231 | 230 |
# Find all files to copy from $(IMAGES_OUTPUTDIR)/lib |
14596
a1f29d55b5ee
8004281: build-infra: Move all jar creation to images target and put jars in images/lib
erikj
parents:
14231
diff
changeset
|
231 |
# This is were the jar files are and might not exist if building overlay-images |
20547 | 232 |
ifneq ($(wildcard $(IMAGES_OUTPUTDIR)/lib), ) |
233 |
ALL_IMAGES_LIB_LIST := $(call not-containing,_the., \ |
|
234 |
$(call CacheFind, $(IMAGES_OUTPUTDIR)/lib)) |
|
14231 | 235 |
endif |
236 |
||
237 |
# Filter files to copy for each destination |
|
20547 | 238 |
JRE_JDKOUT_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \ |
239 |
$(ALL_JDKOUT_LIB_LIST)) |
|
240 |
JDKJRE_JDKOUT_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES)), $(ALL_JDKOUT_LIB_LIST)) |
|
241 |
JDK_JDKOUT_LIB_LIST := $(filter $(addprefix %, $(JDK_LIB_FILES)), $(ALL_JDKOUT_LIB_LIST)) |
|
14231 | 242 |
|
20547 | 243 |
JRE_IMAGES_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \ |
244 |
$(ALL_IMAGES_LIB_LIST)) |
|
245 |
JDKJRE_IMAGES_LIB_LIST := $(filter-out $(addprefix %, $(NOT_JRE_LIB_FILES)), $(ALL_IMAGES_LIB_LIST)) |
|
246 |
JDK_IMAGES_LIB_LIST := $(filter $(addprefix %, $(JDK_LIB_FILES)), $(ALL_IMAGES_LIB_LIST)) |
|
12892 | 247 |
|
14231 | 248 |
# Iterate over files to copy to create rules for each one |
20547 | 249 |
$(foreach f,$(JRE_JDKOUT_LIB_LIST), \ |
14231 | 250 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_LIB_TARGETS))) |
20547 | 251 |
$(foreach f,$(JDK_JDKOUT_LIB_LIST), \ |
14231 | 252 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_LIB_TARGETS))) |
20547 | 253 |
$(foreach f,$(JDKJRE_JDKOUT_LIB_LIST), \ |
14231 | 254 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_LIB_TARGETS))) |
12892 | 255 |
|
20547 | 256 |
$(foreach f,$(JRE_IMAGES_LIB_LIST), \ |
14231 | 257 |
$(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JRE_IMAGE_DIR),$f,JRE_LIB_TARGETS))) |
20547 | 258 |
$(foreach f,$(JDK_IMAGES_LIB_LIST), \ |
14231 | 259 |
$(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_LIB_TARGETS))) |
20547 | 260 |
$(foreach f,$(JDKJRE_IMAGES_LIB_LIST), \ |
14231 | 261 |
$(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR),$(JDK_IMAGE_DIR)/jre,$f,JDKJRE_LIB_TARGETS))) |
262 |
||
20547 | 263 |
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JRE_JDKOUT_LIB_LIST)), \ |
14231 | 264 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JRE_OVERLAY_IMAGE_DIR),$f,JRE_OVERLAY_LIB_TARGETS))) |
20547 | 265 |
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JDK_JDKOUT_LIB_LIST)), \ |
14231 | 266 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR),$f,JDK_OVERLAY_LIB_TARGETS))) |
20547 | 267 |
$(foreach f,$(filter $(JDK_OUTPUTDIR)/lib$(OPENJDK_TARGET_CPU_ISADIR)/%,$(JDKJRE_JDKOUT_LIB_LIST)), \ |
14231 | 268 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR)/jre,$f,JDKJRE_OVERLAY_LIB_TARGETS))) |
13702 | 269 |
|
20547 | 270 |
ifneq ($(PROFILE), ) |
271 |
# Files in lib$(PROFILE) are excluded from the generic copying routines so |
|
272 |
# we have to add them back in here |
|
273 |
$(foreach f,$(CUSTOM_PROFILE_JARS), \ |
|
274 |
$(eval $(call AddFileToCopy,$(IMAGES_OUTPUTDIR)/lib$(PROFILE),$(JRE_IMAGE_DIR)/lib,$f,JRE_LIB_TARGETS))) |
|
15885
1729959f3994
8009695: embedded/GP/RI: This intermittent error happens too often, makes the build unstable, and waste machine
erikj
parents:
15823
diff
changeset
|
275 |
endif |
1729959f3994
8009695: embedded/GP/RI: This intermittent error happens too often, makes the build unstable, and waste machine
erikj
parents:
15823
diff
changeset
|
276 |
|
12892 | 277 |
# CTE plugin security change require new empty directory lib/applet |
20547 | 278 |
$(JRE_IMAGE_DIR)/lib/applet: |
14231 | 279 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 280 |
$(MKDIR) -p $@ |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
281 |
|
20547 | 282 |
$(JDK_IMAGE_DIR)/jre/lib/applet: |
14231 | 283 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 284 |
$(MKDIR) -p $@ |
285 |
||
286 |
$(JRE_IMAGE_DIR)/lib/meta-index: $(JRE_LIB_TARGETS) |
|
14231 | 287 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
22307 | 288 |
$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar |
12892 | 289 |
|
290 |
$(JDK_IMAGE_DIR)/jre/lib/meta-index: $(JDKJRE_LIB_TARGETS) |
|
14231 | 291 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
22307 | 292 |
$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar |
12892 | 293 |
|
294 |
$(JRE_IMAGE_DIR)/lib/ext/meta-index: $(JRE_LIB_TARGETS) |
|
14231 | 295 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 296 |
$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
297 |
|
13702 | 298 |
$(JDK_IMAGE_DIR)/jre/lib/ext/meta-index: $(JDKJRE_LIB_TARGETS) |
14231 | 299 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 300 |
$(CD) $(@D) && $(TOOL_BUILDMETAINDEX) -o meta-index *.jar |
301 |
||
302 |
################################################################################ |
|
303 |
# /man dir |
|
14231 | 304 |
# Avoid evaluating this whole section on windows for speed and stability |
20547 | 305 |
ifneq ($(OPENJDK_TARGET_OS), windows) |
306 |
JRE_MAN_PAGES := \ |
|
307 |
java.1 \ |
|
308 |
keytool.1 \ |
|
309 |
orbd.1 \ |
|
310 |
pack200.1 \ |
|
311 |
policytool.1 \ |
|
312 |
rmid.1 \ |
|
313 |
rmiregistry.1 \ |
|
314 |
servertool.1 \ |
|
315 |
tnameserv.1 \ |
|
316 |
unpack200.1 |
|
12892 | 317 |
|
20547 | 318 |
ifndef OPENJDK |
20550
f9e9b021bee7
8026500: [infra] remove extraneous docs in solaris images
ksrini
parents:
20547
diff
changeset
|
319 |
ifneq ($(OPENJDK_TARGET_OS), solaris) |
f9e9b021bee7
8026500: [infra] remove extraneous docs in solaris images
ksrini
parents:
20547
diff
changeset
|
320 |
JRE_MAN_PAGES += javaws.1 |
f9e9b021bee7
8026500: [infra] remove extraneous docs in solaris images
ksrini
parents:
20547
diff
changeset
|
321 |
endif |
20547 | 322 |
endif |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
323 |
|
20547 | 324 |
JDK_MAN_PAGES = \ |
325 |
$(JRE_MAN_PAGES) \ |
|
326 |
appletviewer.1 \ |
|
327 |
extcheck.1 \ |
|
328 |
idlj.1 \ |
|
329 |
jar.1 \ |
|
330 |
jarsigner.1 \ |
|
331 |
javac.1 \ |
|
332 |
javadoc.1 \ |
|
333 |
javah.1 \ |
|
334 |
javap.1 \ |
|
335 |
jconsole.1 \ |
|
336 |
jcmd.1 \ |
|
337 |
jdb.1 \ |
|
338 |
jhat.1 \ |
|
339 |
jinfo.1 \ |
|
340 |
jmap.1 \ |
|
341 |
jps.1 \ |
|
342 |
jrunscript.1 \ |
|
343 |
jsadebugd.1 \ |
|
344 |
jstack.1 \ |
|
345 |
jstat.1 \ |
|
346 |
jstatd.1 \ |
|
347 |
native2ascii.1 \ |
|
348 |
rmic.1 \ |
|
349 |
schemagen.1 \ |
|
350 |
serialver.1 \ |
|
351 |
wsgen.1 \ |
|
352 |
wsimport.1 \ |
|
353 |
xjc.1 |
|
12892 | 354 |
|
20547 | 355 |
ifndef OPENJDK |
356 |
JDK_MAN_PAGES += jvisualvm.1 |
|
357 |
endif |
|
13497
2c09fb7cdf7f
7192804: Build should not install jvisualvm man page for OpenJDK
andrew
parents:
13164
diff
changeset
|
358 |
|
20547 | 359 |
# This variable is potentially overridden in the closed makefile. |
360 |
MAN_SRC_BASEDIR ?= $(JDK_TOPDIR)/src |
|
17049
a7caf0d4cb98
8013552: Add build support for different man pages for OpenJDK and OracleJDK
erikj
parents:
16511
diff
changeset
|
361 |
|
20547 | 362 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
363 |
MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/linux/doc |
|
364 |
MAN1_SUBDIR := man |
|
365 |
endif |
|
366 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
|
367 |
MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/solaris/doc |
|
368 |
MAN1_SUBDIR := sun/man/man1 |
|
369 |
endif |
|
370 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
|
371 |
MAN_SRC_DIR := $(MAN_SRC_BASEDIR)/bsd/doc |
|
372 |
MAN1_SUBDIR := man |
|
373 |
JDK_MAN_PAGES := $(filter-out jcmd.1, $(JDK_MAN_PAGES)) |
|
374 |
JDK_MAN_PAGES := $(filter-out jvisualvm.1, $(JDK_MAN_PAGES)) |
|
375 |
endif |
|
13164 | 376 |
|
12892 | 377 |
|
20547 | 378 |
$(JRE_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
14231 | 379 |
$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 380 |
$(install-file) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
381 |
|
20547 | 382 |
$(JDK_IMAGE_DIR)/man/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/% |
14231 | 383 |
$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 384 |
$(install-file) |
385 |
||
20547 | 386 |
$(JRE_IMAGE_DIR)/man/man1/%: $(JDK_OUTPUTDIR)/impdoc/$(MAN1_SUBDIR)/% |
14231 | 387 |
$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 388 |
$(install-file) |
389 |
||
20547 | 390 |
$(JDK_IMAGE_DIR)/man/man1/%: $(JDK_OUTPUTDIR)/impdoc/$(MAN1_SUBDIR)/% |
14231 | 391 |
$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 392 |
$(install-file) |
393 |
||
20547 | 394 |
define install-ja-manpage |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
395 |
$(MKDIR) -p $(@D) |
12892 | 396 |
$(CAT) $< \ |
20547 | 397 |
| $(NATIVE2ASCII) -encoding eucJP \ |
398 |
| $(SED) 's/@@VERSION@@/$(THIS_JDK_VERSION)/g' \ |
|
399 |
| $(NATIVE2ASCII) -reverse -encoding $1 \ |
|
400 |
> $@ |
|
401 |
endef |
|
12892 | 402 |
|
20547 | 403 |
$(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
14231 | 404 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
20547 | 405 |
$(call install-ja-manpage, UTF-8) |
12892 | 406 |
|
20547 | 407 |
$(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
14231 | 408 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
20547 | 409 |
$(call install-ja-manpage, UTF-8) |
12892 | 410 |
|
20547 | 411 |
$(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
14231 | 412 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
20547 | 413 |
$(call install-ja-manpage, PCK) |
12892 | 414 |
|
20547 | 415 |
$(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
14231 | 416 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
20547 | 417 |
$(call install-ja-manpage, PCK) |
12892 | 418 |
|
20547 | 419 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
420 |
$(JRE_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
|
421 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
422 |
$(install-file) |
|
12892 | 423 |
|
20547 | 424 |
$(JDK_IMAGE_DIR)/man/ja/man1/%: $(MAN_SRC_DIR)/$(MAN1_SUBDIR)/ja/% |
425 |
$(ECHO) $(LOG_INFO) Converting $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
426 |
$(install-file) |
|
427 |
endif |
|
12892 | 428 |
|
20547 | 429 |
# Old build creates empty man page for this, mimicing behaviour. |
430 |
$(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/jcmd.1 $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/jcmd.1 $(JDK_IMAGE_DIR)/man/ja/man1/jcmd.1: |
|
14231 | 431 |
$(ECHO) $(LOG_INFO) Creating dummy $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 432 |
$(MKDIR) -p $(@D) |
12317
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
433 |
$(TOUCH) $@ |
9670c1610c53
7074397: Build infrastructure changes (makefile re-write)
ohair
parents:
diff
changeset
|
434 |
|
20547 | 435 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
436 |
$(JRE_IMAGE_DIR)/man/ja: |
|
437 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
438 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
|
13164 | 439 |
|
20547 | 440 |
$(JDK_IMAGE_DIR)/man/ja: |
441 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
442 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
|
443 |
endif |
|
13164 | 444 |
|
20547 | 445 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
446 |
$(JRE_IMAGE_DIR)/man/ja: |
|
447 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
448 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
|
12892 | 449 |
|
20547 | 450 |
$(JDK_IMAGE_DIR)/man/ja: |
451 |
$(ECHO) $(LOG_INFO) Creating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
|
452 |
$(CD) $(@D) && $(RM) ja && $(LN) -s ja_JP.UTF-8 ja |
|
453 |
endif |
|
12892 | 454 |
|
20547 | 455 |
ifeq ($(OPENJDK_TARGET_OS), linux) |
456 |
JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
457 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
458 |
$(JRE_IMAGE_DIR)/man/ja |
|
12892 | 459 |
|
20547 | 460 |
JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
461 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
462 |
$(JDK_IMAGE_DIR)/man/ja |
|
463 |
endif |
|
12892 | 464 |
|
20547 | 465 |
ifeq ($(OPENJDK_TARGET_OS), solaris) |
466 |
JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
467 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja/man1/, $(JRE_MAN_PAGES)) \ |
|
468 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
469 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JRE_MAN_PAGES)) |
|
12892 | 470 |
|
20547 | 471 |
JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
472 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja/man1/, $(JDK_MAN_PAGES)) \ |
|
473 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
474 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.PCK/man1/, $(JDK_MAN_PAGES)) |
|
475 |
endif |
|
12892 | 476 |
|
20547 | 477 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
478 |
JRE_MAN_PAGE_LIST := $(addprefix $(JRE_IMAGE_DIR)/man/man1/, $(JRE_MAN_PAGES)) \ |
|
479 |
$(addprefix $(JRE_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JRE_MAN_PAGES)) \ |
|
480 |
$(JRE_IMAGE_DIR)/man/ja |
|
13164 | 481 |
|
20547 | 482 |
JDK_MAN_PAGE_LIST := $(addprefix $(JDK_IMAGE_DIR)/man/man1/, $(JDK_MAN_PAGES)) \ |
483 |
$(addprefix $(JDK_IMAGE_DIR)/man/ja_JP.UTF-8/man1/, $(JDK_MAN_PAGES)) \ |
|
484 |
$(JDK_IMAGE_DIR)/man/ja |
|
485 |
endif |
|
14231 | 486 |
|
487 |
endif # Windows |
|
13164 | 488 |
|
12892 | 489 |
################################################################################ |
490 |
# /demo dir |
|
491 |
||
13702 | 492 |
# FIXME: demo/applets/GraphLayout/GraphPanel$2.class is sometimes not copied. |
12892 | 493 |
|
20547 | 494 |
# The db demo contains an empty dir that needs to be copied. The other |
495 |
# directories will always trigger the rule for recompile since |
|
496 |
# _the.list_of_packages files are touched. |
|
14231 | 497 |
$(JDK_IMAGE_DIR)/demo/%: $(JDK_OUTPUTDIR)/demo/% |
12892 | 498 |
if [ ! -d "$@" ]; then \ |
14231 | 499 |
$(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)'; \ |
12892 | 500 |
$(MKDIR) -p $(@D); \ |
501 |
if [ -d "$<" ]; then $(MKDIR) -p $@; else $(CP) '$<' '$@'; fi \ |
|
502 |
fi |
|
503 |
||
20547 | 504 |
# Find all files including directories |
505 |
JDK_DEMO_TARGETS := $(patsubst $(JDK_OUTPUTDIR)/demo/%, $(JDK_IMAGE_DIR)/demo/%, \ |
|
506 |
$(shell $(FIND) $(JDK_OUTPUTDIR)/demo ! \( -name "_the*" -o -name "javac_state" \) )) |
|
13702 | 507 |
|
508 |
||
509 |
||
14231 | 510 |
# Param 1 is source file |
511 |
define CreateOverlayDemoRule |
|
20547 | 512 |
$1_TARGET := $$(subst $(JDK_OUTPUTDIR),$(JDK_OVERLAY_IMAGE_DIR), \ |
513 |
$$(dir $1)$(OPENJDK_TARGET_CPU_ISADIR)/$$(notdir $1)) |
|
514 |
$$($1_TARGET): $1 |
|
515 |
$(ECHO) $(LOG_INFO) Copying '$$(patsubst $(OUTPUT_ROOT)/%,%,$$@)' |
|
516 |
$$(call install-file) |
|
13702 | 517 |
|
20547 | 518 |
JDK_OVERLAY_DEMO_TARGETS += $$($1_TARGET) |
14231 | 519 |
endef |
20547 | 520 |
JDK_OVERLAY_DEMO_SOURCES := $(filter %$(SHARED_LIBRARY_SUFFIX), $(call CacheFind, $(JDK_OUTPUTDIR)/demo)) |
521 |
$(foreach lib, $(JDK_OVERLAY_DEMO_SOURCES), $(eval $(call CreateOverlayDemoRule, $(lib)))) |
|
12892 | 522 |
|
523 |
################################################################################ |
|
524 |
# /sample dir |
|
525 |
||
20547 | 526 |
$(foreach f,$(call CacheFind,$(JDK_OUTPUTDIR)/sample), \ |
14231 | 527 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_SAMPLE_TARGETS))) |
12892 | 528 |
|
529 |
################################################################################ |
|
530 |
# /db dir |
|
531 |
||
532 |
ifndef OPENJDK |
|
20547 | 533 |
$(IMAGES_OUTPUTDIR)/_unzip/%.unzipped: $(JDK_TOPDIR)/src/closed/share/db/% |
12892 | 534 |
$(ECHO) Unzipping $(patsubst $(SRC_ROOT)/%,%,$<) |
535 |
$(MKDIR) -p $(JDK_IMAGE_DIR)/db |
|
17428 | 536 |
cd $(JDK_IMAGE_DIR)/db && $(UNZIP) -q -o $< -x */index.html */KEYS */test/* *javadoc/* */docs/* */demo/* 2> /dev/null |
537 |
cd $(JDK_IMAGE_DIR)/db && $(MV) db-derby-*-bin/* . && $(RM) -r db-derby-*-bin |
|
12892 | 538 |
$(MKDIR) -p $(@D) |
539 |
$(TOUCH) $@ |
|
540 |
||
20547 | 541 |
$(JDK_IMAGE_DIR)/db/README-JDK.html: $(JDK_TOPDIR)/src/closed/share/db/README-JDK.html |
14231 | 542 |
$(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)' |
20544 | 543 |
$(MKDIR) -p $(@D) |
17428 | 544 |
$(CAT) $< | $(SED) "s/XXXX/$(shell cat $(JDK_TOPDIR)/src/closed/share/db/COPYRIGHTYEAR)/" > $@ |
545 |
||
20547 | 546 |
$(JDK_IMAGE_DIR)/db/3RDPARTY: $(JDK_TOPDIR)/src/closed/share/db/3RDPARTY |
17428 | 547 |
$(ECHO) $(LOG_INFO) Copying '$(patsubst $(OUTPUT_ROOT)/%,%,$@)' |
20544 | 548 |
$(MKDIR) -p $(@D) |
17428 | 549 |
$(CAT) $< | $(SED) "s/XXXX/$(shell cat $(JDK_TOPDIR)/src/closed/share/db/COPYRIGHTYEAR)/" > $@ |
12892 | 550 |
|
20547 | 551 |
JDK_DB_TARGETS := $(patsubst $(JDK_TOPDIR)/src/closed/share/db/%, $(IMAGES_OUTPUTDIR)/_unzip/%.unzipped, \ |
552 |
$(wildcard $(JDK_TOPDIR)/src/closed/share/db/*.zip)) \ |
|
553 |
$(JDK_IMAGE_DIR)/db/README-JDK.html $(JDK_IMAGE_DIR)/db/3RDPARTY |
|
12892 | 554 |
|
555 |
endif |
|
556 |
||
557 |
################################################################################ |
|
558 |
# /include dir |
|
559 |
||
20547 | 560 |
$(foreach f,$(call CacheFind,$(JDK_OUTPUTDIR)/include), \ |
14231 | 561 |
$(eval $(call AddFileToCopy,$(JDK_OUTPUTDIR),$(JDK_IMAGE_DIR),$f,JDK_INCLUDE_TARGETS))) |
12892 | 562 |
|
563 |
################################################################################ |
|
564 |
# doc files |
|
565 |
||
566 |
ifdef OPENJDK |
|
20547 | 567 |
JRE_DOC_FILES := LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
568 |
JDK_DOC_FILES := LICENSE ASSEMBLY_EXCEPTION THIRD_PARTY_README |
|
569 |
JRE_DOC_LOCATION := $(JDK_TOPDIR) |
|
570 |
JDK_DOC_LOCATION := $(JDK_TOPDIR) |
|
12892 | 571 |
else |
20547 | 572 |
JRE_DOC_FILES := COPYRIGHT Welcome.html LICENSE THIRDPARTYLICENSEREADME.txt |
573 |
JDK_DOC_FILES := COPYRIGHT README.html LICENSE THIRDPARTYLICENSEREADME.txt |
|
574 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
575 |
JRE_DOC_FILES += README.txt |
|
576 |
else |
|
577 |
JRE_DOC_FILES += README |
|
578 |
endif |
|
579 |
JDK_DOC_FILES += demo/DEMOS_LICENSE sample/SAMPLES_LICENSE |
|
580 |
JRE_DOC_LOCATION := $(JDK_TOPDIR)/src/closed/share/doc/jre |
|
581 |
JDK_DOC_LOCATION := $(JDK_TOPDIR)/src/closed/share/doc/jdk |
|
12892 | 582 |
endif |
20547 | 583 |
JRE_DOC_TARGETS := $(addprefix $(JRE_IMAGE_DIR)/, $(JRE_DOC_FILES)) |
584 |
JDKJRE_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/jre/, $(JRE_DOC_FILES)) |
|
585 |
JDK_DOC_TARGETS := $(addprefix $(JDK_IMAGE_DIR)/, $(JDK_DOC_FILES)) |
|
12892 | 586 |
|
587 |
$(JRE_IMAGE_DIR)/%: $(JRE_DOC_LOCATION)/% |
|
13702 | 588 |
$(process-doc-file) |
12892 | 589 |
|
590 |
$(JDK_IMAGE_DIR)/jre/%: $(JRE_DOC_LOCATION)/% |
|
13702 | 591 |
$(process-doc-file) |
12892 | 592 |
|
593 |
$(JRE_IMAGE_DIR)/README.txt: $(JRE_DOC_LOCATION)/README |
|
13702 | 594 |
$(process-doc-file) |
12892 | 595 |
|
596 |
$(JDK_IMAGE_DIR)/jre/README.txt: $(JRE_DOC_LOCATION)/README |
|
13702 | 597 |
$(process-doc-file) |
12892 | 598 |
|
599 |
$(JDK_IMAGE_DIR)/%: $(JDK_DOC_LOCATION)/% |
|
13702 | 600 |
$(process-doc-file) |
12892 | 601 |
|
602 |
$(JDK_IMAGE_DIR)/demo/%: $(JDK_DOC_LOCATION)/% |
|
13702 | 603 |
$(process-doc-file) |
12892 | 604 |
|
605 |
$(JDK_IMAGE_DIR)/sample/%: $(JDK_DOC_LOCATION)/% |
|
13702 | 606 |
$(process-doc-file) |
12892 | 607 |
|
608 |
JRE_INFO_FILE := $(JRE_IMAGE_DIR)/release |
|
609 |
JDK_INFO_FILE := $(JDK_IMAGE_DIR)/release |
|
610 |
||
13702 | 611 |
JRE_OVERLAY_INFO_FILE := $(JRE_OVERLAY_IMAGE_DIR)/release |
612 |
JDK_OVERLAY_INFO_FILE := $(JDK_OVERLAY_IMAGE_DIR)/release |
|
613 |
||
12892 | 614 |
# Common way to emit a line into the release or info file |
615 |
define info-file-item # name value |
|
20547 | 616 |
$(PRINTF) '%s="%s"\n' $1 $2 >> $@ |
12892 | 617 |
endef |
618 |
||
13702 | 619 |
define create-info-file |
620 |
$(MKDIR) -p $(@D) |
|
621 |
$(RM) $@ |
|
622 |
$(call info-file-item, "JAVA_VERSION", "$(JDK_VERSION)") |
|
20547 | 623 |
$(call info-file-item, "OS_NAME", "$(REQUIRED_OS_NAME)") |
624 |
$(call info-file-item, "OS_VERSION", "$(REQUIRED_OS_VERSION)") |
|
625 |
$(call info-file-item, "OS_ARCH", "$(OPENJDK_TARGET_CPU_LEGACY)") |
|
16041
b9d38accf302
8005545: Add System property to identify ARCH specific details such as ARM hard-float binaries
vladidan
parents:
15693
diff
changeset
|
626 |
if [ -n "$(JDK_ARCH_ABI_PROP_NAME)" ]; then $(call info-file-item, "SUN_ARCH_ABI", "$(JDK_ARCH_ABI_PROP_NAME)"); fi |
20547 | 627 |
$(call info-file-item, "SOURCE", "$(ALL_SOURCE_TIPS)") |
13702 | 628 |
endef |
629 |
||
12892 | 630 |
ALL_SOURCE_TIPS = $(shell \ |
20547 | 631 |
if [ -f $(OUTPUT_ROOT)/source_tips ] ; then \ |
632 |
$(CAT) $(OUTPUT_ROOT)/source_tips ; \ |
|
633 |
fi) |
|
12892 | 634 |
|
635 |
$(JRE_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips |
|
14231 | 636 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
13702 | 637 |
$(call create-info-file) |
20547 | 638 |
ifneq ($(PROFILE), ) |
639 |
$(call info-file-item, "JAVA_PROFILE", "$(call profile_name, $(call profile_number, $(PROFILE)))") |
|
640 |
endif |
|
12892 | 641 |
|
642 |
$(JDK_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips |
|
14231 | 643 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
13702 | 644 |
$(call create-info-file) |
645 |
||
646 |
$(JRE_OVERLAY_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips |
|
14231 | 647 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
13702 | 648 |
$(call create-info-file) |
649 |
||
650 |
$(JDK_OVERLAY_INFO_FILE): $(OUTPUT_ROOT)/spec.gmk $(OUTPUT_ROOT)/source_tips |
|
14231 | 651 |
$(ECHO) $(LOG_INFO) Generating $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
13702 | 652 |
$(call create-info-file) |
12892 | 653 |
|
654 |
$(JDK_IMAGE_DIR)/src.zip: $(IMAGES_OUTPUTDIR)/src.zip |
|
14231 | 655 |
$(ECHO) $(LOG_INFO) Copying $(patsubst $(OUTPUT_ROOT)/%,%,$@) |
12892 | 656 |
$(install-file) |
657 |
||
658 |
################################################################################ |
|
659 |
# Post processing (strip etc) |
|
660 |
||
20547 | 661 |
ifneq ($(POST_STRIP_CMD), ) |
662 |
ifeq ($(OPENJDK_TARGET_OS), windows) |
|
663 |
EXEC_LIST_BIN := $(filter-out %$(notdir $(MSVCR_DLL)), $(filter %.exe %.dll, $(ALL_BIN_LIST))) |
|
664 |
else |
|
665 |
# Find all executables in JDK_OUTPUTDIR since they exist when this makefile is parsed |
|
666 |
EXEC_LIST_BIN := $(shell $(FILE) `$(FIND) $(JDK_OUTPUTDIR)/bin -type f -name \*$(EXE_SUFFIX) ! -name \*.debuginfo` \ |
|
667 |
| $(EGREP) 'ELF' | $(CUT) -d':' -f1) |
|
668 |
# On mac, the old build searches for static libraries for stripping instead of shared. |
|
669 |
# Not clear if it's intentional. |
|
670 |
ifneq ($(OPENJDK_TARGET_OS), macosx) |
|
671 |
EXEC_LIST_LIB := $(shell $(FIND) $(JDK_OUTPUTDIR)/lib -type f -name \*$(SHARED_LIBRARY_SUFFIX)) |
|
12892 | 672 |
endif |
20547 | 673 |
endif |
674 |
# Filter out sjavac |
|
675 |
EXEC_LIST_BIN := $(filter-out %sjavac$(EXE_SUFFIX), $(EXEC_LIST_BIN)) |
|
13702 | 676 |
|
20547 | 677 |
# Filter out the overlay specific bin files |
678 |
EXEC_LIST := $(filter-out $(OVERLAY_FILTER), $(EXEC_LIST_BIN)) $(EXEC_LIST_LIB) |
|
679 |
EXEC_LIST_OVERLAY := $(filter $(OVERLAY_FILTER), $(EXEC_LIST_BIN)) $(EXEC_LIST_LIB) |
|
13702 | 680 |
|
20547 | 681 |
# Filter out non JRE files and convert to unique touch files to depend on |
682 |
JRE_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, $(IMAGES_OUTPUTDIR)/_strip_jre$(PROFILE)/%.stripped, \ |
|
683 |
$(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \ |
|
684 |
$(EXEC_LIST))) |
|
13164 | 685 |
|
20547 | 686 |
JDKJRE_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \ |
687 |
$(IMAGES_OUTPUTDIR)/_strip_jdk/jre/%.stripped, \ |
|
688 |
$(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES)), $(EXEC_LIST))) |
|
12892 | 689 |
|
20547 | 690 |
JDK_BIN_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \ |
691 |
$(IMAGES_OUTPUTDIR)/_strip_jdk/%.stripped, \ |
|
692 |
$(filter-out $(JDK_OUTPUTDIR)/lib/%, $(EXEC_LIST))) |
|
13164 | 693 |
|
20547 | 694 |
# Do the same for overlay image |
695 |
JRE_OVERLAY_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, $(IMAGES_OUTPUTDIR)/_strip_jre_overlay/%.stripped, \ |
|
696 |
$(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES) $(JDKJRE_LIB_FILES)), \ |
|
697 |
$(EXEC_LIST_OVERLAY))) |
|
13702 | 698 |
|
20547 | 699 |
JDKJRE_OVERLAY_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \ |
700 |
$(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/jre/%.stripped, \ |
|
701 |
$(filter-out $(addprefix %, $(NOT_JRE_BIN_FILES) $(NOT_JRE_LIB_FILES)), $(EXEC_LIST_OVERLAY))) |
|
13702 | 702 |
|
20547 | 703 |
JDK_OVERLAY_BIN_STRIP_LIST := $(patsubst $(JDK_OUTPUTDIR)/%, \ |
704 |
$(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/%.stripped, \ |
|
705 |
$(filter-out $(JDK_OUTPUTDIR)/lib/%, $(EXEC_LIST_OVERLAY))) |
|
13702 | 706 |
|
20547 | 707 |
define mcs-file |
708 |
$(if $(POST_MCS_CMD), $(POST_MCS_CMD) $<) |
|
709 |
endef |
|
13702 | 710 |
|
20547 | 711 |
define strip-file |
14231 | 712 |
$(ECHO) Stripping $(LOG_INFO) $(patsubst $(OUTPUT_ROOT)/%,%,$<) |
13702 | 713 |
$(CHMOD) u+w $< |
714 |
$(POST_STRIP_CMD) $< |
|
715 |
$(call mcs-file) |
|
716 |
$(CHMOD) go-w $< |
|
717 |
$(MKDIR) -p $(@D) |
|
718 |
$(TOUCH) $@ |
|
20547 | 719 |
endef |
13702 | 720 |
|
20547 | 721 |
# Setup a rule for stripping files based on touch files |
722 |
$(IMAGES_OUTPUTDIR)/_strip_jre$(PROFILE)/%.stripped: $(JRE_IMAGE_DIR)/% |
|
13702 | 723 |
$(call strip-file) |
724 |
||
20547 | 725 |
$(IMAGES_OUTPUTDIR)/_strip_jdk/%.stripped: $(JDK_IMAGE_DIR)/% |
13702 | 726 |
$(call strip-file) |
13164 | 727 |
|
20547 | 728 |
$(IMAGES_OUTPUTDIR)/_strip_jre_overlay/%.stripped: $(JRE_OVERLAY_IMAGE_DIR)/% |
13702 | 729 |
$(call strip-file) |
13164 | 730 |
|
20547 | 731 |
$(IMAGES_OUTPUTDIR)/_strip_jdk_overlay/%.stripped: $(JDK_OVERLAY_IMAGE_DIR)/% |
13702 | 732 |
$(call strip-file) |
13164 | 733 |
|
12892 | 734 |
endif |
735 |
||
736 |
################################################################################ |
|
737 |
# Main targets |
|
738 |
||
739 |
jre-image: $(JRE_BIN_TARGETS) $(JRE_LIB_TARGETS) $(JRE_IMAGE_DIR)/lib/applet \ |
|
20547 | 740 |
$(JRE_IMAGE_DIR)/lib/meta-index $(JRE_IMAGE_DIR)/lib/ext/meta-index \ |
741 |
$(JRE_MAN_PAGE_LIST) $(JRE_DOC_TARGETS) $(JRE_INFO_FILE) $(JRE_STRIP_LIST) \ |
|
742 |
$(JRE_BIN_ISADIR_LINK_TARGETS) |
|
12892 | 743 |
|
744 |
jdk-image: $(JDK_BIN_TARGETS) $(JDKJRE_BIN_TARGETS) \ |
|
20547 | 745 |
$(JDK_LIB_TARGETS) $(JDKJRE_LIB_TARGETS) \ |
746 |
$(JDK_IMAGE_DIR)/jre/lib/applet \ |
|
747 |
$(JDK_DEMO_TARGETS) \ |
|
748 |
$(JDK_IMAGE_DIR)/jre/lib/meta-index $(JDK_IMAGE_DIR)/jre/lib/ext/meta-index \ |
|
749 |
$(JDK_MAN_PAGE_LIST) $(JDK_SAMPLE_TARGETS) \ |
|
750 |
$(JDK_DB_TARGETS) $(JDK_INCLUDE_TARGETS) \ |
|
751 |
$(JDKJRE_DOC_TARGETS) $(JDK_DOC_TARGETS) \ |
|
752 |
$(JDK_INFO_FILE) $(JDKJRE_STRIP_LIST) $(JDK_BIN_STRIP_LIST) \ |
|
753 |
$(JDK_IMAGE_DIR)/src.zip \ |
|
754 |
$(JDK_BIN_ISADIR_LINK_TARGETS) $(JDKJRE_BIN_ISADIR_LINK_TARGETS) |
|
12892 | 755 |
|
13702 | 756 |
jre-overlay-image: $(JRE_OVERLAY_BIN_TARGETS) $(JRE_OVERLAY_LIB_TARGETS) \ |
20547 | 757 |
$(JRE_OVERLAY_INFO_FILE) $(JRE_OVERLAY_STRIP_LIST) |
13702 | 758 |
|
759 |
jdk-overlay-image: $(JDK_OVERLAY_BIN_TARGETS) $(JDKJRE_OVERLAY_BIN_TARGETS) \ |
|
20547 | 760 |
$(JDK_OVERLAY_LIB_TARGETS) $(JDKJRE_OVERLAY_LIB_TARGETS) \ |
761 |
$(JDK_OVERLAY_DEMO_TARGETS) $(JDK_OVERLAY_INFO_FILE) \ |
|
762 |
$(JDKJRE_OVERLAY_STRIP_LIST) $(JDK_OVERLAY_BIN_STRIP_LIST) |
|
13702 | 763 |
|
20547 | 764 |
ifneq ($(PROFILE), ) |
765 |
PROFILE_IMAGE_JARS := $(filter %.jar, $(JRE_LIB_TARGETS)) |
|
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
766 |
|
20547 | 767 |
PROFILE_IMAGE_JARS_CHECKED := $(IMAGES_OUTPUTDIR)/lib$(PROFILE)/_jars_checked |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
768 |
|
20547 | 769 |
$(PROFILE_IMAGE_JARS_CHECKED) : $(PROFILE_IMAGE_JARS) |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
770 |
$(TOOL_CHECKDEPS) $(JRE_IMAGE_DIR) \ |
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
771 |
$(call profile_name, $(call profile_number, $(PROFILE))) |
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
772 |
$(TOUCH) $@ |
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
773 |
|
20547 | 774 |
profile-image: $(JRE_BIN_TARGETS) $(JRE_LIB_TARGETS) \ |
15681 | 775 |
$(JRE_IMAGE_DIR)/lib/meta-index $(JRE_IMAGE_DIR)/lib/ext/meta-index \ |
15693
ba31a578f948
8007097: (profiles) Build needs test to ensure that profile definitions are updated
alanb
parents:
15681
diff
changeset
|
776 |
$(JRE_INFO_FILE) $(JRE_STRIP_LIST) $(PROFILE_IMAGE_JARS_CHECKED) |
15681 | 777 |
|
20547 | 778 |
.PHONY: profile-image |
15681 | 779 |
|
780 |
endif # Profile |
|
781 |
||
12892 | 782 |
################################################################################ |
783 |
||
784 |
.PHONY: default images jre-image jdk-image |
|
17736
e44c3c632dfa
8015644: makefile changes to allow integration of new features
katleman
parents:
17507
diff
changeset
|
785 |
|
22963
a28e6f0b511b
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22342
diff
changeset
|
786 |
# Hook to include the corresponding custom file, if present. |
a28e6f0b511b
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22342
diff
changeset
|
787 |
$(eval $(call IncludeCustomExtension, jdk, Images.gmk)) |