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