author | sspitsyn |
Mon, 27 Apr 2015 19:51:00 -0700 | |
changeset 30289 | 10b7b61d759a |
parent 29305 | 4ddc6faf7842 |
child 29662 | 78c47f0002c3 |
child 29851 | 81a61a04e2fe |
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. |
|
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 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
215 |
BOOTCYCLE_TARGET := product-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 |
||
241 |
ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \ |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
242 |
jrtfs-jar jimages profiles mac-bundles |
25854 | 243 |
|
244 |
################################################################################ |
|
245 |
# Docs targets |
|
246 |
||
247 |
docs-javadoc: |
|
248 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs) |
|
249 |
||
250 |
docs-jvmtidoc: |
|
251 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs) |
|
252 |
||
253 |
ALL_TARGETS += docs-javadoc docs-jvmtidoc |
|
254 |
||
255 |
################################################################################ |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
256 |
# Build tests |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
257 |
# |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
258 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
259 |
prepare-test-image: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
260 |
$(MKDIR) -p $(TEST_IMAGE_DIR) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
261 |
$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image' |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
262 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
263 |
build-test-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
264 |
+($(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
|
265 |
build-test-hotspot-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
266 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
267 |
test-image-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
268 |
+($(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
|
269 |
test-image-hotspot-jtreg-native) |
25854 | 270 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
271 |
build-test-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
272 |
+($(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
|
273 |
build-test-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
274 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
275 |
test-image-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
276 |
+($(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
|
277 |
test-image-jdk-jtreg-native) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
278 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
279 |
ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
280 |
test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
281 |
test-image-jdk-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
282 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
283 |
################################################################################ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
284 |
# Run tests |
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 |
# Run tests specified by $(TEST), or the default test set. |
25854 | 287 |
test: |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
288 |
$(call RunTests, $(TEST)) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
289 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
290 |
test-hotspot-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
291 |
$(call RunTests, "hotspot_native_sanity") |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
292 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
293 |
test-jdk-jtreg-native: |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
294 |
$(call RunTests, "jdk_native_sanity") |
25854 | 295 |
|
296 |
test-make: |
|
297 |
($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET)) |
|
298 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
299 |
ALL_TARGETS += test test-hotspot-jtreg-native test-jdk-jtreg-native test-make |
25854 | 300 |
|
301 |
################################################################################ |
|
302 |
# Verification targets |
|
303 |
||
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
304 |
verify-modules: |
26547
f8b190ea8955
8058367: Add verify-modules target to the default and images target
mchung
parents:
26398
diff
changeset
|
305 |
@$(call TargetEnter) |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
306 |
+($(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
|
307 |
@$(call TargetExit) |
25854 | 308 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
309 |
ALL_TARGETS += verify-modules |
25854 | 310 |
|
311 |
################################################################################ |
|
312 |
# Install targets |
|
313 |
||
314 |
install: |
|
315 |
+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk) |
|
316 |
||
317 |
ALL_TARGETS += install |
|
318 |
||
319 |
################################################################################ |
|
320 |
# |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
321 |
# Dependency declarations between targets. |
25854 | 322 |
# |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
323 |
# These are declared in two groups. First all dependencies between targets that |
25854 | 324 |
# have recipes above as these dependencies may be disabled. Then the aggregator |
325 |
# targets that do not have recipes of their own, which will never have their |
|
326 |
# dependencies disabled. |
|
327 |
# |
|
328 |
################################################################################ |
|
329 |
# Targets with recipes above |
|
330 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
331 |
# If running an *-only target, parallel execution and dependencies between |
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
332 |
# recipe targets are disabled. This makes it possible to run a select set of |
25854 | 333 |
# 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
|
334 |
# all prerequisites are fulfilled. |
25854 | 335 |
ifneq ($(findstring -only, $(MAKECMDGOALS)), ) |
336 |
.NOTPARALLEL: |
|
337 |
else |
|
27560 | 338 |
$(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools |
339 |
||
25854 | 340 |
interim-langtools: $(LANGTOOLS_GENSRC_TARGETS) |
341 |
||
27560 | 342 |
buildtools-jdk: interim-langtools |
25854 | 343 |
|
344 |
$(CORBA_GENSRC_TARGETS): interim-langtools |
|
345 |
||
27560 | 346 |
$(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk |
25854 | 347 |
|
348 |
interim-corba: $(CORBA_GENSRC_TARGETS) |
|
349 |
||
27560 | 350 |
$(GENDATA_TARGETS): interim-langtools buildtools-jdk |
25854 | 351 |
|
352 |
interim-rmic: interim-langtools |
|
353 |
||
354 |
$(RMIC_TARGETS): interim-langtools interim-corba interim-rmic |
|
355 |
||
356 |
import-hotspot: hotspot |
|
357 |
||
27560 | 358 |
$(LIBS_TARGETS): import-hotspot |
25854 | 359 |
|
360 |
$(LAUNCHER_TARGETS): java.base-libs |
|
361 |
||
26115
7a9dc384f3c8
8055188: General cleanup of minor issues from source restructure
erikj
parents:
25883
diff
changeset
|
362 |
# 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
|
363 |
# 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
|
364 |
# aren't built until after libjava and libjvm are available to link to. |
25854 | 365 |
demos: $(JAVA_TARGETS) |
366 |
||
367 |
# Declare dependency from <module>-java to <module>-gensrc |
|
368 |
$(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc)) |
|
369 |
||
370 |
# Declare dependencies between java modules |
|
371 |
$(foreach m, $(JAVA_MODULES), \ |
|
372 |
$(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \ |
|
373 |
$(call FindDepsForModule,$m))))) |
|
374 |
||
375 |
# Declare dependencies between <module>-rmic to <module>-java |
|
376 |
$(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java)) |
|
377 |
||
378 |
# 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
|
379 |
# 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
|
380 |
$(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java)) |
25854 | 381 |
|
382 |
# Declare dependencies from all other <module>-lib to java.base-lib |
|
27560 | 383 |
$(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \ |
25854 | 384 |
$(eval $t: java.base-libs)) |
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
385 |
# Declare the special case dependency for jdk.deploy.osx where libosx |
25854 | 386 |
# links against libosxapp. |
387 |
jdk.deploy.osx-libs: java.desktop-libs |
|
388 |
||
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
389 |
# This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a |
27560 | 390 |
# header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a |
391 |
# virtual target. |
|
392 |
jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc |
|
393 |
||
394 |
# Until the module system is in place, jdk.jdi-gensrc needs to combine service |
|
395 |
# loader configuration with jdk.hotspot.agent so is dependent on importing |
|
396 |
# hotspot. |
|
397 |
jdk.jdi-gensrc-jdk: import-hotspot |
|
25854 | 398 |
|
26672
528d9d6614e5
8047933: Race between jdk/make/scripts/genExceptions.sh and com.sun.tools.javadoc.Main
erikj
parents:
26398
diff
changeset
|
399 |
# 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
|
400 |
# in javadoc. |
27560 | 401 |
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
|
402 |
|
25854 | 403 |
# Explicitly add dependencies for special targets |
404 |
java.base-java: unpack-sec |
|
405 |
||
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
406 |
jdk.dev-gendata: java rmic |
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
407 |
|
27560 | 408 |
zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \ |
409 |
$(filter jdk.crypto%, $(JAVA_TARGETS)) |
|
25854 | 410 |
|
27560 | 411 |
zip-source: gensrc rmic |
412 |
||
413 |
strip-binaries: libs launchers gendata copy |
|
414 |
||
415 |
jrtfs-jar: buildtools-jdk |
|
25854 | 416 |
|
27560 | 417 |
jimages: exploded-image zip-source strip-binaries source-tips demos samples \ |
418 |
jrtfs-jar |
|
25854 | 419 |
|
27560 | 420 |
profiles: exploded-image strip-binaries source-tips |
25854 | 421 |
|
27560 | 422 |
mac-bundles: jimages |
25854 | 423 |
|
27560 | 424 |
bootcycle-images: jimages |
25854 | 425 |
|
27560 | 426 |
docs-javadoc: gensrc rmic |
25854 | 427 |
|
428 |
docs-jvmtidoc: hotspot |
|
429 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
430 |
test: jimages test-image |
25854 | 431 |
|
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
432 |
verify-modules: exploded-image |
25854 | 433 |
|
28600
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
434 |
test-make: clean-test-make |
09dd1740f176
8069261: Create make dependencies on make variable values
erikj
parents:
28285
diff
changeset
|
435 |
|
29159
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
436 |
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
|
437 |
|
7fed45c53518
8074072: Race condition in build since JDK-8072842 can cause failed builds on Solaris
erikj
parents:
29156
diff
changeset
|
438 |
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
|
439 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
440 |
test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
441 |
|
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
442 |
test-image-jdk-jtreg-native: build-test-jdk-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
443 |
|
25854 | 444 |
endif |
445 |
||
446 |
################################################################################ |
|
447 |
# Virtual targets without recipes |
|
448 |
||
27560 | 449 |
buildtools: buildtools-langtools interim-langtools interim-corba interim-rmic \ |
450 |
buildtools-jdk |
|
451 |
||
25854 | 452 |
gensrc: $(GENSRC_TARGETS) |
453 |
||
454 |
gendata: $(GENDATA_TARGETS) |
|
455 |
||
456 |
copy: $(COPY_TARGETS) |
|
457 |
||
458 |
java: $(JAVA_TARGETS) |
|
459 |
||
460 |
rmic: $(RMIC_TARGETS) |
|
461 |
||
27560 | 462 |
libs: $(LIBS_TARGETS) |
25854 | 463 |
|
464 |
launchers: $(LAUNCHER_TARGETS) |
|
465 |
||
27560 | 466 |
# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which |
467 |
# is actually handled by jdk.jdi-gensrc |
|
468 |
jdk.jdwp.agent-gensrc: jdk.jdi-gensrc |
|
25854 | 469 |
|
470 |
# Declare dependencies from <module> to all the individual targets specific |
|
471 |
# to that module <module>-*. |
|
472 |
$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc)) |
|
473 |
$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java)) |
|
474 |
$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata)) |
|
475 |
$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic)) |
|
27560 | 476 |
$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs)) |
25854 | 477 |
$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers)) |
478 |
$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy)) |
|
479 |
||
480 |
ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \ |
|
27560 | 481 |
$(GENDATA_MODULES) $(LIBS_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES)) |
25854 | 482 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
483 |
# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk. |
26132
11df1233e1e8
8055856: checkdeps build target doesn't work for cross-compilation builds
mchung
parents:
26128
diff
changeset
|
484 |
exploded-image: $(ALL_MODULE_TARGETS) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
485 |
|
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
486 |
# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables, |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
487 |
# and in line with this, our targets for creating these are named *-image[s]. |
25854 | 488 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
489 |
# 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
|
490 |
# (and possibly other, more specific versions) |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
491 |
product-images: jimages demos samples zip-security verify-modules |
25854 | 492 |
|
27560 | 493 |
ifeq ($(OPENJDK_TARGET_OS), macosx) |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
494 |
product-images: mac-bundles |
27560 | 495 |
endif |
25854 | 496 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
497 |
# This target builds the documentation image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
498 |
docs-image: docs-javadoc docs-jvmtidoc |
25854 | 499 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
500 |
# This target builds the test image |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
501 |
test-image: prepare-test-image test-image-hotspot-jtreg-native \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
502 |
test-image-jdk-jtreg-native |
28285 | 503 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
504 |
# 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
|
505 |
all-images: product-images test-image docs-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
506 |
|
27560 | 507 |
ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \ |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
508 |
jdk.jdwp.agent-gensrc $(ALL_MODULE_TARGETS) exploded-image \ |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
509 |
product-images docs-image test-image all-images |
25854 | 510 |
|
511 |
################################################################################ |
|
512 |
||
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
513 |
# Traditional targets typically run by users. |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
514 |
# 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
|
515 |
# "modern" naming scheme. |
25854 | 516 |
default: exploded-image |
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
517 |
jdk: exploded-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
518 |
images: product-images |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
519 |
docs: docs-image |
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
520 |
all: all-images |
25854 | 521 |
|
28811
65cf1b4087cf
8071767: Improve names and dependencies for image targets
ihse
parents:
28809
diff
changeset
|
522 |
ALL_TARGETS += default jdk images docs all |
25854 | 523 |
|
524 |
################################################################################ |
|
525 |
################################################################################ |
|
526 |
# |
|
527 |
# Clean targets |
|
528 |
# |
|
529 |
################################################################################ |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
530 |
# 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
|
531 |
# file. |
25854 | 532 |
|
27560 | 533 |
CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \ |
29305
4ddc6faf7842
8073021: add native code coverage target into makefiles
erikj
parents:
29159
diff
changeset
|
534 |
images make-support test-make bundles |
27560 | 535 |
CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS)) |
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
536 |
CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
537 |
CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS)) |
27560 | 538 |
CLEAN_PHASES := gensrc java native include |
539 |
CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES)) |
|
540 |
CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES)) |
|
541 |
# Construct targets of the form clean-$module-$phase |
|
542 |
CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \ |
|
543 |
$(addprefix $m-, $(CLEAN_PHASES)))) |
|
14111 | 544 |
|
545 |
# Remove everything, except the output from configure. |
|
27560 | 546 |
clean: $(CLEAN_DIR_TARGETS) |
547 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r source_tips build.log* build-trace*.log*) |
|
25854 | 548 |
$(ECHO) Cleaned all build artifacts. |
549 |
||
27560 | 550 |
$(CLEAN_DIR_TARGETS): |
551 |
$(call CleanDir,$(patsubst clean-%, %, $@)) |
|
552 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
553 |
$(CLEAN_TEST_TARGETS): |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
554 |
$(call CleanTest,$(patsubst clean-test-%, %, $@)) |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
555 |
|
27560 | 556 |
$(CLEAN_PHASE_TARGETS): |
557 |
$(call Clean-$(patsubst clean-%,%, $@)) |
|
558 |
||
559 |
$(CLEAN_MODULE_TARGETS): |
|
560 |
$(call CleanModule,$(patsubst clean-%, %, $@)) |
|
561 |
||
562 |
$(CLEAN_MODULE_PHASE_TARGETS): |
|
563 |
$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \ |
|
564 |
$(word 2, $(subst -,$(SPACE),$@))) |
|
565 |
||
566 |
# When removing the support dir, we must also remove jdk. Building classes has |
|
567 |
# the side effect of generating native headers. The headers end up in support |
|
568 |
# while classes and touch files end up in jdk. |
|
569 |
clean-support: clean-jdk |
|
25854 | 570 |
|
571 |
clean-docs: clean-docstemp |
|
14111 | 572 |
|
573 |
# Remove everything, including configure configuration. |
|
574 |
# If the output directory was created by configure and now becomes empty, remove it as well. |
|
575 |
dist-clean: clean |
|
25854 | 576 |
($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments \ |
27329 | 577 |
Makefile compare.sh tmp javacservers) |
25854 | 578 |
$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \ |
20363 | 579 |
if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \ |
580 |
$(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \ |
|
581 |
else \ |
|
25854 | 582 |
($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \ |
583 |
&& $(RM) -r $(OUTPUT_ROOT)) \ |
|
20363 | 584 |
fi \ |
585 |
) |
|
25854 | 586 |
$(ECHO) Cleaned everything, you will have to re-run configure. |
587 |
||
29156
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
588 |
ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_TEST_TARGETS) \ |
bd932374081c
8072842: Add support for building native JTReg tests
ihse
parents:
28899
diff
changeset
|
589 |
$(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) $(CLEAN_MODULE_PHASE_TARGETS) |
25854 | 590 |
|
591 |
################################################################################ |
|
14111 | 592 |
|
27595
cff167b3bfa2
8065914: Various improvements and cleanup of build system
ihse
parents:
27329
diff
changeset
|
593 |
# 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
|
594 |
# configuration is up to date after changes to configure. |
25854 | 595 |
ifeq ($(findstring reconfigure, $(MAKECMDGOALS)), ) |
596 |
$(SPEC): $(wildcard $(SRC_ROOT)/common/autoconf/*) |
|
597 |
@$(ECHO) "ERROR: $(SPEC) is not up to date." |
|
598 |
@$(ECHO) "Please rerun configure! Easiest way to do this is by running" |
|
599 |
@$(ECHO) "'make reconfigure'." |
|
600 |
@$(ECHO) "It may also be ignored by setting IGNORE_OLD_CONFIG=true" |
|
601 |
@if test "x$(IGNORE_OLD_CONFIG)" != "xtrue"; then exit 1; fi |
|
602 |
endif |
|
603 |
||
26398
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
604 |
# 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
|
605 |
# by the Makefile calling this file. |
ca1f84f97e20
8057537: Serialize reconfigure and fix make clean-foo foo
erikj
parents:
26285
diff
changeset
|
606 |
|
22716
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
607 |
reconfigure: |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
608 |
ifneq ($(CONFIGURE_COMMAND_LINE), ) |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
609 |
@$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'" |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
610 |
else |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
611 |
@$(ECHO) "Re-running configure using default settings" |
cf32fe2eb254
8034199: Add 'reconfigure' target for re-creating a configuration
ihse
parents:
22714
diff
changeset
|
612 |
endif |
28809
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
613 |
@( cd $(OUTPUT_ROOT) && PATH="$(ORIGINAL_PATH)" \ |
6481e27e00ee
8071329: Stop exporting INCLUDE and LIB when building on windows
erikj
parents:
28606
diff
changeset
|
614 |
$(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) ) |
14111 | 615 |
|
25854 | 616 |
ALL_TARGETS += reconfigure |
617 |
||
618 |
################################################################################ |
|
619 |
# Declare *-only targets for each normal target |
|
620 |
$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t))) |
|
14111 | 621 |
|
27560 | 622 |
ALL_TARGETS += $(addsuffix -only, $(filter-out clean%, $(ALL_TARGETS))) |
25854 | 623 |
|
624 |
################################################################################ |
|
625 |
||
626 |
.PHONY: $(ALL_TARGETS) |
|
627 |
||
628 |
include $(SRC_ROOT)/make/Jprt.gmk |
|
22031 | 629 |
|
14111 | 630 |
FRC: # Force target |