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