author | redestad |
Sat, 19 Dec 2015 02:24:27 +0100 | |
changeset 34720 | c2192aa0ab88 |
parent 34491 | 307c28cb36c2 |
child 35008 | ef0cd710989f |
child 35028 | d1a03d533057 |
permissions | -rw-r--r-- |
14111 | 1 |
# |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
2 |
# Copyright (c) 2011, 2015, 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 |
||
27560 | 68 |
buildtools-langtools: |
69 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk) |
|
70 |
||
25854 | 71 |
interim-langtools: |
72 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk) |
|
73 |
||
74 |
interim-rmic: |
|
75 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk) |
|
76 |
||
31948 | 77 |
interim-cldrconverter: |
78 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk) |
|
79 |
||
27560 | 80 |
buildtools-jdk: |
25854 | 81 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools) |
82 |
||
32806 | 83 |
ALL_TARGETS += buildtools-langtools interim-langtools \ |
31948 | 84 |
interim-rmic interim-cldrconverter buildtools-jdk |
25854 | 85 |
|
86 |
################################################################################ |
|
87 |
# Special targets for certain modules |
|
88 |
||
89 |
import-hotspot: |
|
90 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk) |
|
14111 | 91 |
|
25854 | 92 |
unpack-sec: |
93 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk) |
|
94 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
95 |
generate-exported-symbols: |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
96 |
+($(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
|
97 |
|
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
98 |
ALL_TARGETS += import-hotspot unpack-sec generate-exported-symbols |
14111 | 99 |
|
25854 | 100 |
################################################################################ |
101 |
# Gensrc targets, generating source before java compilation can be done |
|
27560 | 102 |
$(eval $(call DeclareRecipesForPhase, GENSRC, \ |
103 |
TARGET_SUFFIX := gensrc, \ |
|
104 |
FILE_PREFIX := Gensrc, \ |
|
105 |
MAKE_SUBDIR := gensrc, \ |
|
106 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
107 |
MULTIPLE_MAKEFILES := true)) |
|
14111 | 108 |
|
27560 | 109 |
JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS)) |
110 |
LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS)) |
|
111 |
CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS)) |
|
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
112 |
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
|
113 |
|
25854 | 114 |
ALL_TARGETS += $(GENSRC_TARGETS) |
115 |
||
116 |
################################################################################ |
|
117 |
# Generate data targets |
|
27560 | 118 |
$(eval $(call DeclareRecipesForPhase, GENDATA, \ |
119 |
TARGET_SUFFIX := gendata, \ |
|
120 |
FILE_PREFIX := Gendata, \ |
|
121 |
MAKE_SUBDIR := gendata, \ |
|
122 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
123 |
USE_WRAPPER := true)) |
|
25854 | 124 |
|
125 |
ALL_TARGETS += $(GENDATA_TARGETS) |
|
126 |
||
127 |
################################################################################ |
|
128 |
# Copy files targets |
|
27560 | 129 |
$(eval $(call DeclareRecipesForPhase, COPY, \ |
130 |
TARGET_SUFFIX := copy, \ |
|
131 |
FILE_PREFIX := Copy, \ |
|
132 |
MAKE_SUBDIR := copy, \ |
|
133 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
134 |
USE_WRAPPER := true, \ |
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
135 |
MULTIPLE_MAKEFILES := true)) |
25854 | 136 |
|
137 |
ALL_TARGETS += $(COPY_TARGETS) |
|
15395
e5d837c6e999
8007093: build-infra: Make should fail if spec is older than configure files
erikj
parents:
15060
diff
changeset
|
138 |
|
25854 | 139 |
################################################################################ |
140 |
# Targets for compiling all java modules. Nashorn is treated separately. |
|
141 |
JAVA_MODULES := $(call FindJavaModules) |
|
142 |
JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES)) |
|
14111 | 143 |
|
25854 | 144 |
define DeclareCompileJavaRecipe |
145 |
$1-java: |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
146 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
147 |
-f CompileJavaModules.gmk MODULE=$1) |
25854 | 148 |
endef |
149 |
||
150 |
$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \ |
|
151 |
$(eval $(call DeclareCompileJavaRecipe,$m))) |
|
152 |
||
153 |
# Build nashorn. Needs to be compiled separately from the rest of the modules |
|
154 |
# due to nasgen. |
|
155 |
jdk.scripting.nashorn-java: |
|
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
156 |
+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \ |
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
157 |
-f BuildNashorn.gmk compile) |
14111 | 158 |
|
25854 | 159 |
ALL_TARGETS += $(JAVA_TARGETS) |
160 |
||
161 |
################################################################################ |
|
162 |
# Targets for running rmic. |
|
27560 | 163 |
$(eval $(call DeclareRecipesForPhase, RMIC, \ |
164 |
TARGET_SUFFIX := rmic, \ |
|
165 |
FILE_PREFIX := Rmic, \ |
|
166 |
MAKE_SUBDIR := rmic, \ |
|
167 |
CHECK_MODULES := $(ALL_MODULES))) |
|
25854 | 168 |
|
169 |
ALL_TARGETS += $(RMIC_TARGETS) |
|
170 |
||
171 |
################################################################################ |
|
172 |
# Targets for compiling native libraries |
|
27560 | 173 |
$(eval $(call DeclareRecipesForPhase, LIBS, \ |
174 |
TARGET_SUFFIX := libs, \ |
|
175 |
FILE_PREFIX := Lib, \ |
|
176 |
MAKE_SUBDIR := lib, \ |
|
177 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
178 |
USE_WRAPPER := true)) |
|
14111 | 179 |
|
27560 | 180 |
ALL_TARGETS += $(LIBS_TARGETS) |
14111 | 181 |
|
25854 | 182 |
################################################################################ |
183 |
# Targets for compiling native executables |
|
27560 | 184 |
$(eval $(call DeclareRecipesForPhase, LAUNCHER, \ |
185 |
TARGET_SUFFIX := launchers, \ |
|
186 |
FILE_PREFIX := Launcher, \ |
|
187 |
MAKE_SUBDIR := launcher, \ |
|
188 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
189 |
USE_WRAPPER := true)) |
|
25854 | 190 |
|
191 |
ALL_TARGETS += $(LAUNCHER_TARGETS) |
|
192 |
||
193 |
################################################################################ |
|
194 |
# Build hotspot target |
|
14111 | 195 |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14111
diff
changeset
|
196 |
ifeq ($(BUILD_HOTSPOT),true) |
25854 | 197 |
hotspot: |
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
198 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk) |
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14111
diff
changeset
|
199 |
endif |
14111 | 200 |
|
25854 | 201 |
ALL_TARGETS += hotspot |
15903 | 202 |
|
25854 | 203 |
################################################################################ |
204 |
# Build demos and samples targets |
|
14111 | 205 |
|
31310 | 206 |
demos-jdk: |
25854 | 207 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk) |
14111 | 208 |
|
31310 | 209 |
samples-jdk: |
25854 | 210 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk) |
14111 | 211 |
|
31310 | 212 |
ALL_TARGETS += demos-jdk samples-jdk |
14111 | 213 |
|
25854 | 214 |
################################################################################ |
215 |
# Image targets |
|
14111 | 216 |
|
217 |
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be |
|
218 |
# used to track the exact sources used to build that image. |
|
27560 | 219 |
source-tips: $(SUPPORT_OUTPUTDIR)/source_tips |
220 |
$(SUPPORT_OUTPUTDIR)/source_tips: FRC |
|
14111 | 221 |
@$(MKDIR) -p $(@D) |
222 |
@$(RM) $@ |
|
18052
f326fa317a81
8012564: The SOURCE value in release file of JDK 8 doesn't contain valid changesets for some OS since b74
erikj
parents:
17664
diff
changeset
|
223 |
@$(call GetSourceTips) |
14111 | 224 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
225 |
BOOTCYCLE_TARGET := product-images |
25854 | 226 |
bootcycle-images: |
227 |
@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image |
|
34105 | 228 |
+$(MAKE) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \ |
229 |
JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main |
|
27560 | 230 |
|
231 |
zip-security: |
|
232 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk) |
|
233 |
||
234 |
zip-source: |
|
235 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk) |
|
236 |
||
237 |
strip-binaries: |
|
238 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk) |
|
25854 | 239 |
|
27560 | 240 |
jrtfs-jar: |
241 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk) |
|
242 |
||
243 |
jimages: |
|
244 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages) |
|
245 |
||
246 |
profiles: |
|
247 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles) |
|
248 |
||
31310 | 249 |
mac-bundles-jdk: |
27560 | 250 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk) |
251 |
||
252 |
ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \ |
|
31310 | 253 |
jrtfs-jar jimages profiles mac-bundles-jdk |
25854 | 254 |
|
255 |
################################################################################ |
|
256 |
# Docs targets |
|
257 |
||
258 |
docs-javadoc: |
|
259 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs) |
|
260 |
||
261 |
docs-jvmtidoc: |
|
262 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs) |
|
263 |
||
264 |
ALL_TARGETS += docs-javadoc docs-jvmtidoc |
|
265 |
||
266 |
################################################################################ |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
267 |
# Build tests |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
268 |
# |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
269 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
270 |
prepare-test-image: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
271 |
$(MKDIR) -p $(TEST_IMAGE_DIR) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
272 |
$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image' |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
273 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
274 |
build-test-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
275 |
+($(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
|
276 |
build-test-hotspot-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
277 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
278 |
test-image-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
279 |
+($(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
|
280 |
test-image-hotspot-jtreg-native) |
25854 | 281 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
282 |
build-test-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
283 |
+($(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
|
284 |
build-test-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
285 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
286 |
test-image-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
287 |
+($(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
|
288 |
test-image-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
289 |
|
32562
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
290 |
build-test-lib: |
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
291 |
+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk) |
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
292 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
293 |
ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
294 |
test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \ |
32562
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
295 |
test-image-jdk-jtreg-native build-test-lib |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
296 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
297 |
################################################################################ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
298 |
# Run tests |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
299 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
300 |
# Run tests specified by $(TEST), or the default test set. |
25854 | 301 |
test: |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
302 |
$(call RunTests, $(TEST)) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
303 |
|
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
304 |
test-hotspot-jtreg: |
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
305 |
$(call RunTests, "hotspot_all") |
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
306 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
307 |
test-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
308 |
$(call RunTests, "hotspot_native_sanity") |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
309 |
|
33565
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
310 |
test-hotspot-internal: |
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
311 |
$(call RunTests, "hotspot_internal") |
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
312 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
313 |
test-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
314 |
$(call RunTests, "jdk_native_sanity") |
25854 | 315 |
|
316 |
test-make: |
|
317 |
($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET)) |
|
318 |
||
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
319 |
ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \ |
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
320 |
test-hotspot-internal test-jdk-jtreg-native test-make |
25854 | 321 |
|
322 |
################################################################################ |
|
323 |
# Verification targets |
|
324 |
||
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
325 |
verify-modules: |
26547
f8b190ea8955
8058367: Add verify-modules target to the default and images target
mchung
parents:
26398
diff
changeset
|
326 |
@$(call TargetEnter) |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
327 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk) |
26547
f8b190ea8955
8058367: Add verify-modules target to the default and images target
mchung
parents:
26398
diff
changeset
|
328 |
@$(call TargetExit) |
25854 | 329 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
330 |
ALL_TARGETS += verify-modules |
25854 | 331 |
|
332 |
################################################################################ |
|
333 |
# Install targets |
|
334 |
||
335 |
install: |
|
336 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk) |
|
337 |
||
338 |
ALL_TARGETS += install |
|
339 |
||
340 |
################################################################################ |
|
341 |
# |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
342 |
# Dependency declarations between targets. |
25854 | 343 |
# |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
344 |
# These are declared in two groups. First all dependencies between targets that |
25854 | 345 |
# have recipes above as these dependencies may be disabled. Then the aggregator |
346 |
# targets that do not have recipes of their own, which will never have their |
|
347 |
# dependencies disabled. |
|
348 |
# |
|
349 |
################################################################################ |
|
350 |
# Targets with recipes above |
|
351 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
352 |
# If running an *-only target, parallel execution and dependencies between |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
353 |
# recipe targets are disabled. This makes it possible to run a select set of |
25854 | 354 |
# 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
|
355 |
# all prerequisites are fulfilled. |
25854 | 356 |
ifneq ($(findstring -only, $(MAKECMDGOALS)), ) |
357 |
.NOTPARALLEL: |
|
358 |
else |
|
27560 | 359 |
$(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools |
360 |
||
25854 | 361 |
interim-langtools: $(LANGTOOLS_GENSRC_TARGETS) |
362 |
||
31948 | 363 |
buildtools-jdk: interim-langtools interim-cldrconverter |
25854 | 364 |
|
365 |
$(CORBA_GENSRC_TARGETS): interim-langtools |
|
366 |
||
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
367 |
$(HOTSPOT_GENSRC_TARGETS): interim-langtools |
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
368 |
|
27560 | 369 |
$(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk |
25854 | 370 |
|
27560 | 371 |
$(GENDATA_TARGETS): interim-langtools buildtools-jdk |
25854 | 372 |
|
373 |
interim-rmic: interim-langtools |
|
374 |
||
32806 | 375 |
$(RMIC_TARGETS): interim-langtools interim-rmic |
25854 | 376 |
|
31310 | 377 |
$(JAVA_TARGETS): interim-langtools |
378 |
||
25854 | 379 |
import-hotspot: hotspot |
380 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
381 |
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
|
382 |
|
27560 | 383 |
$(LIBS_TARGETS): import-hotspot |
25854 | 384 |
|
385 |
$(LAUNCHER_TARGETS): java.base-libs |
|
386 |
||
33562
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
387 |
ifeq ($(STATIC_BUILD), true) |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
388 |
$(LAUNCHER_TARGETS): generate-exported-symbols |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
389 |
endif |
c76b2fa11486
8136556: Add the ability to perform static builds of MacOSX x64 binaries
bobv
parents:
32806
diff
changeset
|
390 |
|
26115
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
391 |
# 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
|
392 |
# 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
|
393 |
# aren't built until after libjava and libjvm are available to link to. |
31310 | 394 |
demos-jdk: $(JAVA_TARGETS) |
25854 | 395 |
|
396 |
# Declare dependency from <module>-java to <module>-gensrc |
|
397 |
$(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc)) |
|
398 |
||
399 |
# Declare dependencies between java modules |
|
400 |
$(foreach m, $(JAVA_MODULES), \ |
|
401 |
$(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \ |
|
402 |
$(call FindDepsForModule,$m))))) |
|
403 |
||
404 |
# Declare dependencies between <module>-rmic to <module>-java |
|
405 |
$(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java)) |
|
406 |
||
407 |
# Declare dependencies from <module>-lib to <module>-java |
|
28899
ceb890ca5f39
8073166: Unable to successfully build the merge of jdk9/hs with jdk9/dev
erikj
parents:
28811
diff
changeset
|
408 |
# Skip modules that do not have java source. |
ceb890ca5f39
8073166: Unable to successfully build the merge of jdk9/hs with jdk9/dev
erikj
parents:
28811
diff
changeset
|
409 |
$(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java)) |
25854 | 410 |
|
411 |
# Declare dependencies from all other <module>-lib to java.base-lib |
|
27560 | 412 |
$(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \ |
25854 | 413 |
$(eval $t: java.base-libs)) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
414 |
# Declare the special case dependency for jdk.deploy.osx where libosx |
25854 | 415 |
# links against libosxapp. |
416 |
jdk.deploy.osx-libs: java.desktop-libs |
|
417 |
||
29851
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
418 |
# jdk.accessibility depends on java.desktop |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
419 |
jdk.accessibility-libs: java.desktop-libs |
81a61a04e2fe
8076182: Open Source Java Access Bridge - Create Patch for JEP C127 8055831
ptbrunet
parents:
29305
diff
changeset
|
420 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
421 |
# This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a |
27560 | 422 |
# header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a |
423 |
# virtual target. |
|
424 |
jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc |
|
425 |
||
26672
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
426 |
# 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
|
427 |
# in javadoc. |
27560 | 428 |
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
|
429 |
|
25854 | 430 |
# Explicitly add dependencies for special targets |
431 |
java.base-java: unpack-sec |
|
432 |
||
33045
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
433 |
# The copy target copies files generated by gensrc |
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
434 |
java.base-copy-hotspot: java.base-gensrc-hotspot |
00f484891bcf
8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents:
32806
diff
changeset
|
435 |
|
30742 | 436 |
jdk.jdeps-gendata: java rmic |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
437 |
|
27560 | 438 |
zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \ |
439 |
$(filter jdk.crypto%, $(JAVA_TARGETS)) |
|
25854 | 440 |
|
27560 | 441 |
zip-source: gensrc rmic |
442 |
||
443 |
strip-binaries: libs launchers gendata copy |
|
444 |
||
445 |
jrtfs-jar: buildtools-jdk |
|
25854 | 446 |
|
27560 | 447 |
jimages: exploded-image zip-source strip-binaries source-tips demos samples \ |
448 |
jrtfs-jar |
|
25854 | 449 |
|
27560 | 450 |
profiles: exploded-image strip-binaries source-tips |
25854 | 451 |
|
31310 | 452 |
mac-bundles-jdk: jimages |
25854 | 453 |
|
27560 | 454 |
bootcycle-images: jimages |
25854 | 455 |
|
27560 | 456 |
docs-javadoc: gensrc rmic |
25854 | 457 |
|
458 |
docs-jvmtidoc: hotspot |
|
459 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
460 |
test: jimages test-image |
25854 | 461 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
462 |
verify-modules: exploded-image |
25854 | 463 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
464 |
test-make: clean-test-make |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
465 |
|
33436 | 466 |
build-test-lib: java |
467 |
||
29159
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
468 |
build-test-hotspot-jtreg-native: buildtools-jdk |
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
469 |
|
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
470 |
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
|
471 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
472 |
test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
473 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
474 |
test-image-jdk-jtreg-native: build-test-jdk-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
475 |
|
33565
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
476 |
test-hotspot-internal: exploded-image |
ac22b6bd7ecb
8139256: Add Makefile target to run internal VM tests
ehelin
parents:
33564
diff
changeset
|
477 |
|
33566
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
478 |
test-hotspot-jtreg: jimages test-image |
fc0dc6b3c02d
8139271: Add top-level Makefile target to run hotspots jtreg tests
ehelin
parents:
33565
diff
changeset
|
479 |
|
33722
f82c74b7f2db
8143036: Make install target does not depend on images
erikj
parents:
33571
diff
changeset
|
480 |
install: product-images |
f82c74b7f2db
8143036: Make install target does not depend on images
erikj
parents:
33571
diff
changeset
|
481 |
|
25854 | 482 |
endif |
483 |
||
484 |
################################################################################ |
|
485 |
# Virtual targets without recipes |
|
486 |
||
32806 | 487 |
buildtools: buildtools-langtools interim-langtools interim-rmic \ |
27560 | 488 |
buildtools-jdk |
489 |
||
25854 | 490 |
gensrc: $(GENSRC_TARGETS) |
491 |
||
492 |
gendata: $(GENDATA_TARGETS) |
|
493 |
||
494 |
copy: $(COPY_TARGETS) |
|
495 |
||
496 |
java: $(JAVA_TARGETS) |
|
497 |
||
498 |
rmic: $(RMIC_TARGETS) |
|
499 |
||
27560 | 500 |
libs: $(LIBS_TARGETS) |
25854 | 501 |
|
502 |
launchers: $(LAUNCHER_TARGETS) |
|
503 |
||
27560 | 504 |
# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which |
505 |
# is actually handled by jdk.jdi-gensrc |
|
506 |
jdk.jdwp.agent-gensrc: jdk.jdi-gensrc |
|
25854 | 507 |
|
508 |
# 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
|
509 |
# to that module <module>-*, that are needed for the exploded image. |
25854 | 510 |
$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc)) |
511 |
$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java)) |
|
512 |
$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata)) |
|
513 |
$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic)) |
|
27560 | 514 |
$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs)) |
25854 | 515 |
$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers)) |
516 |
$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy)) |
|
517 |
||
31310 | 518 |
demos: demos-jdk |
519 |
||
520 |
samples: samples-jdk |
|
521 |
||
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
522 |
# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk. |
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
523 |
exploded-image: $(ALL_MODULES) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
524 |
|
31310 | 525 |
mac-bundles: mac-bundles-jdk |
526 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
527 |
# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables, |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
528 |
# and in line with this, our targets for creating these are named *-image[s]. |
25854 | 529 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
530 |
# 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
|
531 |
# (and possibly other, more specific versions) |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
532 |
product-images: jimages demos samples zip-security verify-modules |
25854 | 533 |
|
27560 | 534 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
535 |
product-images: mac-bundles |
27560 | 536 |
endif |
25854 | 537 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
538 |
# This target builds the documentation image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
539 |
docs-image: docs-javadoc docs-jvmtidoc |
25854 | 540 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
541 |
# This target builds the test image |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
542 |
test-image: prepare-test-image test-image-hotspot-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
543 |
test-image-jdk-jtreg-native |
28285 | 544 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
545 |
# all-images is the top-most target, it builds all our deliverables ("images"). |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
546 |
all-images: product-images test-image docs-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
547 |
|
27560 | 548 |
ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \ |
34102
c0a98357f847
8143141: Bring in minor build changes from the jigsaw/jake forest
erikj
parents:
33722
diff
changeset
|
549 |
jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples exploded-image \ |
31310 | 550 |
mac-bundles product-images docs-image test-image all-images |
25854 | 551 |
|
552 |
################################################################################ |
|
553 |
||
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
554 |
# Traditional targets typically run by users. |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
555 |
# 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
|
556 |
# "modern" naming scheme. |
34491 | 557 |
default: $(DEFAULT_MAKE_TARGET) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
558 |
jdk: exploded-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
559 |
images: product-images |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
560 |
docs: docs-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
561 |
all: all-images |
25854 | 562 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
563 |
ALL_TARGETS += default jdk images docs all |
25854 | 564 |
|
565 |
################################################################################ |
|
566 |
################################################################################ |
|
567 |
# |
|
568 |
# Clean targets |
|
569 |
# |
|
570 |
################################################################################ |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
571 |
# 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
|
572 |
# file. |
25854 | 573 |
|
27560 | 574 |
CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29159
diff
changeset
|
575 |
images make-support test-make bundles |
27560 | 576 |
CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS)) |
33437 | 577 |
CLEAN_SUPPORT_DIRS += demos |
578 |
CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS)) |
|
32562
b4ed30cd962e
8136378: Build test libs using properly integrated makefile
ihse
parents:
31948
diff
changeset
|
579 |
CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
580 |
CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS)) |
29790 | 581 |
CLEAN_PHASES := gensrc java native include docs |
27560 | 582 |
CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES)) |
583 |
CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES)) |
|
584 |
# Construct targets of the form clean-$module-$phase |
|
585 |
CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \ |
|
586 |
$(addprefix $m-, $(CLEAN_PHASES)))) |
|
14111 | 587 |
|
588 |
# Remove everything, except the output from configure. |
|
27560 | 589 |
clean: $(CLEAN_DIR_TARGETS) |
29790 | 590 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*) |
25854 | 591 |
$(ECHO) Cleaned all build artifacts. |
592 |
||
27560 | 593 |
$(CLEAN_DIR_TARGETS): |
594 |
$(call CleanDir,$(patsubst clean-%, %, $@)) |
|
595 |
||
33437 | 596 |
$(CLEAN_SUPPORT_DIR_TARGETS): |
597 |
$(call CleanSupportDir,$(patsubst clean-%, %, $@)) |
|
598 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
599 |
$(CLEAN_TEST_TARGETS): |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
600 |
$(call CleanTest,$(patsubst clean-test-%, %, $@)) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
601 |
|
27560 | 602 |
$(CLEAN_PHASE_TARGETS): |
603 |
$(call Clean-$(patsubst clean-%,%, $@)) |
|
604 |
||
605 |
$(CLEAN_MODULE_TARGETS): |
|
606 |
$(call CleanModule,$(patsubst clean-%, %, $@)) |
|
607 |
||
608 |
$(CLEAN_MODULE_PHASE_TARGETS): |
|
609 |
$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \ |
|
610 |
$(word 2, $(subst -,$(SPACE),$@))) |
|
611 |
||
612 |
# When removing the support dir, we must also remove jdk. Building classes has |
|
613 |
# the side effect of generating native headers. The headers end up in support |
|
614 |
# while classes and touch files end up in jdk. |
|
615 |
clean-support: clean-jdk |
|
25854 | 616 |
|
29790 | 617 |
# Remove everything, including configure configuration. If the output |
618 |
# directory was created by configure and now becomes empty, remove it as well. |
|
14111 | 619 |
dist-clean: clean |
29790 | 620 |
($(CD) $(OUTPUT_ROOT) && \ |
621 |
$(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide) |
|
25854 | 622 |
$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \ |
20363 | 623 |
if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \ |
624 |
$(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \ |
|
625 |
else \ |
|
25854 | 626 |
($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \ |
627 |
&& $(RM) -r $(OUTPUT_ROOT)) \ |
|
20363 | 628 |
fi \ |
629 |
) |
|
25854 | 630 |
$(ECHO) Cleaned everything, you will have to re-run configure. |
631 |
||
33437 | 632 |
ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \ |
633 |
$(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \ |
|
634 |
$(CLEAN_MODULE_PHASE_TARGETS) |
|
25854 | 635 |
|
636 |
################################################################################ |
|
637 |
# Declare *-only targets for each normal target |
|
638 |
$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t))) |
|
14111 | 639 |
|
29662 | 640 |
ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS))) |
641 |
||
642 |
################################################################################ |
|
643 |
||
644 |
# Include JPRT targets |
|
645 |
include $(SRC_ROOT)/make/Jprt.gmk |
|
646 |
||
647 |
################################################################################ |
|
648 |
||
29788 | 649 |
# The following targets are intentionally not added to ALL_TARGETS since they |
650 |
# are internal only, to support Init.gmk. |
|
651 |
||
29662 | 652 |
print-targets: |
653 |
@$(ECHO) $(sort $(ALL_TARGETS)) |
|
654 |
||
655 |
print-modules: |
|
656 |
@$(ECHO) $(sort $(ALL_MODULES)) |
|
657 |
||
29788 | 658 |
create-main-targets-include: |
659 |
@$(ECHO) $(LOG_INFO) Generating main target list |
|
660 |
@$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \ |
|
661 |
$(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk |
|
25854 | 662 |
|
663 |
################################################################################ |
|
664 |
||
665 |
.PHONY: $(ALL_TARGETS) |
|
666 |
||
14111 | 667 |
FRC: # Force target |