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