author | joehw |
Wed, 28 Jan 2015 22:49:58 -0800 | |
changeset 28697 | fae50549d70d |
parent 28285 | 3b8c4ccbb332 |
child 28600 | 09dd1740f176 |
child 28604 | fd6779dcecf0 |
permissions | -rw-r--r-- |
14111 | 1 |
# |
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22031
diff
changeset
|
2 |
# Copyright (c) 2011, 2014, 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. |
|
29 |
||
30 |
# Declare default target |
|
31 |
default: |
|
14111 | 32 |
|
33 |
# Now load the spec |
|
34 |
include $(SPEC) |
|
35 |
||
25854 | 36 |
include $(SRC_ROOT)/make/MakeHelpers.gmk |
37 |
||
20363 | 38 |
# Load the vital tools for all the makefiles. |
21759 | 39 |
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
|
40 |
include $(SRC_ROOT)/make/common/Modules.gmk |
14111 | 41 |
|
25854 | 42 |
# 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
|
43 |
# valid top level targets. It's used to declare them all as PHONY and to |
25854 | 44 |
# generate the -only targets. |
45 |
ALL_TARGETS := |
|
46 |
||
22714
a752920c4317
8034191: Move relevant parts of build system to new closed repo
ihse
parents:
22031
diff
changeset
|
47 |
# 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
|
48 |
$(eval $(call IncludeCustomExtension, , Main.gmk)) |
14111 | 49 |
|
25854 | 50 |
# All modules for the current target platform. |
51 |
# Manually add jdk.hotspot.agent for now. |
|
52 |
ALL_MODULES := $(call FindAllModules) jdk.hotspot.agent |
|
53 |
||
54 |
################################################################################ |
|
55 |
################################################################################ |
|
56 |
# |
|
57 |
# Recipes for all targets. Only recipes, dependencies are declared later. |
|
58 |
# |
|
59 |
################################################################################ |
|
60 |
||
61 |
################################################################################ |
|
62 |
# Interim/build tools targets, compiling tools used during the build |
|
63 |
||
27560 | 64 |
buildtools-langtools: |
65 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk) |
|
66 |
||
25854 | 67 |
interim-langtools: |
68 |
+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk) |
|
69 |
||
70 |
interim-corba: |
|
27560 | 71 |
+($(CD) $(CORBA_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk) |
25854 | 72 |
|
73 |
interim-rmic: |
|
74 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk) |
|
75 |
||
27560 | 76 |
buildtools-jdk: |
25854 | 77 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools) |
78 |
||
27560 | 79 |
ALL_TARGETS += buildtools-langtools interim-langtools interim-corba \ |
80 |
interim-rmic buildtools-jdk |
|
25854 | 81 |
|
82 |
################################################################################ |
|
83 |
# Special targets for certain modules |
|
84 |
||
85 |
import-hotspot: |
|
86 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk) |
|
14111 | 87 |
|
25854 | 88 |
unpack-sec: |
89 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk) |
|
90 |
||
27560 | 91 |
ALL_TARGETS += import-hotspot unpack-sec |
14111 | 92 |
|
25854 | 93 |
################################################################################ |
94 |
# Gensrc targets, generating source before java compilation can be done |
|
27560 | 95 |
$(eval $(call DeclareRecipesForPhase, GENSRC, \ |
96 |
TARGET_SUFFIX := gensrc, \ |
|
97 |
FILE_PREFIX := Gensrc, \ |
|
98 |
MAKE_SUBDIR := gensrc, \ |
|
99 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
100 |
MULTIPLE_MAKEFILES := true)) |
|
14111 | 101 |
|
27560 | 102 |
JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS)) |
103 |
LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS)) |
|
104 |
CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS)) |
|
15053
64278cb83950
8005549: build-infra: Merge NewMakefile.gmk and common/makefiles/Makefile
erikj
parents:
14466
diff
changeset
|
105 |
|
25854 | 106 |
ALL_TARGETS += $(GENSRC_TARGETS) |
107 |
||
108 |
################################################################################ |
|
109 |
# Generate data targets |
|
27560 | 110 |
$(eval $(call DeclareRecipesForPhase, GENDATA, \ |
111 |
TARGET_SUFFIX := gendata, \ |
|
112 |
FILE_PREFIX := Gendata, \ |
|
113 |
MAKE_SUBDIR := gendata, \ |
|
114 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
115 |
USE_WRAPPER := true)) |
|
25854 | 116 |
|
117 |
ALL_TARGETS += $(GENDATA_TARGETS) |
|
118 |
||
119 |
################################################################################ |
|
120 |
# Copy files targets |
|
27560 | 121 |
$(eval $(call DeclareRecipesForPhase, COPY, \ |
122 |
TARGET_SUFFIX := copy, \ |
|
123 |
FILE_PREFIX := Copy, \ |
|
124 |
MAKE_SUBDIR := copy, \ |
|
125 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
126 |
USE_WRAPPER := true)) |
|
25854 | 127 |
|
128 |
ALL_TARGETS += $(COPY_TARGETS) |
|
15395
e5d837c6e999
8007093: build-infra: Make should fail if spec is older than configure files
erikj
parents:
15060
diff
changeset
|
129 |
|
25854 | 130 |
################################################################################ |
131 |
# Targets for compiling all java modules. Nashorn is treated separately. |
|
132 |
JAVA_MODULES := $(call FindJavaModules) |
|
133 |
JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES)) |
|
14111 | 134 |
|
25854 | 135 |
define DeclareCompileJavaRecipe |
136 |
$1-java: |
|
137 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CompileJavaModules.gmk \ |
|
138 |
$1 JAVA_MODULES=$1) |
|
139 |
endef |
|
140 |
||
141 |
$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \ |
|
142 |
$(eval $(call DeclareCompileJavaRecipe,$m))) |
|
143 |
||
144 |
# Build nashorn. Needs to be compiled separately from the rest of the modules |
|
145 |
# due to nasgen. |
|
146 |
jdk.scripting.nashorn-java: |
|
147 |
+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildNashorn.gmk compile) |
|
14111 | 148 |
|
25854 | 149 |
ALL_TARGETS += $(JAVA_TARGETS) |
150 |
||
151 |
################################################################################ |
|
152 |
# Targets for running rmic. |
|
27560 | 153 |
$(eval $(call DeclareRecipesForPhase, RMIC, \ |
154 |
TARGET_SUFFIX := rmic, \ |
|
155 |
FILE_PREFIX := Rmic, \ |
|
156 |
MAKE_SUBDIR := rmic, \ |
|
157 |
CHECK_MODULES := $(ALL_MODULES))) |
|
25854 | 158 |
|
159 |
ALL_TARGETS += $(RMIC_TARGETS) |
|
160 |
||
161 |
################################################################################ |
|
162 |
# Targets for compiling native libraries |
|
27560 | 163 |
$(eval $(call DeclareRecipesForPhase, LIBS, \ |
164 |
TARGET_SUFFIX := libs, \ |
|
165 |
FILE_PREFIX := Lib, \ |
|
166 |
MAKE_SUBDIR := lib, \ |
|
167 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
168 |
USE_WRAPPER := true)) |
|
14111 | 169 |
|
27560 | 170 |
ALL_TARGETS += $(LIBS_TARGETS) |
14111 | 171 |
|
25854 | 172 |
################################################################################ |
173 |
# Targets for compiling native executables |
|
27560 | 174 |
$(eval $(call DeclareRecipesForPhase, LAUNCHER, \ |
175 |
TARGET_SUFFIX := launchers, \ |
|
176 |
FILE_PREFIX := Launcher, \ |
|
177 |
MAKE_SUBDIR := launcher, \ |
|
178 |
CHECK_MODULES := $(ALL_MODULES), \ |
|
179 |
USE_WRAPPER := true)) |
|
25854 | 180 |
|
181 |
ALL_TARGETS += $(LAUNCHER_TARGETS) |
|
182 |
||
183 |
################################################################################ |
|
184 |
# Build hotspot target |
|
14111 | 185 |
|
14378
0ef5d942b98e
8002028: build-infra: need no-hotspot partial build
tbell
parents:
14111
diff
changeset
|
186 |
ifeq ($(BUILD_HOTSPOT),true) |
25854 | 187 |
hotspot: |
188 |
($(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
|
189 |
endif |
14111 | 190 |
|
25854 | 191 |
ALL_TARGETS += hotspot |
15903 | 192 |
|
25854 | 193 |
################################################################################ |
194 |
# Build demos and samples targets |
|
14111 | 195 |
|
25854 | 196 |
demos: |
197 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk) |
|
14111 | 198 |
|
25854 | 199 |
samples: |
200 |
+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk) |
|
14111 | 201 |
|
25854 | 202 |
ALL_TARGETS += demos samples |
14111 | 203 |
|
25854 | 204 |
################################################################################ |
205 |
# Image targets |
|
14111 | 206 |
|
207 |
# Stores the tips for each repository. This file is be used when constructing the jdk image and can be |
|
208 |
# used to track the exact sources used to build that image. |
|
27560 | 209 |
source-tips: $(SUPPORT_OUTPUTDIR)/source_tips |
210 |
$(SUPPORT_OUTPUTDIR)/source_tips: FRC |
|
14111 | 211 |
@$(MKDIR) -p $(@D) |
212 |
@$(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
|
213 |
@$(call GetSourceTips) |
14111 | 214 |
|
27560 | 215 |
BOOTCYCLE_TARGET := images |
25854 | 216 |
bootcycle-images: |
217 |
@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image |
|
27560 | 218 |
+$(MAKE) $(MAKE_ARGS) -f Main.gmk SPEC=$(dir $(SPEC))bootcycle-spec.gmk $(BOOTCYCLE_TARGET) |
219 |
||
220 |
zip-security: |
|
221 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk) |
|
222 |
||
223 |
zip-source: |
|
224 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk) |
|
225 |
||
226 |
strip-binaries: |
|
227 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk) |
|
25854 | 228 |
|
27560 | 229 |
jrtfs-jar: |
230 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk) |
|
231 |
||
232 |
jimages: |
|
233 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages) |
|
234 |
||
235 |
profiles: |
|
236 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles) |
|
237 |
||
238 |
mac-bundles: |
|
239 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk) |
|
240 |
||
28285 | 241 |
prepare-test-image: |
242 |
$(MKDIR) -p $(TEST_IMAGE_DIR) |
|
243 |
$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image' |
|
244 |
||
27560 | 245 |
ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \ |
28285 | 246 |
jrtfs-jar jimages profiles mac-bundles prepare-test-image |
25854 | 247 |
|
248 |
################################################################################ |
|
249 |
# Docs targets |
|
250 |
||
251 |
docs-javadoc: |
|
252 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs) |
|
253 |
||
254 |
docs-jvmtidoc: |
|
255 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs) |
|
256 |
||
257 |
ALL_TARGETS += docs-javadoc docs-jvmtidoc |
|
258 |
||
259 |
################################################################################ |
|
260 |
# Test target |
|
261 |
||
262 |
test: |
|
263 |
($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \ |
|
28008
068c4200829e
8067442: Tests using -Xshare:dump does not work with 'make test'
ehelin
parents:
28005
diff
changeset
|
264 |
JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR) \ |
25854 | 265 |
ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $(TEST)) || true |
266 |
||
267 |
test-make: |
|
268 |
($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET)) |
|
269 |
||
270 |
ALL_TARGETS += test test-make |
|
271 |
||
272 |
################################################################################ |
|
273 |
# Verification targets |
|
274 |
||
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
275 |
verify-modules: |
26547
f8b190ea8955
8058367: Add verify-modules target to the default and images target
mchung
parents:
26398
diff
changeset
|
276 |
@$(call TargetEnter) |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
277 |
+($(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
|
278 |
@$(call TargetExit) |
25854 | 279 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
280 |
ALL_TARGETS += verify-modules |
25854 | 281 |
|
282 |
################################################################################ |
|
283 |
# Install targets |
|
284 |
||
285 |
install: |
|
286 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk) |
|
287 |
||
288 |
ALL_TARGETS += install |
|
289 |
||
290 |
################################################################################ |
|
291 |
# |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
292 |
# Dependency declarations between targets. |
25854 | 293 |
# |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
294 |
# These are declared in two groups. First all dependencies between targets that |
25854 | 295 |
# have recipes above as these dependencies may be disabled. Then the aggregator |
296 |
# targets that do not have recipes of their own, which will never have their |
|
297 |
# dependencies disabled. |
|
298 |
# |
|
299 |
################################################################################ |
|
300 |
# Targets with recipes above |
|
301 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
302 |
# If running an *-only target, parallel execution and dependencies between |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
303 |
# recipe targets are disabled. This makes it possible to run a select set of |
25854 | 304 |
# 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
|
305 |
# all prerequisites are fulfilled. |
25854 | 306 |
ifneq ($(findstring -only, $(MAKECMDGOALS)), ) |
307 |
.NOTPARALLEL: |
|
308 |
else |
|
27560 | 309 |
$(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools |
310 |
||
25854 | 311 |
interim-langtools: $(LANGTOOLS_GENSRC_TARGETS) |
312 |
||
27560 | 313 |
buildtools-jdk: interim-langtools |
25854 | 314 |
|
315 |
$(CORBA_GENSRC_TARGETS): interim-langtools |
|
316 |
||
27560 | 317 |
$(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk |
25854 | 318 |
|
319 |
interim-corba: $(CORBA_GENSRC_TARGETS) |
|
320 |
||
27560 | 321 |
$(GENDATA_TARGETS): interim-langtools buildtools-jdk |
25854 | 322 |
|
323 |
interim-rmic: interim-langtools |
|
324 |
||
325 |
$(RMIC_TARGETS): interim-langtools interim-corba interim-rmic |
|
326 |
||
327 |
import-hotspot: hotspot |
|
328 |
||
27560 | 329 |
$(LIBS_TARGETS): import-hotspot |
25854 | 330 |
|
331 |
$(LAUNCHER_TARGETS): java.base-libs |
|
332 |
||
26115
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
333 |
# 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
|
334 |
# 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
|
335 |
# aren't built until after libjava and libjvm are available to link to. |
25854 | 336 |
demos: $(JAVA_TARGETS) |
337 |
||
338 |
# Declare dependency from <module>-java to <module>-gensrc |
|
339 |
$(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc)) |
|
340 |
||
341 |
# Declare dependencies between java modules |
|
342 |
$(foreach m, $(JAVA_MODULES), \ |
|
343 |
$(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \ |
|
344 |
$(call FindDepsForModule,$m))))) |
|
345 |
||
346 |
# Declare dependencies between <module>-rmic to <module>-java |
|
347 |
$(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java)) |
|
348 |
||
349 |
# Declare dependencies from <module>-lib to <module>-java |
|
350 |
# Skip jdk.jdwp.agent as it contains no java code. |
|
27560 | 351 |
$(foreach m, $(filter-out jdk.jdwp.agent, $(LIBS_MODULES)), $(eval $m-libs: $m-java)) |
25854 | 352 |
|
353 |
# Declare dependencies from all other <module>-lib to java.base-lib |
|
27560 | 354 |
$(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \ |
25854 | 355 |
$(eval $t: java.base-libs)) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
356 |
# Declare the special case dependency for jdk.deploy.osx where libosx |
25854 | 357 |
# links against libosxapp. |
358 |
jdk.deploy.osx-libs: java.desktop-libs |
|
359 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
360 |
# This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a |
27560 | 361 |
# header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a |
362 |
# virtual target. |
|
363 |
jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc |
|
364 |
||
365 |
# Until the module system is in place, jdk.jdi-gensrc needs to combine service |
|
366 |
# loader configuration with jdk.hotspot.agent so is dependent on importing |
|
367 |
# hotspot. |
|
368 |
jdk.jdi-gensrc-jdk: import-hotspot |
|
25854 | 369 |
|
26672
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
370 |
# 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
|
371 |
# in javadoc. |
27560 | 372 |
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
|
373 |
|
25854 | 374 |
# Explicitly add dependencies for special targets |
375 |
java.base-java: unpack-sec |
|
376 |
||
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
377 |
jdk.dev-gendata: java rmic |
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
378 |
|
27560 | 379 |
zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \ |
380 |
$(filter jdk.crypto%, $(JAVA_TARGETS)) |
|
25854 | 381 |
|
27560 | 382 |
zip-source: gensrc rmic |
383 |
||
384 |
strip-binaries: libs launchers gendata copy |
|
385 |
||
386 |
jrtfs-jar: buildtools-jdk |
|
25854 | 387 |
|
27560 | 388 |
jimages: exploded-image zip-source strip-binaries source-tips demos samples \ |
389 |
jrtfs-jar |
|
25854 | 390 |
|
27560 | 391 |
profiles: exploded-image strip-binaries source-tips |
25854 | 392 |
|
27560 | 393 |
mac-bundles: jimages |
25854 | 394 |
|
27560 | 395 |
bootcycle-images: jimages |
25854 | 396 |
|
27560 | 397 |
docs-javadoc: gensrc rmic |
25854 | 398 |
|
399 |
docs-jvmtidoc: hotspot |
|
400 |
||
28008
068c4200829e
8067442: Tests using -Xshare:dump does not work with 'make test'
ehelin
parents:
28005
diff
changeset
|
401 |
test: jimages |
25854 | 402 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
403 |
verify-modules: exploded-image |
25854 | 404 |
|
405 |
endif |
|
406 |
||
407 |
################################################################################ |
|
408 |
# Virtual targets without recipes |
|
409 |
||
27560 | 410 |
buildtools: buildtools-langtools interim-langtools interim-corba interim-rmic \ |
411 |
buildtools-jdk |
|
412 |
||
25854 | 413 |
gensrc: $(GENSRC_TARGETS) |
414 |
||
415 |
gendata: $(GENDATA_TARGETS) |
|
416 |
||
417 |
copy: $(COPY_TARGETS) |
|
418 |
||
419 |
java: $(JAVA_TARGETS) |
|
420 |
||
421 |
rmic: $(RMIC_TARGETS) |
|
422 |
||
27560 | 423 |
libs: $(LIBS_TARGETS) |
25854 | 424 |
|
425 |
launchers: $(LAUNCHER_TARGETS) |
|
426 |
||
27560 | 427 |
# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which |
428 |
# is actually handled by jdk.jdi-gensrc |
|
429 |
jdk.jdwp.agent-gensrc: jdk.jdi-gensrc |
|
25854 | 430 |
|
431 |
# Declare dependencies from <module> to all the individual targets specific |
|
432 |
# to that module <module>-*. |
|
433 |
$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc)) |
|
434 |
$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java)) |
|
435 |
$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata)) |
|
436 |
$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic)) |
|
27560 | 437 |
$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs)) |
25854 | 438 |
$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers)) |
439 |
$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy)) |
|
440 |
||
441 |
ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \ |
|
27560 | 442 |
$(GENDATA_MODULES) $(LIBS_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES)) |
25854 | 443 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
444 |
exploded-image: $(ALL_MODULE_TARGETS) |
26128
91be51647a45
8056062: Additional minor cleanups from source restructure build changes
erikj
parents:
26116
diff
changeset
|
445 |
# The old 'jdk' target most closely matches the new exploded-image. Keep an |
91be51647a45
8056062: Additional minor cleanups from source restructure build changes
erikj
parents:
26116
diff
changeset
|
446 |
# alias for ease of use. |
91be51647a45
8056062: Additional minor cleanups from source restructure build changes
erikj
parents:
26116
diff
changeset
|
447 |
jdk: exploded-image |
25854 | 448 |
|
28285 | 449 |
images: test-image jimages demos samples zip-security |
25854 | 450 |
|
27560 | 451 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
452 |
images: mac-bundles |
|
453 |
endif |
|
25854 | 454 |
|
455 |
docs: docs-javadoc docs-jvmtidoc |
|
456 |
||
28285 | 457 |
test-image: prepare-test-image |
458 |
||
27560 | 459 |
ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \ |
460 |
jdk.jdwp.agent-gensrc $(ALL_MODULE_TARGETS) exploded-image jdk images \ |
|
28285 | 461 |
docs test-image |
25854 | 462 |
|
463 |
################################################################################ |
|
464 |
||
27560 | 465 |
all: images |
25854 | 466 |
default: exploded-image |
467 |
||
468 |
ALL_TARGETS += default all |
|
469 |
||
470 |
################################################################################ |
|
471 |
################################################################################ |
|
472 |
# |
|
473 |
# Clean targets |
|
474 |
# |
|
475 |
################################################################################ |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
476 |
# 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
|
477 |
# file. |
25854 | 478 |
|
27560 | 479 |
CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \ |
480 |
images make-support |
|
481 |
CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS)) |
|
482 |
CLEAN_PHASES := gensrc java native include |
|
483 |
CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES)) |
|
484 |
CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES)) |
|
485 |
# Construct targets of the form clean-$module-$phase |
|
486 |
CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \ |
|
487 |
$(addprefix $m-, $(CLEAN_PHASES)))) |
|
14111 | 488 |
|
489 |
# Remove everything, except the output from configure. |
|
27560 | 490 |
clean: $(CLEAN_DIR_TARGETS) |
491 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r source_tips build.log* build-trace*.log*) |
|
25854 | 492 |
$(ECHO) Cleaned all build artifacts. |
493 |
||
27560 | 494 |
$(CLEAN_DIR_TARGETS): |
495 |
$(call CleanDir,$(patsubst clean-%, %, $@)) |
|
496 |
||
497 |
$(CLEAN_PHASE_TARGETS): |
|
498 |
$(call Clean-$(patsubst clean-%,%, $@)) |
|
499 |
||
500 |
$(CLEAN_MODULE_TARGETS): |
|
501 |
$(call CleanModule,$(patsubst clean-%, %, $@)) |
|
502 |
||
503 |
$(CLEAN_MODULE_PHASE_TARGETS): |
|
504 |
$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \ |
|
505 |
$(word 2, $(subst -,$(SPACE),$@))) |
|
506 |
||
507 |
# When removing the support dir, we must also remove jdk. Building classes has |
|
508 |
# the side effect of generating native headers. The headers end up in support |
|
509 |
# while classes and touch files end up in jdk. |
|
510 |
clean-support: clean-jdk |
|
25854 | 511 |
|
512 |
clean-docs: clean-docstemp |
|
14111 | 513 |
|
514 |
# Remove everything, including configure configuration. |
|
515 |
# If the output directory was created by configure and now becomes empty, remove it as well. |
|
516 |
dist-clean: clean |
|
25854 | 517 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments \ |
27329 | 518 |
Makefile compare.sh tmp javacservers) |
25854 | 519 |
$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \ |
20363 | 520 |
if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \ |
521 |
$(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \ |
|
522 |
else \ |
|
25854 | 523 |
($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \ |
524 |
&& $(RM) -r $(OUTPUT_ROOT)) \ |
|
20363 | 525 |
fi \ |
526 |
) |
|
25854 | 527 |
$(ECHO) Cleaned everything, you will have to re-run configure. |
528 |
||
27560 | 529 |
ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_PHASE_TARGETS) \ |
530 |
$(CLEAN_MODULE_TARGETS) $(CLEAN_MODULE_PHASE_TARGETS) |
|
25854 | 531 |
|
532 |
################################################################################ |
|
14111 | 533 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
534 |
# Setup a rule for SPEC file that fails if executed. This check makes sure the |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
535 |
# configuration is up to date after changes to configure. |
25854 | 536 |
ifeq ($(findstring reconfigure, $(MAKECMDGOALS)), ) |
537 |
$(SPEC): $(wildcard $(SRC_ROOT)/common/autoconf/*) |
|
538 |
@$(ECHO) "ERROR: $(SPEC) is not up to date." |
|
539 |
@$(ECHO) "Please rerun configure! Easiest way to do this is by running" |
|
540 |
@$(ECHO) "'make reconfigure'." |
|
541 |
@$(ECHO) "It may also be ignored by setting IGNORE_OLD_CONFIG=true" |
|
542 |
@if test "x$(IGNORE_OLD_CONFIG)" != "xtrue"; then exit 1; fi |
|
543 |
endif |
|
544 |
||
26398
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
545 |
# The reconfigure target is automatically run serially from everything else |
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
546 |
# by the Makefile calling this file. |
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
547 |
|
22716
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
548 |
reconfigure: |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
549 |
ifneq ($(CONFIGURE_COMMAND_LINE), ) |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
550 |
@$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'" |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
551 |
else |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
552 |
@$(ECHO) "Re-running configure using default settings" |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
553 |
endif |
22721
63761da45392
8034788: Rewrite toolchain.m4 to support multiple toolchains per platform.
ihse
parents:
22716
diff
changeset
|
554 |
@( cd $(OUTPUT_ROOT) && $(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) ) |
14111 | 555 |
|
25854 | 556 |
ALL_TARGETS += reconfigure |
557 |
||
558 |
################################################################################ |
|
559 |
# Declare *-only targets for each normal target |
|
560 |
$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t))) |
|
14111 | 561 |
|
27560 | 562 |
ALL_TARGETS += $(addsuffix -only, $(filter-out clean%, $(ALL_TARGETS))) |
25854 | 563 |
|
564 |
################################################################################ |
|
565 |
||
566 |
.PHONY: $(ALL_TARGETS) |
|
567 |
||
568 |
include $(SRC_ROOT)/make/Jprt.gmk |
|
22031 | 569 |
|
14111 | 570 |
FRC: # Force target |