author | jcm |
Thu, 19 Jan 2017 21:52:51 -0800 | |
changeset 43470 | 39d4bc6c9989 |
parent 42981 | 927f1cb37bf3 |
child 43043 | bf14e07c9075 |
permissions | -rw-r--r-- |
14111 | 1 |
# |
35747 | 2 |
# Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. |
14111 | 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 |
||
25854 | 26 |
################################################################################ |
27 |
# This is the main makefile containing most actual top level targets. It needs |
|
28 |
# to be called with a SPEC file defined. |
|
29662 | 29 |
################################################################################ |
25854 | 30 |
|
31 |
# Declare default target |
|
32 |
default: |
|
14111 | 33 |
|
29662 | 34 |
ifeq ($(wildcard $(SPEC)),) |
35 |
$(error Main.gmk needs SPEC set to a proper spec.gmk) |
|
36 |
endif |
|
37 |
||
14111 | 38 |
# Now load the spec |
39 |
include $(SPEC) |
|
40 |
||
29662 | 41 |
include $(SRC_ROOT)/make/MainSupport.gmk |
25854 | 42 |
|
20363 | 43 |
# Load the vital tools for all the makefiles. |
21759 | 44 |
include $(SRC_ROOT)/make/common/MakeBase.gmk |
26116
f051bd253364
8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents:
26115
diff
changeset
|
45 |
include $(SRC_ROOT)/make/common/Modules.gmk |
14111 | 46 |
|
25854 | 47 |
# Declare ALL_TARGETS as an immediate variable. This variable is a list of all |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
48 |
# valid top level targets. It's used to declare them all as PHONY and to |
25854 | 49 |
# generate the -only targets. |
50 |
ALL_TARGETS := |
|
51 |
||
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22031
diff
changeset
|
52 |
# Hook to include the corresponding custom file, if present. |
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22031
diff
changeset
|
53 |
$(eval $(call IncludeCustomExtension, , Main.gmk)) |
14111 | 54 |
|
25854 | 55 |
# All modules for the current target platform. |
34116
b746e382da18
8142336: Convert the SA agent build to modular build-infra makefiles
erikj
parents:
33722
diff
changeset
|
56 |
ALL_MODULES := $(call FindAllModules) |
25854 | 57 |
|
58 |
################################################################################ |
|
59 |
################################################################################ |
|
60 |
# |
|
61 |
# Recipes for all targets. Only recipes, dependencies are declared later. |
|
62 |
# |
|
63 |
################################################################################ |
|
64 |
||
65 |
################################################################################ |
|
66 |
# Interim/build tools targets, compiling tools used during the build |
|
67 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
68 |
# When creating a BUILDJDK, the buildtools and interim targets have already |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
69 |
# been built and should not be built again. |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
70 |
ifneq ($(CREATING_BUILDJDK), true) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
71 |
buildtools-langtools: |
27560 | 72 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk) |
73 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
74 |
interim-langtools: |
25854 | 75 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk) |
76 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
77 |
interim-rmic: |
25854 | 78 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk) |
79 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
80 |
interim-cldrconverter: |
31948 | 81 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk) |
82 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
83 |
buildtools-jdk: |
35008 | 84 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk) |
41171 | 85 |
|
86 |
buildtools-modules: |
|
87 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileModuleTools.gmk) |
|
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
88 |
|
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
89 |
buildtools-hotspot: |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
90 |
+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk) |
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
91 |
endif |
25854 | 92 |
|
32806 | 93 |
ALL_TARGETS += buildtools-langtools interim-langtools \ |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
94 |
interim-rmic interim-cldrconverter buildtools-jdk buildtools-modules \ |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
95 |
buildtools-hotspot |
25854 | 96 |
|
97 |
################################################################################ |
|
98 |
# Special targets for certain modules |
|
99 |
||
100 |
unpack-sec: |
|
101 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk) |
|
102 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
103 |
generate-exported-symbols: |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
104 |
+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk) |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
105 |
|
41260 | 106 |
ALL_TARGETS += unpack-sec generate-exported-symbols |
14111 | 107 |
|
25854 | 108 |
################################################################################ |
109 |
# Gensrc targets, generating source before java compilation can be done |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
110 |
# |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
111 |
# When creating a BUILDJDK, the java targets have already been built and copied |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
112 |
# into the buildjdk so no need to generate sources. |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
113 |
ifneq ($(CREATING_BUILDJDK), true) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
114 |
$(eval $(call DeclareRecipesForPhase, GENSRC, \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
115 |
TARGET_SUFFIX := gensrc, \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
116 |
FILE_PREFIX := Gensrc, \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
117 |
MAKE_SUBDIR := gensrc, \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
118 |
CHECK_MODULES := $(ALL_MODULES), \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
119 |
MULTIPLE_MAKEFILES := true)) |
14111 | 120 |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
121 |
JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS)) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
122 |
LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS)) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
123 |
CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS)) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
124 |
HOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS)) |
15053
64278cb83950
8005549: build-infra: Merge NewMakefile.gmk and common/makefiles/Makefile
erikj
parents:
14466
diff
changeset
|
125 |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
126 |
GENSRC_MODULEINFO_MODULES := $(ALL_MODULES) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
127 |
GENSRC_MODULEINFO_TARGETS := $(addsuffix -gensrc-moduleinfo, \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
128 |
$(GENSRC_MODULEINFO_MODULES)) |
36506 | 129 |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
130 |
GENSRC_MODULES := $(GENSRC_MODULEINFO_MODULES) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
131 |
GENSRC_TARGETS += $(sort $(GENSRC_MODULEINFO_TARGETS) \ |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
132 |
$(addsuffix -gensrc, $(GENSRC_MODULES))) |
36506 | 133 |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
134 |
define DeclareModuleInfoRecipe |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
135 |
$1-gensrc-moduleinfo: |
36506 | 136 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \ |
137 |
-f GensrcModuleInfo.gmk MODULE=$1) |
|
138 |
||
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
139 |
$1-gensrc: $1-gensrc-moduleinfo |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
140 |
endef |
36506 | 141 |
|
38844
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
142 |
$(foreach m, $(GENSRC_MODULEINFO_MODULES), $(eval $(call DeclareModuleInfoRecipe,$m))) |
8af6df8a3613
8159047: Disable redundant build steps when creating buildjdk
erikj
parents:
38546
diff
changeset
|
143 |
endif |
36506 | 144 |
|
25854 | 145 |
ALL_TARGETS += $(GENSRC_TARGETS) |
146 |
||
147 |
################################################################################ |
|
148 |
# Generate data targets |
|
27560 | 149 |
$(eval $(call DeclareRecipesForPhase, GENDATA, \ |
150 |
TARGET_SUFFIX := gendata, \ |
|
151 |
FILE_PREFIX := Gendata, \ |
|
152 |
MAKE_SUBDIR := gendata, \ |
|
153 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
154 |
USE_WRAPPER := true)) |
|
25854 | 155 |
|
156 |
ALL_TARGETS += $(GENDATA_TARGETS) |
|
157 |
||
158 |
################################################################################ |
|
159 |
# Copy files targets |
|
27560 | 160 |
$(eval $(call DeclareRecipesForPhase, COPY, \ |
161 |
TARGET_SUFFIX := copy, \ |
|
162 |
FILE_PREFIX := Copy, \ |
|
163 |
MAKE_SUBDIR := copy, \ |
|
164 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
165 |
USE_WRAPPER := true, \ |
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
166 |
MULTIPLE_MAKEFILES := true)) |
25854 | 167 |
|
36506 | 168 |
ALL_COPY_MODULES += $(COPY_MODULES) |
169 |
ALL_COPY_TARGETS += $(COPY_TARGETS) |
|
170 |
||
171 |
IMPORT_COPY_MODULES := $(call FindImportedModules) |
|
172 |
IMPORT_COPY_TARGETS := $(addsuffix -copy, $(IMPORT_COPY_MODULES)) |
|
173 |
ALL_COPY_MODULES += $(IMPORT_COPY_MODULES) |
|
174 |
ALL_COPY_TARGETS += $(IMPORT_COPY_TARGETS) |
|
175 |
||
176 |
define DeclareImportCopyRecipe |
|
177 |
$1-copy: |
|
178 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \ |
|
179 |
-f CopyImportModules.gmk MODULE=$1) |
|
180 |
endef |
|
181 |
||
182 |
$(foreach m, $(IMPORT_COPY_MODULES), $(eval $(call DeclareImportCopyRecipe,$m))) |
|
183 |
||
184 |
ALL_TARGETS += $(ALL_COPY_TARGETS) |
|
15395
e5d837c6e999
8007093: build-infra: Make should fail if spec is older than configure files
erikj
parents:
15060
diff
changeset
|
185 |
|
25854 | 186 |
################################################################################ |
187 |
# Targets for compiling all java modules. Nashorn is treated separately. |
|
36506 | 188 |
JAVA_MODULES := $(ALL_MODULES) |
25854 | 189 |
JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES)) |
14111 | 190 |
|
25854 | 191 |
define DeclareCompileJavaRecipe |
192 |
$1-java: |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
193 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
194 |
-f CompileJavaModules.gmk MODULE=$1) |
25854 | 195 |
endef |
196 |
||
197 |
$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \ |
|
198 |
$(eval $(call DeclareCompileJavaRecipe,$m))) |
|
199 |
||
200 |
# Build nashorn. Needs to be compiled separately from the rest of the modules |
|
201 |
# due to nasgen. |
|
202 |
jdk.scripting.nashorn-java: |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
203 |
+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
204 |
-f BuildNashorn.gmk compile) |
14111 | 205 |
|
25854 | 206 |
ALL_TARGETS += $(JAVA_TARGETS) |
207 |
||
208 |
################################################################################ |
|
209 |
# Targets for running rmic. |
|
27560 | 210 |
$(eval $(call DeclareRecipesForPhase, RMIC, \ |
211 |
TARGET_SUFFIX := rmic, \ |
|
212 |
FILE_PREFIX := Rmic, \ |
|
213 |
MAKE_SUBDIR := rmic, \ |
|
214 |
CHECK_MODULES := $(ALL_MODULES))) |
|
25854 | 215 |
|
216 |
ALL_TARGETS += $(RMIC_TARGETS) |
|
217 |
||
218 |
################################################################################ |
|
219 |
# Targets for compiling native libraries |
|
27560 | 220 |
$(eval $(call DeclareRecipesForPhase, LIBS, \ |
221 |
TARGET_SUFFIX := libs, \ |
|
222 |
FILE_PREFIX := Lib, \ |
|
223 |
MAKE_SUBDIR := lib, \ |
|
224 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
225 |
USE_WRAPPER := true)) |
|
14111 | 226 |
|
27560 | 227 |
ALL_TARGETS += $(LIBS_TARGETS) |
14111 | 228 |
|
25854 | 229 |
################################################################################ |
230 |
# Targets for compiling native executables |
|
27560 | 231 |
$(eval $(call DeclareRecipesForPhase, LAUNCHER, \ |
232 |
TARGET_SUFFIX := launchers, \ |
|
233 |
FILE_PREFIX := Launcher, \ |
|
234 |
MAKE_SUBDIR := launcher, \ |
|
235 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
236 |
USE_WRAPPER := true)) |
|
25854 | 237 |
|
238 |
ALL_TARGETS += $(LAUNCHER_TARGETS) |
|
239 |
||
240 |
################################################################################ |
|
241 |
# Build hotspot target |
|
14111 | 242 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
243 |
HOTSPOT_VARIANT_TARGETS := $(addprefix hotspot-, $(JVM_VARIANTS)) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
244 |
HOTSPOT_VARIANT_GENSRC_TARGETS := $(addsuffix -gensrc, $(HOTSPOT_VARIANT_TARGETS)) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
245 |
HOTSPOT_VARIANT_LIBS_TARGETS := $(addsuffix -libs, $(HOTSPOT_VARIANT_TARGETS)) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
246 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
247 |
define DeclareHotspotGensrcRecipe |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
248 |
hotspot-$1-gensrc: |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
249 |
$$(call LogInfo, Building JVM variant '$1' with features '$(JVM_FEATURES_$1)') |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
250 |
+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) -f gensrc/GenerateSources.gmk \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
251 |
JVM_VARIANT=$1) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
252 |
endef |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
253 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
254 |
$(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotGensrcRecipe,$v))) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
255 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
256 |
define DeclareHotspotLibsRecipe |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
257 |
hotspot-$1-libs: |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
258 |
+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) -f lib/CompileLibraries.gmk \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
259 |
JVM_VARIANT=$1) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
260 |
endef |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
261 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
262 |
$(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotLibsRecipe,$v))) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
263 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
264 |
hotspot-jsig: |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
265 |
+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) -f lib/CompileLibjsig.gmk) |
14111 | 266 |
|
37402 | 267 |
hotspot-ide-project: |
37960 | 268 |
+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f ide/CreateVSProject.gmk) |
37402 | 269 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
270 |
ALL_TARGETS += $(HOTSPOT_VARIANT_TARGETS) $(HOTSPOT_VARIANT_GENSRC_TARGETS) \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
271 |
$(HOTSPOT_VARIANT_LIBS_TARGETS) hotspot-jsig hotspot-ide-project |
15903 | 272 |
|
25854 | 273 |
################################################################################ |
274 |
# Build demos and samples targets |
|
14111 | 275 |
|
31310 | 276 |
demos-jdk: |
25854 | 277 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk) |
14111 | 278 |
|
31310 | 279 |
samples-jdk: |
25854 | 280 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk) |
14111 | 281 |
|
31310 | 282 |
ALL_TARGETS += demos-jdk samples-jdk |
14111 | 283 |
|
25854 | 284 |
################################################################################ |
36506 | 285 |
# Jigsaw specific data and analysis targets. |
286 |
||
287 |
generate-summary: |
|
288 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) -f GenerateModuleSummary.gmk) |
|
289 |
||
290 |
ALL_TARGETS += generate-summary |
|
291 |
||
292 |
################################################################################ |
|
293 |
# Jmod targets |
|
294 |
||
295 |
JMOD_MODULES := $(ALL_MODULES) |
|
296 |
JMOD_TARGETS := $(addsuffix -jmod, $(JMOD_MODULES)) |
|
297 |
||
298 |
define DeclareJmodRecipe |
|
299 |
$1-jmod: |
|
300 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \ |
|
301 |
MODULE=$1) |
|
302 |
endef |
|
303 |
||
304 |
$(foreach m, $(JMOD_MODULES), $(eval $(call DeclareJmodRecipe,$m))) |
|
305 |
||
306 |
ALL_TARGETS += $(JMOD_TARGETS) |
|
307 |
||
308 |
################################################################################ |
|
309 |
# Images targets |
|
14111 | 310 |
|
42282
faf3b6722c44
8031567: Better model for storing source revision information
ihse
parents:
41874
diff
changeset
|
311 |
store-source-revision: |
faf3b6722c44
8031567: Better model for storing source revision information
ihse
parents:
41874
diff
changeset
|
312 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk store-source-revision) |
39110
712f29ba8708
8136771: Implement the license-swap logic as a make target
erikj
parents:
38844
diff
changeset
|
313 |
|
42282
faf3b6722c44
8031567: Better model for storing source revision information
ihse
parents:
41874
diff
changeset
|
314 |
create-source-revision-tracker: |
faf3b6722c44
8031567: Better model for storing source revision information
ihse
parents:
41874
diff
changeset
|
315 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk create-source-revision-tracker) |
14111 | 316 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
317 |
BOOTCYCLE_TARGET := product-images |
25854 | 318 |
bootcycle-images: |
37980
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
319 |
ifneq ($(COMPILE_TYPE), cross) |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
320 |
$(call LogWarn, Boot cycle build step 2: Building a new JDK image using previously built image) |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
321 |
+$(MAKE) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \ |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
322 |
JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
323 |
else |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
324 |
$(call LogWarn, Boot cycle build disabled when cross compiling) |
b2d5f366a9ba
8157506: Disable bootcycle build when cross compiling
erikj
parents:
37975
diff
changeset
|
325 |
endif |
27560 | 326 |
|
327 |
zip-security: |
|
328 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk) |
|
329 |
||
330 |
zip-source: |
|
331 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk) |
|
332 |
||
333 |
jrtfs-jar: |
|
334 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk) |
|
335 |
||
41260 | 336 |
jdk-image: |
337 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jdk) |
|
338 |
||
339 |
jre-image: |
|
340 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jre) |
|
341 |
||
342 |
symbols-image: |
|
343 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk symbols) |
|
27560 | 344 |
|
345 |
profiles: |
|
346 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles) |
|
347 |
||
31310 | 348 |
mac-bundles-jdk: |
27560 | 349 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk) |
350 |
||
42292 | 351 |
release-file: |
352 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ReleaseFile.gmk) |
|
353 |
||
41171 | 354 |
exploded-image-optimize: |
355 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ExplodedImageOptimize.gmk) |
|
356 |
||
42282
faf3b6722c44
8031567: Better model for storing source revision information
ihse
parents:
41874
diff
changeset
|
357 |
ALL_TARGETS += store-source-revision create-source-revision-tracker bootcycle-images zip-security \ |
41260 | 358 |
zip-source jrtfs-jar jdk-image jre-image \ |
359 |
symbols-image profiles mac-bundles-jdk \ |
|
42292 | 360 |
release-file exploded-image-optimize |
25854 | 361 |
|
362 |
################################################################################ |
|
363 |
# Docs targets |
|
364 |
||
365 |
docs-javadoc: |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
366 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-javadoc) |
25854 | 367 |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
368 |
docs-copy: |
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
369 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-copy) |
25854 | 370 |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
371 |
docs-zip: |
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
372 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-zip) |
37034
b63fd4af003e
8154313: Generated javadoc scattered all over the place
neugens
parents:
37031
diff
changeset
|
373 |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
374 |
ALL_TARGETS += docs-javadoc docs-copy docs-zip |
25854 | 375 |
|
376 |
################################################################################ |
|
36506 | 377 |
# Cross compilation support |
378 |
||
37770 | 379 |
ifeq ($(CREATING_BUILDJDK), true) |
36506 | 380 |
# This target is only called by the recursive call below. |
37770 | 381 |
create-buildjdk-interim-image-helper: interim-image jdk.jlink-launchers \ |
382 |
java.base-copy jdk.jdeps-launchers |
|
36506 | 383 |
endif |
384 |
||
385 |
create-buildjdk-copy: |
|
386 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateBuildJdkCopy.gmk) |
|
387 |
||
37770 | 388 |
create-buildjdk-interim-image: |
36506 | 389 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Main.gmk \ |
390 |
$@-helper \ |
|
391 |
SPEC=$(dir $(SPEC))buildjdk-spec.gmk \ |
|
392 |
HOTSPOT_SPEC=$(dir $(SPEC))buildjdk-spec.gmk \ |
|
393 |
CREATING_BUILDJDK=true) |
|
394 |
||
37770 | 395 |
ALL_TARGETS += create-buildjdk-copy create-buildjdk-interim-image |
396 |
||
397 |
################################################################################ |
|
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
398 |
# The interim-image is a small jlinked image that is used to generate artifacts |
37770 | 399 |
# at build time for use when linking the real images. |
400 |
||
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
401 |
INTERIM_JMOD_TARGETS := $(addsuffix -interim-jmod, $(INTERIM_IMAGE_MODULES)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
402 |
|
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
403 |
define DeclareInterimJmodRecipe |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
404 |
$1-interim-jmod: |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
405 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
406 |
MODULE=$1 \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
407 |
JMODS_DIR=$(INTERIM_JMODS_DIR) \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
408 |
JMODS_TEMPDIR=$(INTERIM_JMODS_DIR)/temp \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
409 |
INTERIM_JMOD=true \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
410 |
) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
411 |
endef |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
412 |
|
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
413 |
$(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $(call DeclareInterimJmodRecipe,$m))) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
414 |
|
37770 | 415 |
interim-image: |
416 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f InterimImage.gmk) |
|
417 |
||
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
418 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
419 |
generate-link-opt-data: |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
420 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f GenerateLinkOptData.gmk) |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
421 |
endif |
37770 | 422 |
|
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
423 |
ALL_TARGETS += $(INTERIM_JMOD_TARGETS) interim-image generate-link-opt-data |
36506 | 424 |
|
425 |
################################################################################ |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
426 |
# Build tests |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
427 |
# |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
428 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
429 |
prepare-test-image: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
430 |
$(MKDIR) -p $(TEST_IMAGE_DIR) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
431 |
$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image' |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
432 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
433 |
build-test-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
434 |
+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
435 |
build-test-hotspot-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
436 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
437 |
test-image-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
438 |
+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
439 |
test-image-hotspot-jtreg-native) |
25854 | 440 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
441 |
build-test-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
442 |
+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
443 |
build-test-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
444 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
445 |
test-image-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
446 |
+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
447 |
test-image-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
448 |
|
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
449 |
ifeq ($(BUILD_GTEST), true) |
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
450 |
test-image-hotspot-gtest: |
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
451 |
+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f GtestImage.gmk) |
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
452 |
endif |
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
453 |
|
32562
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
454 |
build-test-lib: |
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
455 |
+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk) |
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
456 |
|
37035
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
457 |
ifeq ($(BUILD_FAILURE_HANDLER), true) |
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
458 |
# Builds the failure handler jtreg extension |
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
459 |
build-test-failure-handler: |
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
460 |
+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \ |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
461 |
-f BuildFailureHandler.gmk build) |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
462 |
|
37035
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
463 |
# Runs the tests for the failure handler jtreg extension |
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
464 |
test-failure-handler: |
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
465 |
+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \ |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
466 |
-f BuildFailureHandler.gmk test) |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
467 |
|
37035
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
468 |
# Copies the failure handler jtreg extension into the test image |
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
469 |
test-image-failure-handler: |
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
470 |
+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \ |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
471 |
-f BuildFailureHandler.gmk images) |
37035
08e00f202d7a
8154292: jdk9-dev: All SE builds failed on 2016-04-14
erikj
parents:
37034
diff
changeset
|
472 |
endif |
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
473 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
474 |
ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
475 |
test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \ |
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
476 |
test-image-jdk-jtreg-native build-test-lib build-test-failure-handler \ |
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
477 |
test-failure-handler test-image-failure-handler test-image-hotspot-gtest |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
478 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
479 |
################################################################################ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
480 |
# Run tests |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
481 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
482 |
# Run tests specified by $(TEST), or the default test set. |
25854 | 483 |
test: |
37974 | 484 |
$(call RunTests, $(TEST), $(JDK_IMAGE_DIR)) |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
485 |
|
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
486 |
test-hotspot-jtreg: |
37974 | 487 |
$(call RunTests, "hotspot_all", $(JDK_IMAGE_DIR)) |
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
488 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
489 |
test-hotspot-jtreg-native: |
37974 | 490 |
$(call RunTests, "hotspot_native_sanity", $(JDK_IMAGE_DIR)) |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
491 |
|
33565
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
492 |
test-hotspot-internal: |
37974 | 493 |
$(call RunTests, "hotspot_internal", $(JDK_OUTPUTDIR)) |
494 |
||
495 |
test-hotspot-gtest: |
|
496 |
$(call RunTests, "hotspot_gtest", $(JDK_OUTPUTDIR)) |
|
33565
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
497 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
498 |
test-jdk-jtreg-native: |
37974 | 499 |
$(call RunTests, "jdk_native_sanity", $(JDK_IMAGE_DIR)) |
25854 | 500 |
|
501 |
test-make: |
|
502 |
($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET)) |
|
503 |
||
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
504 |
ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \ |
37974 | 505 |
test-hotspot-internal test-hotspot-gtest test-jdk-jtreg-native test-make |
25854 | 506 |
|
507 |
################################################################################ |
|
37972 | 508 |
# Bundles |
509 |
||
510 |
product-bundles: |
|
511 |
+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk product-bundles) |
|
512 |
||
513 |
test-bundles: |
|
514 |
+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk test-bundles) |
|
515 |
||
516 |
docs-bundles: |
|
517 |
+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk docs-bundles) |
|
518 |
||
519 |
ALL_TARGETS += product-bundles test-bundles docs-bundles |
|
520 |
||
521 |
################################################################################ |
|
25854 | 522 |
# Install targets |
523 |
||
524 |
install: |
|
525 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk) |
|
526 |
||
527 |
ALL_TARGETS += install |
|
528 |
||
529 |
################################################################################ |
|
530 |
# |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
531 |
# Dependency declarations between targets. |
25854 | 532 |
# |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
533 |
# These are declared in two groups. First all dependencies between targets that |
25854 | 534 |
# have recipes above as these dependencies may be disabled. Then the aggregator |
535 |
# targets that do not have recipes of their own, which will never have their |
|
536 |
# dependencies disabled. |
|
537 |
# |
|
538 |
################################################################################ |
|
539 |
# Targets with recipes above |
|
540 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
541 |
# If running an *-only target, parallel execution and dependencies between |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
542 |
# recipe targets are disabled. This makes it possible to run a select set of |
25854 | 543 |
# recipe targets in order. It's the responsibility of the user to make sure |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
544 |
# all prerequisites are fulfilled. |
25854 | 545 |
ifneq ($(findstring -only, $(MAKECMDGOALS)), ) |
546 |
.NOTPARALLEL: |
|
547 |
else |
|
27560 | 548 |
$(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools |
549 |
||
25854 | 550 |
interim-langtools: $(LANGTOOLS_GENSRC_TARGETS) |
551 |
||
31948 | 552 |
buildtools-jdk: interim-langtools interim-cldrconverter |
25854 | 553 |
|
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
554 |
buildtools-hotspot: interim-langtools |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
555 |
|
41171 | 556 |
buildtools-modules: exploded-image-base |
557 |
||
25854 | 558 |
$(CORBA_GENSRC_TARGETS): interim-langtools |
559 |
||
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
560 |
$(HOTSPOT_GENSRC_TARGETS): interim-langtools buildtools-hotspot |
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
561 |
|
27560 | 562 |
$(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk |
25854 | 563 |
|
36506 | 564 |
$(GENSRC_MODULEINFO_TARGETS): buildtools-jdk |
565 |
||
27560 | 566 |
$(GENDATA_TARGETS): interim-langtools buildtools-jdk |
25854 | 567 |
|
568 |
interim-rmic: interim-langtools |
|
569 |
||
32806 | 570 |
$(RMIC_TARGETS): interim-langtools interim-rmic |
25854 | 571 |
|
31310 | 572 |
$(JAVA_TARGETS): interim-langtools |
573 |
||
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
574 |
# Declare dependencies between hotspot-<variant>* targets |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
575 |
$(foreach v, $(JVM_VARIANTS), \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
576 |
$(eval hotspot-$v: hotspot-$v-gensrc hotspot-$v-libs) \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
577 |
$(eval hotspot-$v-libs: hotspot-$v-gensrc) \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
578 |
) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
579 |
|
37402 | 580 |
hotspot-ide-project: hotspot exploded-image |
581 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
582 |
generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
583 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
584 |
# Building one JVM variant is enough to start building the other libs |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
585 |
$(LIBS_TARGETS): hotspot-$(JVM_VARIANT_MAIN)-libs |
25854 | 586 |
|
587 |
$(LAUNCHER_TARGETS): java.base-libs |
|
588 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
589 |
ifeq ($(STATIC_BUILD), true) |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
590 |
$(LAUNCHER_TARGETS): generate-exported-symbols |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
591 |
endif |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
592 |
|
26115
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
593 |
# The demos are currently linking to libjvm and libjava, just like all other |
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
594 |
# jdk libs, even though they don't need to. To avoid warnings, make sure they |
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
595 |
# aren't built until after libjava and libjvm are available to link to. |
41461
53935ea8789d
8167488: Race condition in build with new exploded-image-optimize target
erikj
parents:
41458
diff
changeset
|
596 |
demos-jdk: java.base-libs exploded-image-optimize |
25854 | 597 |
|
598 |
# Declare dependency from <module>-java to <module>-gensrc |
|
599 |
$(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc)) |
|
600 |
||
601 |
# Declare dependencies between java modules |
|
602 |
$(foreach m, $(JAVA_MODULES), \ |
|
603 |
$(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \ |
|
604 |
$(call FindDepsForModule,$m))))) |
|
605 |
||
606 |
# Declare dependencies between <module>-rmic to <module>-java |
|
607 |
$(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java)) |
|
608 |
||
609 |
# Declare dependencies from <module>-lib to <module>-java |
|
37770 | 610 |
# Skip modules that do not have java source. |
611 |
# When creating a BUILDJDK, the java compilation has already been done by the |
|
612 |
# normal build and copied in. |
|
36506 | 613 |
ifneq ($(CREATING_BUILDJDK), true) |
37770 | 614 |
$(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java)) |
36506 | 615 |
endif |
25854 | 616 |
|
617 |
# Declare dependencies from all other <module>-lib to java.base-lib |
|
27560 | 618 |
$(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \ |
25854 | 619 |
$(eval $t: java.base-libs)) |
620 |
||
29851
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
621 |
# jdk.accessibility depends on java.desktop |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
622 |
jdk.accessibility-libs: java.desktop-libs |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
623 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
624 |
# This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a |
27560 | 625 |
# header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a |
626 |
# virtual target. |
|
627 |
jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc |
|
628 |
||
26672
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
629 |
# The swing beans need to have java base properly generated to avoid errors |
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
630 |
# in javadoc. |
27560 | 631 |
java.desktop-gensrc-jdk: java.base-gensrc |
26672
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
632 |
|
42981 | 633 |
# The annotation processing for jdk.vm.ci and jdk.vm.compiler needs classes |
634 |
# from the current JDK. |
|
635 |
jdk.vm.ci-gensrc-hotspot: $(addsuffix -java, \ |
|
636 |
$(call FindTransitiveDepsForModule, jdk.vm.ci)) |
|
637 |
jdk.vm.compiler-gensrc-hotspot: $(addsuffix -java, \ |
|
638 |
$(call FindTransitiveDepsForModule, jdk.vm.compiler)) |
|
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
639 |
|
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
640 |
# For jdk.vm.compiler, the gensrc step is generating a module-info.java.extra |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
641 |
# file to be processed by the gensrc-moduleinfo target. |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
642 |
jdk.vm.compiler-gensrc-moduleinfo: jdk.vm.compiler-gensrc-hotspot |
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
643 |
|
25854 | 644 |
# Explicitly add dependencies for special targets |
645 |
java.base-java: unpack-sec |
|
646 |
||
30742 | 647 |
jdk.jdeps-gendata: java rmic |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
648 |
|
42285
864475e2cf63
8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents:
42282
diff
changeset
|
649 |
# Declare dependencies between jmod targets. |
864475e2cf63
8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents:
42282
diff
changeset
|
650 |
# java.base jmod needs jrt-fs.jar and access to the other jmods to be built. |
37770 | 651 |
# When creating a BUILDJDK, we don't need to add hashes to java.base, thus |
652 |
# we don't need to depend on all other jmods |
|
653 |
ifneq ($(CREATING_BUILDJDK), true) |
|
42285
864475e2cf63
8169816: Move src.zip and jrt-fs.jar under the lib directory
mchung
parents:
42282
diff
changeset
|
654 |
java.base-jmod: jrtfs-jar $(filter-out java.base-jmod \ |
37975
551c5d86de79
8155786: Determine modules depending on upgradeable modules directly and indirectly
erikj
parents:
37974
diff
changeset
|
655 |
$(addsuffix -jmod, $(call FindAllUpgradeableModules)), $(JMOD_TARGETS)) |
37770 | 656 |
endif |
36506 | 657 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
658 |
# Building java.base-jmod requires all of hotspot to be built. |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
659 |
java.base-jmod: hotspot |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
660 |
|
36506 | 661 |
# Declare dependencies from <module>-jmod to all other module targets |
37770 | 662 |
# When creating a BUILDJDK, the java compilation has already been done by the |
663 |
# normal build and copied in. |
|
664 |
ifneq ($(CREATING_BUILDJDK), true) |
|
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
665 |
$(foreach m, $(JAVA_MODULES), $(eval $m_JMOD_DEPS += $m-java)) |
37770 | 666 |
endif |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
667 |
$(foreach m, $(GENDATA_MODULES), $(eval $m_JMOD_DEPS += $m-gendata)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
668 |
$(foreach m, $(RMIC_MODULES), $(eval $m_JMOD_DEPS += $m-rmic)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
669 |
$(foreach m, $(LIBS_MODULES), $(eval $m_JMOD_DEPS += $m-libs)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
670 |
$(foreach m, $(LAUNCHER_MODULES), $(eval $m_JMOD_DEPS += $m-launchers)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
671 |
$(foreach m, $(COPY_MODULES), $(eval $m_JMOD_DEPS += $m-copy)) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
672 |
$(foreach m, $(ALL_MODULES), $(eval $m-jmod: $($(m)_JMOD_DEPS))) |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
673 |
$(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $m-interim-jmod: $($(m)_JMOD_DEPS))) |
36506 | 674 |
|
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
675 |
# Jmods cannot be created until we have the jmod tool ready to run. During |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
676 |
# a normal build we run it from the exploded image, but when cross compiling |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
677 |
# it's run from the buildjdk, which is either created at build time or user |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
678 |
# supplied. |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
679 |
# |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
680 |
# For the exploded image to be runnable, all java modules and |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
681 |
# jdk.jlink-launchers need to be built. We also need to copy jvm.cfg (done |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
682 |
# in java.base-copy) and tzdb.dat (done in java.base-gendata) to the |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
683 |
# appropriate location otherwise jimage, jlink and jmod won't start. This |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
684 |
# also applies when creating the buildjdk. |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
685 |
DEFAULT_JMOD_DEPS := java.base-libs java.base-copy java.base-gendata \ |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
686 |
jdk.jlink-launchers |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
687 |
# When cross compiling and buildjdk is to be created, depend on creating the |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
688 |
# buildjdk instead of the default dependencies. |
36506 | 689 |
ifeq ($(CREATE_BUILDJDK), true) |
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
690 |
# Avoid calling create-buildjdk from within a create-buildjdk call. |
37770 | 691 |
ifneq ($(CREATING_BUILDJDK), true) |
692 |
$(JMOD_TARGETS): create-buildjdk |
|
41171 | 693 |
buildtools-modules: create-buildjdk |
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
694 |
else |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
695 |
# While actually creating the buildjdk, the default deps applies. |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
696 |
$(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS) |
37770 | 697 |
endif |
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
698 |
else |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
699 |
# The normal non cross compilation case uses the default deps. |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
700 |
# To avoid races with the optimize target, that also needs to happen first. |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
701 |
$(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS) \ |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
702 |
exploded-image-optimize |
36506 | 703 |
endif |
704 |
||
42505
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42292
diff
changeset
|
705 |
# All modules include the main license files from java.base. |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42292
diff
changeset
|
706 |
$(JMOD_TARGETS): java.base-copy |
11439b0c0792
8169925: Organize licenses by module in source, JMOD file, and run-time image
mchung
parents:
42292
diff
changeset
|
707 |
|
27560 | 708 |
zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \ |
709 |
$(filter jdk.crypto%, $(JAVA_TARGETS)) |
|
25854 | 710 |
|
27560 | 711 |
zip-source: gensrc rmic |
712 |
||
36506 | 713 |
jrtfs-jar: interim-langtools |
25854 | 714 |
|
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
715 |
ifeq ($(ENABLE_GENERATE_CLASSLIST), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
716 |
ifeq ($(CREATE_BUILDJDK), true) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
717 |
# If creating a buildjdk, the interim image needs to be based on that. |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
718 |
generate-link-opt-data: create-buildjdk |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
719 |
else ifeq ($(EXTERNAL_BUILDJDK), false) |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
720 |
# If an external buildjdk has been provided, we skip generating an |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
721 |
# interim-image and just use the external buildjdk for generating |
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
722 |
# classlist. |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
723 |
generate-link-opt-data: interim-image |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
724 |
endif |
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
725 |
generate-link-opt-data: buildtools-jdk |
38546
91a5c3430d4f
8157336: Generation of classlists at build time should be configurable
erikj
parents:
37980
diff
changeset
|
726 |
|
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
727 |
# The generated classlist needs to go into java.base-jmod. |
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
728 |
java.base-jmod jdk-image jre-image: generate-link-opt-data |
37770 | 729 |
endif |
730 |
||
42292 | 731 |
release-file: create-source-revision-tracker |
25854 | 732 |
|
42292 | 733 |
jdk-image: jmods zip-source demos samples release-file |
734 |
jre-image: jmods release-file |
|
42506
54b0b4fffab5
8170878: JDK 9 fails to build when enabling Hotspot code coverage
erikj
parents:
42505
diff
changeset
|
735 |
symbols-image: $(LIBS_TARGETS) $(LAUNCHER_TARGETS) |
42292 | 736 |
|
737 |
profiles: jmods release-file |
|
25854 | 738 |
|
41260 | 739 |
mac-bundles-jdk: jdk-image jre-image |
25854 | 740 |
|
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
741 |
# The optimize target can run as soon as the modules dir has been completely |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
742 |
# populated (java, copy and gendata targets) and the basic libs and launchers |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
743 |
# have been built. |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
744 |
exploded-image-optimize: java copy gendata java.base-libs java.base-launchers \ |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
745 |
buildtools-modules |
41171 | 746 |
|
41260 | 747 |
bootcycle-images: jdk-image |
25854 | 748 |
|
36506 | 749 |
docs-javadoc: $(GENSRC_TARGETS) rmic |
25854 | 750 |
|
41660 | 751 |
# The gensrc step for jdk.jdi creates an html file that is used by docs-copy. |
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
752 |
docs-copy: hotspot-$(JVM_VARIANT_MAIN)-gensrc jdk.jdi-gensrc |
25854 | 753 |
|
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
754 |
docs-zip: docs-javadoc docs-copy |
37649
3809534d4531
8154841: Let different Jib profiles have different default make targets
erikj
parents:
37407
diff
changeset
|
755 |
|
41260 | 756 |
test: jdk-image test-image |
25854 | 757 |
|
37770 | 758 |
create-buildjdk-copy: jdk.jlink-java java.base-gendata \ |
759 |
$(addsuffix -java, $(INTERIM_IMAGE_MODULES)) |
|
36506 | 760 |
|
37770 | 761 |
create-buildjdk-interim-image: create-buildjdk-copy |
762 |
||
41874
07c3c4f1eb63
8168108: lib/classlist should be packaged in java.base.jmod
erikj
parents:
41660
diff
changeset
|
763 |
interim-image: $(INTERIM_JMOD_TARGETS) |
25854 | 764 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
765 |
test-make: clean-test-make |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
766 |
|
41461
53935ea8789d
8167488: Race condition in build with new exploded-image-optimize target
erikj
parents:
41458
diff
changeset
|
767 |
build-test-lib: exploded-image-optimize |
33436 | 768 |
|
37031
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
769 |
build-test-failure-handler: interim-langtools |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
770 |
|
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
771 |
test-failure-handler: build-test-failure-handler |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
772 |
|
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
773 |
test-image-failure-handler: build-test-failure-handler |
e90042bf422d
8149777: Enable enhanced failure handler for "make test"
erikj
parents:
36789
diff
changeset
|
774 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
775 |
build-test-hotspot-jtreg-native: buildtools-jdk \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
776 |
hotspot-$(JVM_VARIANT_MAIN)-libs |
29159
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
777 |
|
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
778 |
build-test-jdk-jtreg-native: buildtools-jdk |
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
779 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
780 |
test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
781 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
782 |
test-image-jdk-jtreg-native: build-test-jdk-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
783 |
|
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
784 |
test-image-hotspot-gtest: hotspot |
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
785 |
|
33565
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
786 |
test-hotspot-internal: exploded-image |
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
787 |
|
41260 | 788 |
test-hotspot-jtreg: jdk-image test-image |
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
789 |
|
37974 | 790 |
test-hotspot-gtest: exploded-image test-image-hotspot-gtest |
791 |
||
33722
f82c74b7f2db
8143036: Make install target does not depend on images
erikj
parents:
33571
diff
changeset
|
792 |
install: product-images |
f82c74b7f2db
8143036: Make install target does not depend on images
erikj
parents:
33571
diff
changeset
|
793 |
|
37972 | 794 |
product-bundles: product-images |
795 |
||
796 |
test-bundles: test-image |
|
797 |
||
798 |
docs-bundles: docs-image |
|
799 |
||
41171 | 800 |
generate-summary: jmods buildtools-modules |
36506 | 801 |
|
25854 | 802 |
endif |
803 |
||
804 |
################################################################################ |
|
805 |
# Virtual targets without recipes |
|
806 |
||
32806 | 807 |
buildtools: buildtools-langtools interim-langtools interim-rmic \ |
42531
37ee95196b17
8166417: Integrate Graal-core into JDK for AOT compiler
kvn
parents:
42529
diff
changeset
|
808 |
buildtools-jdk buildtools-hotspot |
27560 | 809 |
|
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
810 |
hotspot: $(HOTSPOT_VARIANT_TARGETS) hotspot-jsig |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
811 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
812 |
hotspot-libs: hotspot-jsig |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
813 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
814 |
# Create targets hotspot-libs and hotspot-gensrc. |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
815 |
$(foreach v, $(JVM_VARIANTS), \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
816 |
$(eval hotspot-libs: hotspot-$v-libs) \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
817 |
$(eval hotspot-gensrc: hotspot-$v-gensrc) \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
818 |
) |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
819 |
|
25854 | 820 |
gensrc: $(GENSRC_TARGETS) |
821 |
||
822 |
gendata: $(GENDATA_TARGETS) |
|
823 |
||
36506 | 824 |
copy: $(ALL_COPY_TARGETS) |
25854 | 825 |
|
826 |
java: $(JAVA_TARGETS) |
|
827 |
||
828 |
rmic: $(RMIC_TARGETS) |
|
829 |
||
27560 | 830 |
libs: $(LIBS_TARGETS) |
25854 | 831 |
|
832 |
launchers: $(LAUNCHER_TARGETS) |
|
833 |
||
36506 | 834 |
jmods: $(JMOD_TARGETS) |
835 |
||
27560 | 836 |
# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which |
837 |
# is actually handled by jdk.jdi-gensrc |
|
838 |
jdk.jdwp.agent-gensrc: jdk.jdi-gensrc |
|
25854 | 839 |
|
840 |
# Declare dependencies from <module> to all the individual targets specific |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
841 |
# to that module <module>-*, that are needed for the exploded image. |
25854 | 842 |
$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc)) |
843 |
$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java)) |
|
844 |
$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata)) |
|
845 |
$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic)) |
|
27560 | 846 |
$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs)) |
25854 | 847 |
$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers)) |
36506 | 848 |
$(foreach m, $(ALL_COPY_MODULES), $(eval $m: $m-copy)) |
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
849 |
|
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
850 |
# Building java.base includes building all of hotspot. |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
851 |
java.base: hotspot |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
852 |
|
31310 | 853 |
demos: demos-jdk |
854 |
||
855 |
samples: samples-jdk |
|
856 |
||
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
857 |
# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk. |
41171 | 858 |
exploded-image-base: $(ALL_MODULES) |
42292 | 859 |
exploded-image: exploded-image-base release-file |
41275
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
860 |
# When cross compiling, no need to optimize the exploded image since it won't |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
861 |
# be runnable on the host platform anyway. |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
862 |
ifneq ($(COMPILE_TYPE), cross) |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
863 |
exploded-image: exploded-image-optimize |
0ffcfee0d9a9
8167195: VM fails to initialize intermittently when running jmod to create some images
erikj
parents:
41260
diff
changeset
|
864 |
endif |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
865 |
|
37770 | 866 |
create-buildjdk: create-buildjdk-copy create-buildjdk-interim-image |
36506 | 867 |
|
31310 | 868 |
mac-bundles: mac-bundles-jdk |
869 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
870 |
# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables, |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
871 |
# and in line with this, our targets for creating these are named *-image[s]. |
25854 | 872 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
873 |
# This target builds the product images, e.g. the JRE and JDK image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
874 |
# (and possibly other, more specific versions) |
41260 | 875 |
product-images: jdk-image jre-image symbols-image exploded-image |
876 |
||
877 |
# zip-security is actually a bundle, but for now it needs to be considered |
|
878 |
# an image until this can be cleaned up properly. |
|
879 |
product-images: zip-security |
|
36506 | 880 |
|
37770 | 881 |
# The module summary cannot be run when: |
882 |
# * Cross compiling and building a partial BUILDJDK for the build host |
|
883 |
# * An external buildjdk has been supplied since it may not match the |
|
884 |
# module selection of the target jdk |
|
36506 | 885 |
ifneq ($(CREATE_BUILDJDK), true) |
37770 | 886 |
ifeq ($(EXTERNAL_BUILDJDK), false) |
887 |
product-images: generate-summary |
|
888 |
endif |
|
36506 | 889 |
endif |
25854 | 890 |
|
27560 | 891 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
892 |
product-images: mac-bundles |
27560 | 893 |
endif |
25854 | 894 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
895 |
# This target builds the documentation image |
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
896 |
docs-image: docs-javadoc docs-copy |
25854 | 897 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
898 |
# This target builds the test image |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
899 |
test-image: prepare-test-image test-image-hotspot-jtreg-native \ |
37967
8dd54c3bf02a
8148244: Finalize and integrate GTest implementation
iignatyev
parents:
37965
diff
changeset
|
900 |
test-image-jdk-jtreg-native test-image-failure-handler test-image-hotspot-gtest |
28285 | 901 |
|
37972 | 902 |
# all-images builds all our deliverables as images. |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
903 |
all-images: product-images test-image docs-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
904 |
|
37972 | 905 |
# all-bundles packages all our deliverables as tar.gz bundles. |
906 |
all-bundles: product-bundles test-bundles docs-bundles |
|
907 |
||
42510
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
908 |
ALL_TARGETS += buildtools hotspot hotspot-libs hotspot-gensrc gensrc gendata \ |
406dfb60de57
8170284: Move fine granular hotspot make targets to top level
erikj
parents:
41874
diff
changeset
|
909 |
copy java rmic libs launchers jmods \ |
41171 | 910 |
jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples \ |
911 |
exploded-image-base exploded-image \ |
|
37972 | 912 |
create-buildjdk mac-bundles product-images docs-image test-image all-images \ |
913 |
all-bundles |
|
25854 | 914 |
|
915 |
################################################################################ |
|
916 |
||
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
917 |
# Traditional targets typically run by users. |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
918 |
# These can be considered aliases for the targets now named by a more |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
919 |
# "modern" naming scheme. |
34491 | 920 |
default: $(DEFAULT_MAKE_TARGET) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
921 |
jdk: exploded-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
922 |
images: product-images |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
923 |
docs: docs-image |
37972 | 924 |
bundles: all-bundles |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
925 |
all: all-images |
25854 | 926 |
|
37972 | 927 |
ALL_TARGETS += default jdk images docs bundles all |
25854 | 928 |
|
929 |
################################################################################ |
|
930 |
################################################################################ |
|
931 |
# |
|
932 |
# Clean targets |
|
933 |
# |
|
934 |
################################################################################ |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
935 |
# Clean targets are automatically run serially by the Makefile calling this |
26398
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
936 |
# file. |
25854 | 937 |
|
27560 | 938 |
CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \ |
36506 | 939 |
images make-support test-make bundles buildjdk |
27560 | 940 |
CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS)) |
33437 | 941 |
CLEAN_SUPPORT_DIRS += demos |
942 |
CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS)) |
|
32562
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
943 |
CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
944 |
CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS)) |
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
945 |
CLEAN_PHASES := gensrc java native include |
27560 | 946 |
CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES)) |
947 |
CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES)) |
|
948 |
# Construct targets of the form clean-$module-$phase |
|
949 |
CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \ |
|
950 |
$(addprefix $m-, $(CLEAN_PHASES)))) |
|
14111 | 951 |
|
952 |
# Remove everything, except the output from configure. |
|
27560 | 953 |
clean: $(CLEAN_DIR_TARGETS) |
29790 | 954 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*) |
25854 | 955 |
$(ECHO) Cleaned all build artifacts. |
956 |
||
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
957 |
clean-docs: |
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
958 |
$(call CleanDocs) |
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
959 |
|
27560 | 960 |
$(CLEAN_DIR_TARGETS): |
961 |
$(call CleanDir,$(patsubst clean-%, %, $@)) |
|
962 |
||
33437 | 963 |
$(CLEAN_SUPPORT_DIR_TARGETS): |
964 |
$(call CleanSupportDir,$(patsubst clean-%, %, $@)) |
|
965 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
966 |
$(CLEAN_TEST_TARGETS): |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
967 |
$(call CleanTest,$(patsubst clean-test-%, %, $@)) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
968 |
|
27560 | 969 |
$(CLEAN_PHASE_TARGETS): |
970 |
$(call Clean-$(patsubst clean-%,%, $@)) |
|
971 |
||
972 |
$(CLEAN_MODULE_TARGETS): |
|
973 |
$(call CleanModule,$(patsubst clean-%, %, $@)) |
|
974 |
||
975 |
$(CLEAN_MODULE_PHASE_TARGETS): |
|
976 |
$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \ |
|
977 |
$(word 2, $(subst -,$(SPACE),$@))) |
|
978 |
||
979 |
# When removing the support dir, we must also remove jdk. Building classes has |
|
980 |
# the side effect of generating native headers. The headers end up in support |
|
981 |
# while classes and touch files end up in jdk. |
|
982 |
clean-support: clean-jdk |
|
25854 | 983 |
|
29790 | 984 |
# Remove everything, including configure configuration. If the output |
985 |
# directory was created by configure and now becomes empty, remove it as well. |
|
14111 | 986 |
dist-clean: clean |
29790 | 987 |
($(CD) $(OUTPUT_ROOT) && \ |
988 |
$(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide) |
|
25854 | 989 |
$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \ |
20363 | 990 |
if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \ |
991 |
$(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \ |
|
992 |
else \ |
|
25854 | 993 |
($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \ |
994 |
&& $(RM) -r $(OUTPUT_ROOT)) \ |
|
20363 | 995 |
fi \ |
996 |
) |
|
25854 | 997 |
$(ECHO) Cleaned everything, you will have to re-run configure. |
998 |
||
41652
a0664e2b49a1
8168772: Convert javadoc generation to build-infra standards
ihse
parents:
41461
diff
changeset
|
999 |
ALL_TARGETS += clean clean-docs dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \ |
33437 | 1000 |
$(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \ |
1001 |
$(CLEAN_MODULE_PHASE_TARGETS) |
|
25854 | 1002 |
|
1003 |
################################################################################ |
|
1004 |
# Declare *-only targets for each normal target |
|
1005 |
$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t))) |
|
14111 | 1006 |
|
29662 | 1007 |
ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS))) |
1008 |
||
1009 |
################################################################################ |
|
1010 |
||
1011 |
# Include JPRT targets |
|
1012 |
include $(SRC_ROOT)/make/Jprt.gmk |
|
1013 |
||
1014 |
################################################################################ |
|
1015 |
||
29788 | 1016 |
# The following targets are intentionally not added to ALL_TARGETS since they |
1017 |
# are internal only, to support Init.gmk. |
|
1018 |
||
29662 | 1019 |
print-targets: |
1020 |
@$(ECHO) $(sort $(ALL_TARGETS)) |
|
1021 |
||
1022 |
print-modules: |
|
1023 |
@$(ECHO) $(sort $(ALL_MODULES)) |
|
1024 |
||
29788 | 1025 |
create-main-targets-include: |
35008 | 1026 |
$(call LogInfo, Generating main target list) |
29788 | 1027 |
@$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \ |
1028 |
$(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk |
|
25854 | 1029 |
|
1030 |
################################################################################ |
|
1031 |
||
1032 |
.PHONY: $(ALL_TARGETS) |
|
1033 |
||
14111 | 1034 |
FRC: # Force target |