Main.gmk revision 2576:d3c1b028c499
1#
2# Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
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
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
31# Declare default target
32default:
33
34ifeq ($(wildcard $(SPEC)),)
35  $(error Main.gmk needs SPEC set to a proper spec.gmk)
36endif
37
38# Now load the spec
39include $(SPEC)
40
41include $(SRC_ROOT)/make/MainSupport.gmk
42
43# Load the vital tools for all the makefiles.
44include $(SRC_ROOT)/make/common/MakeBase.gmk
45include $(SRC_ROOT)/make/common/Modules.gmk
46include $(SRC_ROOT)/make/common/FindTests.gmk
47
48# Declare ALL_TARGETS as an immediate variable. This variable is a list of all
49# valid top level targets. It's used to declare them all as PHONY and to
50# generate the -only targets.
51ALL_TARGETS :=
52
53# Hook to include the corresponding custom file, if present.
54$(eval $(call IncludeCustomExtension, , Main.gmk))
55
56# All modules for the current target platform.
57ALL_MODULES := $(call FindAllModules)
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
69# When creating a BUILDJDK, the buildtools and interim targets have already
70# been built and should not be built again.
71ifneq ($(CREATING_BUILDJDK), true)
72  buildtools-langtools:
73	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
74
75  interim-langtools:
76	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
77
78  interim-rmic:
79	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
80
81  interim-cldrconverter:
82	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk)
83
84  buildtools-jdk:
85	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk)
86
87  buildtools-modules:
88	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileModuleTools.gmk)
89
90  buildtools-hotspot:
91	+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileTools.gmk)
92endif
93
94ALL_TARGETS += buildtools-langtools interim-langtools \
95    interim-rmic interim-cldrconverter buildtools-jdk buildtools-modules \
96    buildtools-hotspot
97
98################################################################################
99# Special targets for certain modules
100
101unpack-sec:
102	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
103
104generate-exported-symbols:
105	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk)
106
107ALL_TARGETS += unpack-sec generate-exported-symbols
108
109################################################################################
110# Gensrc targets, generating source before java compilation can be done
111#
112# When creating a BUILDJDK, the java targets have already been built and copied
113# into the buildjdk so no need to generate sources.
114ifneq ($(CREATING_BUILDJDK), true)
115  $(eval $(call DeclareRecipesForPhase, GENSRC, \
116      TARGET_SUFFIX := gensrc, \
117      FILE_PREFIX := Gensrc, \
118      MAKE_SUBDIR := gensrc, \
119      CHECK_MODULES := $(ALL_MODULES), \
120      MULTIPLE_MAKEFILES := true))
121
122  JDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
123  LANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
124  CORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
125  HOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS))
126
127  GENSRC_MODULEINFO_MODULES := $(ALL_MODULES)
128  GENSRC_MODULEINFO_TARGETS := $(addsuffix -gensrc-moduleinfo, \
129      $(GENSRC_MODULEINFO_MODULES))
130
131  GENSRC_MODULES := $(GENSRC_MODULEINFO_MODULES)
132  GENSRC_TARGETS += $(sort $(GENSRC_MODULEINFO_TARGETS) \
133      $(addsuffix -gensrc, $(GENSRC_MODULES)))
134
135  define DeclareModuleInfoRecipe
136    $1-gensrc-moduleinfo:
137	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
138	    -f GensrcModuleInfo.gmk MODULE=$1)
139
140    $1-gensrc: $1-gensrc-moduleinfo
141  endef
142
143  $(foreach m, $(GENSRC_MODULEINFO_MODULES), $(eval $(call DeclareModuleInfoRecipe,$m)))
144endif
145
146ALL_TARGETS += $(GENSRC_TARGETS)
147
148################################################################################
149# Generate data targets
150$(eval $(call DeclareRecipesForPhase, GENDATA, \
151    TARGET_SUFFIX := gendata, \
152    FILE_PREFIX := Gendata, \
153    MAKE_SUBDIR := gendata, \
154    CHECK_MODULES := $(ALL_MODULES), \
155    USE_WRAPPER := true))
156
157ALL_TARGETS += $(GENDATA_TARGETS)
158
159################################################################################
160# Copy files targets
161$(eval $(call DeclareRecipesForPhase, COPY, \
162    TARGET_SUFFIX := copy, \
163    FILE_PREFIX := Copy, \
164    MAKE_SUBDIR := copy, \
165    CHECK_MODULES := $(ALL_MODULES), \
166    USE_WRAPPER := true, \
167    MULTIPLE_MAKEFILES := true))
168
169ALL_COPY_MODULES += $(COPY_MODULES)
170ALL_COPY_TARGETS += $(COPY_TARGETS)
171
172IMPORT_COPY_MODULES := $(call FindImportedModules)
173IMPORT_COPY_TARGETS := $(addsuffix -copy, $(IMPORT_COPY_MODULES))
174ALL_COPY_MODULES += $(IMPORT_COPY_MODULES)
175ALL_COPY_TARGETS += $(IMPORT_COPY_TARGETS)
176
177define DeclareImportCopyRecipe
178  $1-copy:
179	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
180	    -f CopyImportModules.gmk MODULE=$1)
181endef
182
183$(foreach m, $(IMPORT_COPY_MODULES), $(eval $(call DeclareImportCopyRecipe,$m)))
184
185ALL_TARGETS += $(ALL_COPY_TARGETS)
186
187################################################################################
188# Targets for compiling all java modules. Nashorn is treated separately.
189JAVA_MODULES := $(ALL_MODULES)
190JAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
191
192define DeclareCompileJavaRecipe
193  $1-java:
194	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
195	    -f CompileJavaModules.gmk MODULE=$1)
196endef
197
198$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
199    $(eval $(call DeclareCompileJavaRecipe,$m)))
200
201# Build nashorn. Needs to be compiled separately from the rest of the modules
202# due to nasgen.
203jdk.scripting.nashorn-java:
204	+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \
205	    -f BuildNashorn.gmk compile)
206
207ALL_TARGETS += $(JAVA_TARGETS)
208
209################################################################################
210# Targets for running rmic.
211$(eval $(call DeclareRecipesForPhase, RMIC, \
212    TARGET_SUFFIX := rmic, \
213    FILE_PREFIX := Rmic, \
214    MAKE_SUBDIR := rmic, \
215    CHECK_MODULES := $(ALL_MODULES)))
216
217ALL_TARGETS += $(RMIC_TARGETS)
218
219################################################################################
220# Targets for compiling native libraries
221$(eval $(call DeclareRecipesForPhase, LIBS, \
222    TARGET_SUFFIX := libs, \
223    FILE_PREFIX := Lib, \
224    MAKE_SUBDIR := lib, \
225    CHECK_MODULES := $(ALL_MODULES), \
226    USE_WRAPPER := true))
227
228ALL_TARGETS += $(LIBS_TARGETS)
229
230################################################################################
231# Targets for compiling native executables
232$(eval $(call DeclareRecipesForPhase, LAUNCHER, \
233    TARGET_SUFFIX := launchers, \
234    FILE_PREFIX := Launcher, \
235    MAKE_SUBDIR := launcher, \
236    CHECK_MODULES := $(ALL_MODULES), \
237    USE_WRAPPER := true))
238
239ALL_TARGETS += $(LAUNCHER_TARGETS)
240
241################################################################################
242# Build hotspot target
243
244HOTSPOT_VARIANT_TARGETS := $(addprefix hotspot-, $(JVM_VARIANTS))
245HOTSPOT_VARIANT_GENSRC_TARGETS := $(addsuffix -gensrc, $(HOTSPOT_VARIANT_TARGETS))
246HOTSPOT_VARIANT_LIBS_TARGETS := $(addsuffix -libs, $(HOTSPOT_VARIANT_TARGETS))
247
248define DeclareHotspotGensrcRecipe
249  hotspot-$1-gensrc:
250	$$(call LogInfo, Building JVM variant '$1' with features '$(JVM_FEATURES_$1)')
251	+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f gensrc/GenerateSources.gmk \
252	    JVM_VARIANT=$1)
253endef
254
255$(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotGensrcRecipe,$v)))
256
257define DeclareHotspotLibsRecipe
258  hotspot-$1-libs:
259	+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f lib/CompileLibraries.gmk \
260	    JVM_VARIANT=$1)
261endef
262
263$(foreach v, $(JVM_VARIANTS), $(eval $(call DeclareHotspotLibsRecipe,$v)))
264
265hotspot-jsig:
266	+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f lib/CompileLibjsig.gmk)
267
268hotspot-ide-project:
269	+($(CD) $(HOTSPOT_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f ide/CreateVSProject.gmk)
270
271ALL_TARGETS += $(HOTSPOT_VARIANT_TARGETS) $(HOTSPOT_VARIANT_GENSRC_TARGETS) \
272    $(HOTSPOT_VARIANT_LIBS_TARGETS) hotspot-jsig hotspot-ide-project
273
274################################################################################
275# Build demos targets
276
277demos-jdk:
278	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
279
280ALL_TARGETS += demos-jdk
281
282################################################################################
283# Jigsaw specific data and analysis targets.
284
285generate-summary:
286	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f GenerateModuleSummary.gmk)
287
288ALL_TARGETS += generate-summary
289
290################################################################################
291# Jmod targets
292
293JMOD_MODULES := $(ALL_MODULES)
294JMOD_TARGETS := $(addsuffix -jmod, $(JMOD_MODULES))
295
296define DeclareJmodRecipe
297  $1-jmod:
298	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \
299	    MODULE=$1)
300endef
301
302$(foreach m, $(JMOD_MODULES), $(eval $(call DeclareJmodRecipe,$m)))
303
304ALL_TARGETS += $(JMOD_TARGETS)
305
306################################################################################
307# Images targets
308
309store-source-revision:
310	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk store-source-revision)
311
312create-source-revision-tracker:
313	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f SourceRevision.gmk create-source-revision-tracker)
314
315BOOTCYCLE_TARGET := product-images
316bootcycle-images:
317        ifneq ($(COMPILE_TYPE), cross)
318	  $(call LogWarn, Boot cycle build step 2: Building a new JDK image using previously built image)
319	  +$(MAKE) $(MAKE_ARGS) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \
320	      JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main
321        else
322	  $(call LogWarn, Boot cycle build disabled when cross compiling)
323        endif
324
325zip-security:
326	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
327
328zip-source:
329	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
330
331jrtfs-jar:
332	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
333
334jdk-image:
335	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jdk)
336
337jre-image:
338	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jre)
339
340symbols-image:
341	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk symbols)
342
343profiles-image:
344	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
345
346mac-bundles-jdk:
347	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
348
349release-file:
350	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ReleaseFile.gmk)
351
352exploded-image-optimize:
353	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ExplodedImageOptimize.gmk)
354
355ALL_TARGETS += store-source-revision create-source-revision-tracker bootcycle-images zip-security \
356    zip-source jrtfs-jar jdk-image jre-image \
357    symbols-image profiles-image mac-bundles-jdk \
358    release-file exploded-image-optimize
359
360################################################################################
361# Docs targets
362
363docs-module-graphs:
364	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-module-graphs)
365
366docs-javadoc:
367	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-javadoc)
368
369docs-copy:
370	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-copy)
371
372docs-zip:
373	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs-zip)
374
375update-build-docs:
376	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f UpdateBuildDocs.gmk)
377
378ALL_TARGETS += docs-module-graphs docs-javadoc docs-copy docs-zip update-build-docs
379
380################################################################################
381# Cross compilation support
382
383ifeq ($(CREATING_BUILDJDK), true)
384  # This target is only called by the recursive call below.
385  create-buildjdk-interim-image-helper: interim-image jdk.jlink-launchers \
386      java.base-copy jdk.jdeps-launchers
387endif
388
389create-buildjdk-copy:
390	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateBuildJdkCopy.gmk)
391
392create-buildjdk-interim-image:
393	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Main.gmk \
394	    $@-helper \
395	    SPEC=$(dir $(SPEC))buildjdk-spec.gmk \
396	    HOTSPOT_SPEC=$(dir $(SPEC))buildjdk-spec.gmk \
397	    CREATING_BUILDJDK=true)
398
399ALL_TARGETS += create-buildjdk-copy create-buildjdk-interim-image
400
401################################################################################
402# The interim-image is a small jlinked image that is used to generate artifacts
403# at build time for use when linking the real images.
404
405INTERIM_JMOD_TARGETS := $(addsuffix -interim-jmod, $(INTERIM_IMAGE_MODULES))
406
407define DeclareInterimJmodRecipe
408  $1-interim-jmod:
409	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CreateJmods.gmk \
410	    MODULE=$1 \
411	    JMODS_DIR=$(INTERIM_JMODS_DIR) \
412	    JMODS_TEMPDIR=$(INTERIM_JMODS_DIR)/temp \
413	    INTERIM_JMOD=true \
414	)
415endef
416
417$(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $(call DeclareInterimJmodRecipe,$m)))
418
419interim-image:
420	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f InterimImage.gmk)
421
422ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
423  generate-link-opt-data:
424	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f GenerateLinkOptData.gmk)
425endif
426
427ALL_TARGETS += $(INTERIM_JMOD_TARGETS) interim-image generate-link-opt-data
428
429################################################################################
430# Generate test names for all JTReg test groups
431#
432
433define DeclareRunTestRecipe
434  run-test-$1:
435	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$1")
436
437endef
438
439# ALL_NAMED_TESTS is defined in FindTests.gmk
440$(foreach t, $(ALL_NAMED_TESTS), $(eval $(call DeclareRunTestRecipe,$t)))
441ALL_TEST_TARGETS := $(addprefix run-test-, $(ALL_NAMED_TESTS))
442
443ALL_TARGETS += $(ALL_TEST_TARGETS)
444
445################################################################################
446# Build tests
447#
448
449prepare-test-image:
450	$(MKDIR) -p $(TEST_IMAGE_DIR)
451	$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
452
453build-test-hotspot-jtreg-native:
454	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
455	    build-test-hotspot-jtreg-native)
456
457test-image-hotspot-jtreg-native:
458	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
459	    test-image-hotspot-jtreg-native)
460
461build-test-jdk-jtreg-native:
462	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
463	    build-test-jdk-jtreg-native)
464
465test-image-jdk-jtreg-native:
466	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
467	    test-image-jdk-jtreg-native)
468
469run-test:
470	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f RunTests.gmk run-test TEST="$(TEST)")
471
472ifeq ($(BUILD_GTEST), true)
473  test-image-hotspot-gtest:
474	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f GtestImage.gmk)
475endif
476
477build-test-lib:
478	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
479
480ifeq ($(BUILD_FAILURE_HANDLER), true)
481  # Builds the failure handler jtreg extension
482  build-test-failure-handler:
483	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
484	    -f BuildFailureHandler.gmk build)
485
486  # Runs the tests for the failure handler jtreg extension
487  test-failure-handler:
488	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
489	    -f BuildFailureHandler.gmk test)
490
491  # Copies the failure handler jtreg extension into the test image
492  test-image-failure-handler:
493	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) \
494	     -f BuildFailureHandler.gmk images)
495endif
496
497ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
498    test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
499    test-image-jdk-jtreg-native build-test-lib build-test-failure-handler \
500    test-failure-handler test-image-failure-handler test-image-hotspot-gtest \
501    run-test
502
503################################################################################
504# Run tests
505
506# Run tests specified by $(TEST), or the default test set.
507test:
508	$(call RunTests, $(TEST), $(JDK_IMAGE_DIR))
509
510test-hotspot-jtreg:
511	$(call RunTests, "hotspot_all", $(JDK_IMAGE_DIR))
512
513test-hotspot-jtreg-native:
514	$(call RunTests, "hotspot_native_sanity", $(JDK_IMAGE_DIR))
515
516test-hotspot-internal:
517	$(call RunTests, "hotspot_internal", $(JDK_OUTPUTDIR))
518
519test-hotspot-gtest:
520	$(call RunTests, "hotspot_gtest", $(JDK_OUTPUTDIR))
521
522test-jdk-jtreg-native:
523	$(call RunTests, "jdk_native_sanity", $(JDK_IMAGE_DIR))
524
525test-make:
526	($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
527
528ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
529    test-hotspot-internal test-hotspot-gtest test-jdk-jtreg-native test-make
530
531################################################################################
532# Bundles
533
534product-bundles:
535	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk product-bundles)
536
537profiles-bundles:
538	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk profiles-bundles)
539
540test-bundles:
541	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk test-bundles)
542
543docs-bundles:
544	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Bundles.gmk docs-bundles)
545
546ALL_TARGETS += product-bundles profiles-bundles test-bundles docs-bundles
547
548################################################################################
549# Install targets
550
551install:
552	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
553
554ALL_TARGETS += install
555
556################################################################################
557#
558# Dependency declarations between targets.
559#
560# These are declared in two groups. First all dependencies between targets that
561# have recipes above as these dependencies may be disabled. Then the aggregator
562# targets that do not have recipes of their own, which will never have their
563# dependencies disabled.
564#
565################################################################################
566# Targets with recipes above
567
568# If running an *-only target, parallel execution and dependencies between
569# recipe targets are disabled. This makes it possible to run a select set of
570# recipe targets in order. It's the responsibility of the user to make sure
571# all prerequisites are fulfilled.
572ifneq ($(findstring -only, $(MAKECMDGOALS)), )
573  .NOTPARALLEL:
574else
575  $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
576
577  interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
578
579  buildtools-jdk: interim-langtools interim-cldrconverter
580
581  buildtools-hotspot: interim-langtools
582
583  buildtools-modules: exploded-image-base
584
585  $(CORBA_GENSRC_TARGETS): interim-langtools
586
587  $(HOTSPOT_GENSRC_TARGETS): interim-langtools buildtools-hotspot
588
589  $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
590
591  $(GENSRC_MODULEINFO_TARGETS): buildtools-jdk
592
593  $(GENDATA_TARGETS): interim-langtools buildtools-jdk
594
595  interim-rmic: interim-langtools
596
597  $(RMIC_TARGETS): interim-langtools interim-rmic
598
599  $(JAVA_TARGETS): interim-langtools
600
601  # Declare dependencies between hotspot-<variant>* targets
602  $(foreach v, $(JVM_VARIANTS), \
603      $(eval hotspot-$v: hotspot-$v-gensrc hotspot-$v-libs) \
604      $(eval hotspot-$v-libs: hotspot-$v-gensrc) \
605  )
606
607  hotspot-ide-project: hotspot exploded-image
608
609  generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
610
611  # Building one JVM variant is enough to start building the other libs
612  $(LIBS_TARGETS): hotspot-$(JVM_VARIANT_MAIN)-libs
613
614  $(LAUNCHER_TARGETS): java.base-libs
615
616  ifeq ($(STATIC_BUILD), true)
617    $(LAUNCHER_TARGETS): generate-exported-symbols
618  endif
619
620  # The demos are currently linking to libjvm and libjava, just like all other
621  # jdk libs, even though they don't need to. To avoid warnings, make sure they
622  # aren't built until after libjava and libjvm are available to link to.
623  demos-jdk: java.base-libs exploded-image-optimize
624
625  # Declare dependency from <module>-java to <module>-gensrc
626  $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
627
628  # Declare dependencies between java modules
629  $(foreach m, $(JAVA_MODULES), \
630      $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
631      $(call FindDepsForModule,$m)))))
632
633  # Declare dependencies between <module>-rmic to <module>-java
634  $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
635
636  # Declare dependencies from <module>-lib to <module>-java
637  # Skip modules that do not have java source.
638  # When creating a BUILDJDK, the java compilation has already been done by the
639  # normal build and copied in.
640  ifneq ($(CREATING_BUILDJDK), true)
641    $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
642  endif
643
644  # Declare dependencies from all other <module>-lib to java.base-lib
645  $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
646      $(eval $t: java.base-libs))
647
648  # jdk.accessibility depends on java.desktop
649  jdk.accessibility-libs: java.desktop-libs
650
651  # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
652  # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
653  # virtual target.
654  jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
655
656  # The swing beans need to have java base properly generated to avoid errors
657  # in javadoc.
658  java.desktop-gensrc-jdk: java.base-gensrc
659
660  # The annotation processing for jdk.internal.vm.ci and jdk.internal.vm.compiler
661  # needs classes from the current JDK.
662  jdk.internal.vm.ci-gensrc-hotspot: $(addsuffix -java, \
663      $(call FindTransitiveDepsForModule, jdk.internal.vm.ci))
664  jdk.internal.vm.compiler-gensrc-hotspot: $(addsuffix -java, \
665      $(call FindTransitiveDepsForModule, jdk.internal.vm.compiler))
666
667  # For jdk.internal.vm.compiler, the gensrc step is generating a module-info.java.extra
668  # file to be processed by the gensrc-moduleinfo target.
669  jdk.internal.vm.compiler-gensrc-moduleinfo: jdk.internal.vm.compiler-gensrc-hotspot
670
671  # Explicitly add dependencies for special targets
672  java.base-java: unpack-sec
673
674  jdk.jdeps-gendata: java rmic
675
676  # Declare dependencies between jmod targets.
677  # java.base jmod needs jrt-fs.jar and access to the other jmods to be built.
678  # When creating a BUILDJDK, we don't need to add hashes to java.base, thus
679  # we don't need to depend on all other jmods
680  ifneq ($(CREATING_BUILDJDK), true)
681    java.base-jmod: jrtfs-jar $(filter-out java.base-jmod, $(JMOD_TARGETS))
682  endif
683
684  # Building java.base-jmod requires all of hotspot to be built.
685  java.base-jmod: hotspot
686
687  # Declare dependencies from <module>-jmod to all other module targets
688  # When creating a BUILDJDK, the java compilation has already been done by the
689  # normal build and copied in.
690  ifneq ($(CREATING_BUILDJDK), true)
691    $(foreach m, $(JAVA_MODULES), $(eval $m_JMOD_DEPS += $m-java))
692  endif
693  $(foreach m, $(GENDATA_MODULES), $(eval $m_JMOD_DEPS += $m-gendata))
694  $(foreach m, $(RMIC_MODULES), $(eval $m_JMOD_DEPS += $m-rmic))
695  $(foreach m, $(LIBS_MODULES), $(eval $m_JMOD_DEPS += $m-libs))
696  $(foreach m, $(LAUNCHER_MODULES), $(eval $m_JMOD_DEPS += $m-launchers))
697  $(foreach m, $(COPY_MODULES), $(eval $m_JMOD_DEPS += $m-copy))
698  $(foreach m, $(ALL_MODULES), $(eval $m-jmod: $($(m)_JMOD_DEPS)))
699  $(foreach m, $(INTERIM_IMAGE_MODULES), $(eval $m-interim-jmod: $($(m)_JMOD_DEPS)))
700
701  # Jmods cannot be created until we have the jmod tool ready to run. During
702  # a normal build we run it from the exploded image, but when cross compiling
703  # it's run from the buildjdk, which is either created at build time or user
704  # supplied.
705  #
706  # For the exploded image to be runnable, all java modules and
707  # jdk.jlink-launchers need to be built. We also need to copy jvm.cfg (done
708  # in java.base-copy) and tzdb.dat (done in java.base-gendata) to the
709  # appropriate location otherwise jimage, jlink and jmod won't start. This
710  # also applies when creating the buildjdk.
711  DEFAULT_JMOD_DEPS := java.base-libs java.base-copy java.base-gendata \
712      jdk.jlink-launchers
713  # When cross compiling and buildjdk is to be created, depend on creating the
714  # buildjdk instead of the default dependencies.
715  ifeq ($(CREATE_BUILDJDK), true)
716    # Avoid calling create-buildjdk from within a create-buildjdk call.
717    ifneq ($(CREATING_BUILDJDK), true)
718      $(JMOD_TARGETS): create-buildjdk
719      buildtools-modules: create-buildjdk
720    else
721      # While actually creating the buildjdk, the default deps applies.
722      $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS)
723    endif
724  else
725    # The normal non cross compilation case uses the default deps.
726    # To avoid races with the optimize target, that also needs to happen first.
727    $(JMOD_TARGETS) $(INTERIM_JMOD_TARGETS): $(DEFAULT_JMOD_DEPS) \
728        exploded-image-optimize
729  endif
730
731  # All modules include the main license files from java.base.
732  $(JMOD_TARGETS): java.base-copy
733
734  zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
735      $(filter jdk.crypto%, $(JAVA_TARGETS))
736
737  zip-source: gensrc rmic
738
739  jrtfs-jar: interim-langtools
740
741  ifeq ($(ENABLE_GENERATE_CLASSLIST), true)
742    ifeq ($(CREATE_BUILDJDK), true)
743      # If creating a buildjdk, the interim image needs to be based on that.
744      generate-link-opt-data: create-buildjdk
745    else ifeq ($(EXTERNAL_BUILDJDK), false)
746      # If an external buildjdk has been provided, we skip generating an
747      # interim-image and just use the external buildjdk for generating
748      # classlist.
749      generate-link-opt-data: interim-image
750    endif
751    generate-link-opt-data: buildtools-jdk
752
753    # The generated classlist needs to go into java.base-jmod.
754    java.base-jmod jdk.jlink-jmod jdk-image jre-image: generate-link-opt-data
755  endif
756
757  release-file: create-source-revision-tracker
758
759  jdk-image: jmods zip-source demos release-file
760  jre-image: jmods release-file
761  symbols-image: $(LIBS_TARGETS) $(LAUNCHER_TARGETS)
762
763  profiles-image: jmods release-file
764
765  mac-bundles-jdk: jdk-image jre-image
766
767  # The optimize target can run as soon as the modules dir has been completely
768  # populated (java, copy and gendata targets) and the basic libs and launchers
769  # have been built.
770  exploded-image-optimize: java copy gendata java.base-libs java.base-launchers \
771      buildtools-modules
772
773  bootcycle-images: jdk-image
774
775  docs-module-graphs: exploded-image buildtools-modules 
776
777  docs-javadoc: $(GENSRC_TARGETS) rmic
778
779  # The gensrc step for jdk.jdi creates an html file that is used by docs-copy.
780  docs-copy: hotspot-$(JVM_VARIANT_MAIN)-gensrc jdk.jdi-gensrc
781
782  docs-zip: docs-javadoc docs-copy
783
784  test: jdk-image test-image
785
786  run-test: jdk-image test-image
787
788  # Declare dependency for all generated test targets
789  $(foreach t, $(ALL_TEST_TARGETS), $(eval $t: jdk-image test-image))
790
791  create-buildjdk-copy: jdk.jlink-java java.base-gendata \
792      $(addsuffix -java, $(INTERIM_IMAGE_MODULES))
793
794  create-buildjdk-interim-image: create-buildjdk-copy
795
796  interim-image: $(INTERIM_JMOD_TARGETS)
797
798  test-make: clean-test-make
799
800  build-test-lib: exploded-image-optimize
801
802  build-test-failure-handler: interim-langtools
803
804  test-failure-handler: build-test-failure-handler
805
806  test-image-failure-handler: build-test-failure-handler
807
808  build-test-hotspot-jtreg-native: buildtools-jdk \
809      hotspot-$(JVM_VARIANT_MAIN)-libs
810
811  build-test-jdk-jtreg-native: buildtools-jdk
812
813  test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
814
815  test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
816
817  test-image-hotspot-gtest: hotspot
818
819  test-hotspot-internal: exploded-image
820
821  test-hotspot-jtreg: jdk-image test-image
822
823  test-hotspot-gtest: exploded-image test-image-hotspot-gtest
824
825  install: product-images
826
827  product-bundles: product-images
828
829  profiles-bundles: profiles-images
830
831  test-bundles: test-image
832
833  docs-bundles: docs-image
834
835  generate-summary: jmods buildtools-modules
836
837endif
838
839################################################################################
840# Virtual targets without recipes
841
842buildtools: buildtools-langtools interim-langtools interim-rmic \
843    buildtools-jdk buildtools-hotspot
844
845hotspot: $(HOTSPOT_VARIANT_TARGETS) hotspot-jsig
846
847hotspot-libs: hotspot-jsig
848
849# Create targets hotspot-libs and hotspot-gensrc.
850$(foreach v, $(JVM_VARIANTS), \
851  $(eval hotspot-libs: hotspot-$v-libs) \
852  $(eval hotspot-gensrc: hotspot-$v-gensrc) \
853)
854
855gensrc: $(GENSRC_TARGETS)
856
857gendata: $(GENDATA_TARGETS)
858
859copy: $(ALL_COPY_TARGETS)
860
861java: $(JAVA_TARGETS)
862
863rmic: $(RMIC_TARGETS)
864
865libs: $(LIBS_TARGETS)
866
867launchers: $(LAUNCHER_TARGETS)
868
869jmods: $(JMOD_TARGETS)
870
871# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
872# is actually handled by jdk.jdi-gensrc
873jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
874
875# Declare dependencies from <module> to all the individual targets specific
876# to that module <module>-*, that are needed for the exploded image.
877$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
878$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
879$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
880$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
881$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
882$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
883$(foreach m, $(ALL_COPY_MODULES), $(eval $m: $m-copy))
884
885# Building java.base includes building all of hotspot.
886java.base: hotspot
887
888demos: demos-jdk
889
890# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
891exploded-image-base: $(ALL_MODULES)
892exploded-image: exploded-image-base release-file
893# When cross compiling, no need to optimize the exploded image since it won't
894# be runnable on the host platform anyway.
895ifneq ($(COMPILE_TYPE), cross)
896  exploded-image: exploded-image-optimize
897endif
898
899create-buildjdk: create-buildjdk-copy create-buildjdk-interim-image
900
901mac-bundles: mac-bundles-jdk
902
903# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
904# and in line with this, our targets for creating these are named *-image[s].
905
906# This target builds the product images, e.g. the JRE and JDK image
907# (and possibly other, more specific versions)
908product-images: jdk-image jre-image symbols-image exploded-image
909
910# zip-security is actually a bundle, but for now it needs to be considered
911# an image until this can be cleaned up properly.
912product-images: zip-security
913
914# Declare these for backwards compatiblity and convenience.
915profiles profiles-images: profiles-image
916
917# The module summary cannot be run when:
918# * Cross compiling and building a partial BUILDJDK for the build host
919# * An external buildjdk has been supplied since it may not match the
920#   module selection of the target jdk
921ifneq ($(CREATE_BUILDJDK), true)
922  ifeq ($(EXTERNAL_BUILDJDK), false)
923    product-images: generate-summary
924  endif
925endif
926
927ifeq ($(OPENJDK_TARGET_OS), macosx)
928  product-images: mac-bundles
929endif
930
931# This target builds the documentation image
932docs-image: docs-module-graphs docs-javadoc docs-copy
933
934# This target builds the test image
935test-image: prepare-test-image test-image-hotspot-jtreg-native \
936    test-image-jdk-jtreg-native test-image-failure-handler test-image-hotspot-gtest
937
938# all-images builds all our deliverables as images.
939all-images: product-images test-image docs-image
940
941# all-bundles packages all our deliverables as tar.gz bundles.
942all-bundles: product-bundles test-bundles docs-bundles
943
944ALL_TARGETS += buildtools hotspot hotspot-libs hotspot-gensrc gensrc gendata \
945    copy java rmic libs launchers jmods \
946    jdk.jdwp.agent-gensrc $(ALL_MODULES) demos \
947    exploded-image-base exploded-image \
948    create-buildjdk mac-bundles product-images \
949    profiles profiles-images \
950    docs-image test-image all-images \
951    all-bundles
952
953################################################################################
954
955# Traditional targets typically run by users.
956# These can be considered aliases for the targets now named by a more
957# "modern" naming scheme.
958default: $(DEFAULT_MAKE_TARGET)
959jdk: exploded-image
960images: product-images
961docs: docs-image
962bundles: all-bundles
963all: all-images
964
965ALL_TARGETS += default jdk images docs bundles all
966
967################################################################################
968################################################################################
969#
970# Clean targets
971#
972################################################################################
973# Clean targets are automatically run serially by the Makefile calling this
974# file.
975
976CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
977    images make-support test-make bundles buildjdk
978CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
979CLEAN_SUPPORT_DIRS += demos
980CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS))
981CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
982CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
983CLEAN_PHASES := gensrc java native include
984CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
985CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
986# Construct targets of the form clean-$module-$phase
987CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
988    $(addprefix $m-, $(CLEAN_PHASES))))
989
990# Remove everything, except the output from configure.
991clean: $(CLEAN_DIR_TARGETS)
992	($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
993	$(ECHO) Cleaned all build artifacts.
994
995clean-docs:
996	$(call CleanDocs)
997
998$(CLEAN_DIR_TARGETS):
999	$(call CleanDir,$(patsubst clean-%, %, $@))
1000
1001$(CLEAN_SUPPORT_DIR_TARGETS):
1002	$(call CleanSupportDir,$(patsubst clean-%, %, $@))
1003
1004$(CLEAN_TEST_TARGETS):
1005	$(call CleanTest,$(patsubst clean-test-%, %, $@))
1006
1007$(CLEAN_PHASE_TARGETS):
1008	$(call Clean-$(patsubst clean-%,%, $@))
1009
1010$(CLEAN_MODULE_TARGETS):
1011	$(call CleanModule,$(patsubst clean-%, %, $@))
1012
1013$(CLEAN_MODULE_PHASE_TARGETS):
1014	$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
1015	    $(word 2, $(subst -,$(SPACE),$@)))
1016
1017# When removing the support dir, we must also remove jdk. Building classes has
1018# the side effect of generating native headers. The headers end up in support
1019# while classes and touch files end up in jdk.
1020clean-support: clean-jdk
1021
1022# Remove everything, including configure configuration. If the output
1023# directory was created by configure and now becomes empty, remove it as well.
1024dist-clean: clean
1025	($(CD) $(OUTPUT_ROOT) && \
1026	    $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
1027	$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
1028	  if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
1029	    $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
1030	  else \
1031	    ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
1032	        && $(RM) -r $(OUTPUT_ROOT)) \
1033	  fi \
1034	)
1035	$(ECHO) Cleaned everything, you will have to re-run configure.
1036
1037ALL_TARGETS += clean clean-docs dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \
1038    $(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \
1039    $(CLEAN_MODULE_PHASE_TARGETS)
1040
1041################################################################################
1042# Declare *-only targets for each normal target
1043$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
1044
1045ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
1046
1047################################################################################
1048
1049# Include JPRT targets
1050include $(SRC_ROOT)/make/Jprt.gmk
1051
1052################################################################################
1053
1054# The following targets are intentionally not added to ALL_TARGETS since they
1055# are internal only, to support Init.gmk.
1056
1057print-targets:
1058	  @$(ECHO) $(sort $(ALL_TARGETS))
1059
1060print-modules:
1061	  @$(ECHO) $(sort $(ALL_MODULES))
1062
1063print-tests:
1064	  @$(ECHO) $(sort $(ALL_NAMED_TESTS))
1065
1066create-main-targets-include:
1067	  $(call LogInfo, Generating main target list)
1068	  @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
1069	      $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
1070
1071################################################################################
1072
1073.PHONY: $(ALL_TARGETS)
1074
1075FRC: # Force target
1076