Main.gmk revision 1882:ce1c42690afb
10SN/A#
28413Spliden# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
30SN/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
40SN/A#
50SN/A# This code is free software; you can redistribute it and/or modify it
60SN/A# under the terms of the GNU General Public License version 2 only, as
70SN/A# published by the Free Software Foundation.  Oracle designates this
80SN/A# particular file as subject to the "Classpath" exception as provided
90SN/A# by Oracle in the LICENSE file that accompanied this code.
100SN/A#
110SN/A# This code is distributed in the hope that it will be useful, but WITHOUT
120SN/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
130SN/A# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
140SN/A# version 2 for more details (a copy is included in the LICENSE file that
150SN/A# accompanied this code).
160SN/A#
170SN/A# You should have received a copy of the GNU General Public License version
180SN/A# 2 along with this work; if not, write to the Free Software Foundation,
191472SN/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
201472SN/A#
211472SN/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
220SN/A# or visit www.oracle.com if you need additional information or have any
230SN/A# questions.
240SN/A#
258413Spliden
268413Spliden################################################################################
271879SN/A# This is the main makefile containing most actual top level targets. It needs
288413Spliden# to be called with a SPEC file defined.
299727Sbrutisso################################################################################
301879SN/A
311879SN/A# Declare default target
328413Splidendefault:
331879SN/A
340SN/Aifeq ($(wildcard $(SPEC)),)
350SN/A  $(error Main.gmk needs SPEC set to a proper spec.gmk)
360SN/Aendif
370SN/A
380SN/A# Now load the spec
390SN/Ainclude $(SPEC)
400SN/A
410SN/Ainclude $(SRC_ROOT)/make/MainSupport.gmk
423297SN/A
431145SN/A# Load the vital tools for all the makefiles.
440SN/Ainclude $(SRC_ROOT)/make/common/MakeBase.gmk
450SN/Ainclude $(SRC_ROOT)/make/common/Modules.gmk
460SN/A
470SN/A# Declare ALL_TARGETS as an immediate variable. This variable is a list of all
480SN/A# valid top level targets. It's used to declare them all as PHONY and to
490SN/A# generate the -only targets.
500SN/AALL_TARGETS :=
510SN/A
520SN/A# Hook to include the corresponding custom file, if present.
535862SN/A$(eval $(call IncludeCustomExtension, , Main.gmk))
543297SN/A
550SN/A# All modules for the current target platform.
565862SN/AALL_MODULES := $(call FindAllModules)
575862SN/A
583297SN/A################################################################################
593297SN/A################################################################################
603297SN/A#
613297SN/A# Recipes for all targets. Only recipes, dependencies are declared later.
623297SN/A#
633297SN/A################################################################################
643297SN/A
653297SN/A################################################################################
660SN/A# Interim/build tools targets, compiling tools used during the build
671145SN/A
680SN/Abuildtools-langtools:
690SN/A	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
700SN/A
710SN/Ainterim-langtools:
723297SN/A	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
730SN/A
743297SN/Ainterim-rmic:
753297SN/A	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
763297SN/A
773297SN/Ainterim-cldrconverter:
783297SN/A	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopyInterimCLDRConverter.gmk)
793297SN/A
803297SN/Abuildtools-jdk:
813297SN/A	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools)
820SN/A
830SN/AALL_TARGETS += buildtools-langtools interim-langtools \
840SN/A    interim-rmic interim-cldrconverter buildtools-jdk
850SN/A
860SN/A################################################################################
871145SN/A# Special targets for certain modules
880SN/A
890SN/Aimport-hotspot:
900SN/A	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk)
911145SN/A
921145SN/Aunpack-sec:
930SN/A	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
940SN/A
950SN/Agenerate-exported-symbols:
960SN/A	+($(CD) $(TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildStatic.gmk)
970SN/A
980SN/AALL_TARGETS += import-hotspot unpack-sec generate-exported-symbols
990SN/A
1000SN/A################################################################################
1010SN/A# Gensrc targets, generating source before java compilation can be done
1023297SN/A$(eval $(call DeclareRecipesForPhase, GENSRC, \
1033297SN/A    TARGET_SUFFIX := gensrc, \
1042537SN/A    FILE_PREFIX := Gensrc, \
1050SN/A    MAKE_SUBDIR := gensrc, \
1063297SN/A    CHECK_MODULES := $(ALL_MODULES), \
1073297SN/A    MULTIPLE_MAKEFILES := true))
1082537SN/A
1099056SdavidJDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
1109056SdavidLANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
1119056SdavidCORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
1121145SN/AHOTSPOT_GENSRC_TARGETS := $(filter %-gensrc-hotspot, $(GENSRC_TARGETS))
1131145SN/A
1141145SN/AALL_TARGETS += $(GENSRC_TARGETS)
1151145SN/A
1161145SN/A################################################################################
1170SN/A# Generate data targets
1180SN/A$(eval $(call DeclareRecipesForPhase, GENDATA, \
1191145SN/A    TARGET_SUFFIX := gendata, \
1201145SN/A    FILE_PREFIX := Gendata, \
1212067SN/A    MAKE_SUBDIR := gendata, \
1222067SN/A    CHECK_MODULES := $(ALL_MODULES), \
1239727Sbrutisso    USE_WRAPPER := true))
1249727Sbrutisso
1259727SbrutissoALL_TARGETS += $(GENDATA_TARGETS)
1260SN/A
1270SN/A################################################################################
1280SN/A# Copy files targets
1290SN/A$(eval $(call DeclareRecipesForPhase, COPY, \
13012SN/A    TARGET_SUFFIX := copy, \
13112SN/A    FILE_PREFIX := Copy, \
1323297SN/A    MAKE_SUBDIR := copy, \
1333297SN/A    CHECK_MODULES := $(ALL_MODULES), \
1340SN/A    USE_WRAPPER := true, \
1350SN/A    MULTIPLE_MAKEFILES := true))
1360SN/A
1370SN/AALL_TARGETS += $(COPY_TARGETS)
1380SN/A
1390SN/A################################################################################
1403297SN/A# Targets for compiling all java modules. Nashorn is treated separately.
1413297SN/AJAVA_MODULES := $(call FindJavaModules)
1423297SN/AJAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
1433297SN/A
1443297SN/Adefine DeclareCompileJavaRecipe
1453297SN/A  $1-java:
1460SN/A	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
1473297SN/A	    -f CompileJavaModules.gmk MODULE=$1)
1483297SN/Aendef
1493297SN/A
1500SN/A$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
1513297SN/A    $(eval $(call DeclareCompileJavaRecipe,$m)))
1523297SN/A
1533297SN/A# Build nashorn. Needs to be compiled separately from the rest of the modules
1540SN/A# due to nasgen.
1553297SN/Ajdk.scripting.nashorn-java:
1563297SN/A	+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) \
1573297SN/A	    -f BuildNashorn.gmk compile)
1580SN/A
1593297SN/AALL_TARGETS += $(JAVA_TARGETS)
1603297SN/A
1613297SN/A################################################################################
1620SN/A# Targets for running rmic.
1630SN/A$(eval $(call DeclareRecipesForPhase, RMIC, \
1643297SN/A    TARGET_SUFFIX := rmic, \
1653297SN/A    FILE_PREFIX := Rmic, \
1660SN/A    MAKE_SUBDIR := rmic, \
1670SN/A    CHECK_MODULES := $(ALL_MODULES)))
1681879SN/A
1698413SplidenALL_TARGETS += $(RMIC_TARGETS)
170
171################################################################################
172# Targets for compiling native libraries
173$(eval $(call DeclareRecipesForPhase, LIBS, \
174    TARGET_SUFFIX := libs, \
175    FILE_PREFIX := Lib, \
176    MAKE_SUBDIR := lib, \
177    CHECK_MODULES := $(ALL_MODULES), \
178    USE_WRAPPER := true))
179
180ALL_TARGETS += $(LIBS_TARGETS)
181
182################################################################################
183# Targets for compiling native executables
184$(eval $(call DeclareRecipesForPhase, LAUNCHER, \
185    TARGET_SUFFIX := launchers, \
186    FILE_PREFIX := Launcher, \
187    MAKE_SUBDIR := launcher, \
188    CHECK_MODULES := $(ALL_MODULES), \
189    USE_WRAPPER := true))
190
191ALL_TARGETS += $(LAUNCHER_TARGETS)
192
193################################################################################
194# Build hotspot target
195
196ifeq ($(BUILD_HOTSPOT),true)
197  hotspot:
198	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
199endif
200
201ALL_TARGETS += hotspot
202
203################################################################################
204# Build demos and samples targets
205
206demos-jdk:
207	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
208
209samples-jdk:
210	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
211
212ALL_TARGETS += demos-jdk samples-jdk
213
214################################################################################
215# Image targets
216
217# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
218# used to track the exact sources used to build that image.
219source-tips: $(SUPPORT_OUTPUTDIR)/source_tips
220$(SUPPORT_OUTPUTDIR)/source_tips: FRC
221	@$(MKDIR) -p $(@D)
222	@$(RM) $@
223	@$(call GetSourceTips)
224
225BOOTCYCLE_TARGET := product-images
226bootcycle-images:
227	@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
228	+$(MAKE) -f $(SRC_ROOT)/make/Init.gmk PARALLEL_TARGETS=$(BOOTCYCLE_TARGET) \
229	    JOBS= SPEC=$(dir $(SPEC))bootcycle-spec.gmk main
230
231zip-security:
232	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
233
234zip-source:
235	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
236
237strip-binaries:
238	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk)
239
240jrtfs-jar:
241	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
242
243jimages:
244	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages)
245
246profiles:
247	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
248
249mac-bundles-jdk:
250	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
251
252ALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \
253    jrtfs-jar jimages profiles mac-bundles-jdk
254
255################################################################################
256# Docs targets
257
258docs-javadoc:
259	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
260
261docs-jvmtidoc:
262	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
263
264ALL_TARGETS += docs-javadoc docs-jvmtidoc
265
266################################################################################
267# Build tests
268#
269
270prepare-test-image:
271	$(MKDIR) -p $(TEST_IMAGE_DIR)
272	$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
273
274build-test-hotspot-jtreg-native:
275	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
276	    build-test-hotspot-jtreg-native)
277
278test-image-hotspot-jtreg-native:
279	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
280	    test-image-hotspot-jtreg-native)
281
282build-test-jdk-jtreg-native:
283	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
284	    build-test-jdk-jtreg-native)
285
286test-image-jdk-jtreg-native:
287	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
288	    test-image-jdk-jtreg-native)
289
290build-test-lib:
291	+($(CD) $(TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f BuildTestLib.gmk)
292
293ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
294    test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
295    test-image-jdk-jtreg-native build-test-lib
296
297################################################################################
298# Run tests
299
300# Run tests specified by $(TEST), or the default test set.
301test:
302	$(call RunTests, $(TEST))
303
304test-hotspot-jtreg:
305	$(call RunTests, "hotspot_all")
306
307test-hotspot-jtreg-native:
308	$(call RunTests, "hotspot_native_sanity")
309
310test-hotspot-internal:
311	$(call RunTests, "hotspot_internal")
312
313test-jdk-jtreg-native:
314	$(call RunTests, "jdk_native_sanity")
315
316test-make:
317	($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
318
319ALL_TARGETS += test test-hotspot-jtreg test-hotspot-jtreg-native \
320    test-hotspot-internal test-jdk-jtreg-native test-make
321
322################################################################################
323# Verification targets
324
325verify-modules:
326	@$(call TargetEnter)
327	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk)
328	@$(call TargetExit)
329
330ALL_TARGETS += verify-modules
331
332################################################################################
333# Install targets
334
335install:
336	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
337
338ALL_TARGETS += install
339
340################################################################################
341#
342# Dependency declarations between targets.
343#
344# These are declared in two groups. First all dependencies between targets that
345# have recipes above as these dependencies may be disabled. Then the aggregator
346# targets that do not have recipes of their own, which will never have their
347# dependencies disabled.
348#
349################################################################################
350# Targets with recipes above
351
352# If running an *-only target, parallel execution and dependencies between
353# recipe targets are disabled. This makes it possible to run a select set of
354# recipe targets in order. It's the responsibility of the user to make sure
355# all prerequisites are fulfilled.
356ifneq ($(findstring -only, $(MAKECMDGOALS)), )
357  .NOTPARALLEL:
358else
359  $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
360
361  interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
362
363  buildtools-jdk: interim-langtools interim-cldrconverter
364
365  $(CORBA_GENSRC_TARGETS): interim-langtools
366
367  $(HOTSPOT_GENSRC_TARGETS): interim-langtools
368
369  $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
370
371  $(GENDATA_TARGETS): interim-langtools buildtools-jdk
372
373  interim-rmic: interim-langtools
374
375  $(RMIC_TARGETS): interim-langtools interim-rmic
376
377  $(JAVA_TARGETS): interim-langtools
378
379  import-hotspot: hotspot
380
381  generate-exported-symbols: java.base-libs jdk.jdwp.agent-libs
382
383  $(LIBS_TARGETS): import-hotspot
384
385  $(LAUNCHER_TARGETS): java.base-libs
386
387  ifeq ($(STATIC_BUILD), true)
388    $(LAUNCHER_TARGETS): generate-exported-symbols
389  endif
390
391  # The demos are currently linking to libjvm and libjava, just like all other
392  # jdk libs, even though they don't need to. To avoid warnings, make sure they
393  # aren't built until after libjava and libjvm are available to link to.
394  demos-jdk: $(JAVA_TARGETS)
395
396  # Declare dependency from <module>-java to <module>-gensrc
397  $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
398
399  # Declare dependencies between java modules
400  $(foreach m, $(JAVA_MODULES), \
401      $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
402      $(call FindDepsForModule,$m)))))
403
404  # Declare dependencies between <module>-rmic to <module>-java
405  $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
406
407  # Declare dependencies from <module>-lib to <module>-java
408  # Skip modules that do not have java source.
409  $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
410
411  # Declare dependencies from all other <module>-lib to java.base-lib
412  $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
413      $(eval $t: java.base-libs))
414  # Declare the special case dependency for jdk.deploy.osx where libosx
415  # links against libosxapp.
416  jdk.deploy.osx-libs: java.desktop-libs
417
418  # jdk.accessibility depends on java.desktop
419  jdk.accessibility-libs: java.desktop-libs
420
421  # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
422  # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
423  # virtual target.
424  jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
425
426  # The swing beans need to have java base properly generated to avoid errors
427  # in javadoc.
428  java.desktop-gensrc-jdk: java.base-gensrc
429
430  # The annotation processing for jdk.vm.ci needs java.base classes from the
431  # current JDK.
432  jdk.vm.ci-gensrc-hotspot: java.base-java 
433
434  # Explicitly add dependencies for special targets
435  java.base-java: unpack-sec
436
437  # The copy target copies files generated by gensrc
438  java.base-copy-hotspot: java.base-gensrc-hotspot
439
440  jdk.jdeps-gendata: java rmic
441
442  zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
443      $(filter jdk.crypto%, $(JAVA_TARGETS))
444
445  zip-source: gensrc rmic
446
447  strip-binaries: libs launchers gendata copy
448
449  jrtfs-jar: buildtools-jdk
450
451  jimages: exploded-image zip-source strip-binaries source-tips demos samples \
452      jrtfs-jar
453
454  profiles: exploded-image strip-binaries source-tips
455
456  mac-bundles-jdk: jimages
457
458  bootcycle-images: jimages
459
460  docs-javadoc: gensrc rmic
461
462  docs-jvmtidoc: hotspot
463
464  test: jimages test-image
465
466  verify-modules: exploded-image
467
468  test-make: clean-test-make
469
470  build-test-lib: java
471
472  build-test-hotspot-jtreg-native: buildtools-jdk
473
474  build-test-jdk-jtreg-native: buildtools-jdk
475
476  test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
477
478  test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
479
480  test-hotspot-internal: exploded-image
481
482  test-hotspot-jtreg: jimages test-image
483
484  install: product-images
485
486endif
487
488################################################################################
489# Virtual targets without recipes
490
491buildtools: buildtools-langtools interim-langtools interim-rmic \
492    buildtools-jdk
493
494gensrc: $(GENSRC_TARGETS)
495
496gendata: $(GENDATA_TARGETS)
497
498copy: $(COPY_TARGETS)
499
500java: $(JAVA_TARGETS)
501
502rmic: $(RMIC_TARGETS)
503
504libs: $(LIBS_TARGETS)
505
506launchers: $(LAUNCHER_TARGETS)
507
508# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
509# is actually handled by jdk.jdi-gensrc
510jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
511
512# Declare dependencies from <module> to all the individual targets specific
513# to that module <module>-*, that are needed for the exploded image.
514$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
515$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
516$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
517$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
518$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
519$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
520$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
521
522demos: demos-jdk
523
524samples: samples-jdk
525
526# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
527exploded-image: $(ALL_MODULES)
528
529mac-bundles: mac-bundles-jdk
530
531# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
532# and in line with this, our targets for creating these are named *-image[s].
533
534# This target builds the product images, e.g. the JRE and JDK image
535# (and possibly other, more specific versions)
536product-images: jimages demos samples zip-security verify-modules
537
538ifeq ($(OPENJDK_TARGET_OS), macosx)
539  product-images: mac-bundles
540endif
541
542# This target builds the documentation image
543docs-image: docs-javadoc docs-jvmtidoc
544
545# This target builds the test image
546test-image: prepare-test-image test-image-hotspot-jtreg-native \
547    test-image-jdk-jtreg-native
548
549# all-images is the top-most target, it builds all our deliverables ("images").
550all-images: product-images test-image docs-image
551
552ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
553    jdk.jdwp.agent-gensrc $(ALL_MODULES) demos samples exploded-image \
554    mac-bundles product-images docs-image test-image all-images
555
556################################################################################
557
558# Traditional targets typically run by users.
559# These can be considered aliases for the targets now named by a more
560# "modern" naming scheme.
561default: $(DEFAULT_MAKE_TARGET)
562jdk: exploded-image
563images: product-images
564docs: docs-image
565all: all-images
566
567ALL_TARGETS += default jdk images docs all
568
569################################################################################
570################################################################################
571#
572# Clean targets
573#
574################################################################################
575# Clean targets are automatically run serially by the Makefile calling this
576# file.
577
578CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
579    images make-support test-make bundles
580CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
581CLEAN_SUPPORT_DIRS += demos
582CLEAN_SUPPORT_DIR_TARGETS := $(addprefix clean-, $(CLEAN_SUPPORT_DIRS))
583CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native lib
584CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
585CLEAN_PHASES := gensrc java native include docs
586CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
587CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
588# Construct targets of the form clean-$module-$phase
589CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
590    $(addprefix $m-, $(CLEAN_PHASES))))
591
592# Remove everything, except the output from configure.
593clean: $(CLEAN_DIR_TARGETS)
594	($(CD) $(OUTPUT_ROOT) && $(RM) -r build*.log*)
595	$(ECHO) Cleaned all build artifacts.
596
597$(CLEAN_DIR_TARGETS):
598	$(call CleanDir,$(patsubst clean-%, %, $@))
599
600$(CLEAN_SUPPORT_DIR_TARGETS):
601	$(call CleanSupportDir,$(patsubst clean-%, %, $@))
602
603$(CLEAN_TEST_TARGETS):
604	$(call CleanTest,$(patsubst clean-test-%, %, $@))
605
606$(CLEAN_PHASE_TARGETS):
607	$(call Clean-$(patsubst clean-%,%, $@))
608
609$(CLEAN_MODULE_TARGETS):
610	$(call CleanModule,$(patsubst clean-%, %, $@))
611
612$(CLEAN_MODULE_PHASE_TARGETS):
613	$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
614	    $(word 2, $(subst -,$(SPACE),$@)))
615
616# When removing the support dir, we must also remove jdk. Building classes has
617# the side effect of generating native headers. The headers end up in support
618# while classes and touch files end up in jdk.
619clean-support: clean-jdk
620
621# Remove everything, including configure configuration. If the output
622# directory was created by configure and now becomes empty, remove it as well.
623dist-clean: clean
624	($(CD) $(OUTPUT_ROOT) && \
625	    $(RM) -r *spec.gmk $(CONFIGURESUPPORT_OUTPUTDIR) Makefile compare.sh ide)
626	$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
627	  if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
628	    $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
629	  else \
630	    ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
631	        && $(RM) -r $(OUTPUT_ROOT)) \
632	  fi \
633	)
634	$(ECHO) Cleaned everything, you will have to re-run configure.
635
636ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_SUPPORT_DIR_TARGETS) \
637    $(CLEAN_TEST_TARGETS) $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) \
638    $(CLEAN_MODULE_PHASE_TARGETS)
639
640################################################################################
641# Declare *-only targets for each normal target
642$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
643
644ALL_TARGETS += $(addsuffix -only, $(filter-out dist-clean clean%, $(ALL_TARGETS)))
645
646################################################################################
647
648# Include JPRT targets
649include $(SRC_ROOT)/make/Jprt.gmk
650
651################################################################################
652
653# The following targets are intentionally not added to ALL_TARGETS since they
654# are internal only, to support Init.gmk.
655
656print-targets:
657	  @$(ECHO) $(sort $(ALL_TARGETS))
658
659print-modules:
660	  @$(ECHO) $(sort $(ALL_MODULES))
661
662create-main-targets-include:
663	  @$(ECHO) $(LOG_INFO) Generating main target list
664	  @$(ECHO) ALL_MAIN_TARGETS := $(sort $(ALL_TARGETS)) > \
665	      $(MAKESUPPORT_OUTPUTDIR)/main-targets.gmk
666
667################################################################################
668
669.PHONY: $(ALL_TARGETS)
670
671FRC: # Force target
672