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