Main.gmk revision 1348:bbc8c8d00b7b
1100280Sgordon#
2100280Sgordon# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
366830Sobrien# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
466830Sobrien#
566830Sobrien# This code is free software; you can redistribute it and/or modify it
666830Sobrien# under the terms of the GNU General Public License version 2 only, as
766830Sobrien# published by the Free Software Foundation.  Oracle designates this
866830Sobrien# particular file as subject to the "Classpath" exception as provided
966830Sobrien# by Oracle in the LICENSE file that accompanied this code.
1066830Sobrien#
1166830Sobrien# This code is distributed in the hope that it will be useful, but WITHOUT
1266830Sobrien# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1366830Sobrien# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1466830Sobrien# version 2 for more details (a copy is included in the LICENSE file that
1566830Sobrien# accompanied this code).
1666830Sobrien#
1766830Sobrien# You should have received a copy of the GNU General Public License version
1866830Sobrien# 2 along with this work; if not, write to the Free Software Foundation,
1966830Sobrien# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2066830Sobrien#
2166830Sobrien# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2266830Sobrien# or visit www.oracle.com if you need additional information or have any
2366830Sobrien# questions.
2466830Sobrien#
2566830Sobrien
2666830Sobrien################################################################################
2751231Ssheldonh# This is the main makefile containing most actual top level targets. It needs
2851231Ssheldonh# to be called with a SPEC file defined.
29100280Sgordon
30100280Sgordon# Declare default target
31100280Sgordondefault:
32108191Sdillon
33108191Sdillon# Now load the spec
34108191Sdilloninclude $(SPEC)
35108191Sdillon
36108191Sdilloninclude $(SRC_ROOT)/make/MakeHelpers.gmk
37108191Sdillon
38108191Sdillon# Load the vital tools for all the makefiles.
39108191Sdilloninclude $(SRC_ROOT)/make/common/MakeBase.gmk
40108191Sdilloninclude $(SRC_ROOT)/make/common/Modules.gmk
41108191Sdillon
42108191Sdillon# Declare ALL_TARGETS as an immediate variable. This variable is a list of all
43108191Sdillon# valid top level targets. It's used to declare them all as PHONY and to
44108191Sdillon# generate the -only targets.
45108191SdillonALL_TARGETS :=
46108191Sdillon
47108191Sdillon# Hook to include the corresponding custom file, if present.
48108191Sdillon$(eval $(call IncludeCustomExtension, , Main.gmk))
49108191Sdillon
50108191Sdillon# All modules for the current target platform.
51108191Sdillon# Manually add jdk.hotspot.agent for now.
52108191SdillonALL_MODULES := $(call FindAllModules) jdk.hotspot.agent
53108191Sdillon
54108191Sdillon################################################################################
55108191Sdillon################################################################################
56108191Sdillon#
57108191Sdillon# Recipes for all targets. Only recipes, dependencies are declared later.
58108191Sdillon#
59108191Sdillon################################################################################
60108191Sdillon
61108191Sdillon################################################################################
62108191Sdillon# Interim/build tools targets, compiling tools used during the build
63108191Sdillon
64108191Sdillonbuildtools-langtools:
65108191Sdillon	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk)
66108191Sdillon
67108191Sdilloninterim-langtools:
68108191Sdillon	+($(CD) $(LANGTOOLS_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
69108191Sdillon
70108191Sdilloninterim-corba:
71108191Sdillon	+($(CD) $(CORBA_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterim.gmk)
72108191Sdillon
73108191Sdilloninterim-rmic:
74108191Sdillon	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileInterimRmic.gmk)
75108191Sdillon
76108191Sdillonbuildtools-jdk:
77108191Sdillon	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Tools.gmk java-tools)
78108191Sdillon
79108191SdillonALL_TARGETS += buildtools-langtools interim-langtools interim-corba \
80108191Sdillon    interim-rmic buildtools-jdk
81108191Sdillon
82100280Sgordon################################################################################
83100280Sgordon# Special targets for certain modules
84100280Sgordon
8543803Sdillonimport-hotspot:
8643803Sdillon	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f Import.gmk)
8743803Sdillon
8843803Sdillonunpack-sec:
8943803Sdillon	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f UnpackSecurity.gmk)
9043803Sdillon
9151231SsheldonhALL_TARGETS += import-hotspot unpack-sec
92108191Sdillon
93108191Sdillon################################################################################
94108191Sdillon# Gensrc targets, generating source before java compilation can be done
95108191Sdillon$(eval $(call DeclareRecipesForPhase, GENSRC, \
96108191Sdillon    TARGET_SUFFIX := gensrc, \
97108191Sdillon    FILE_PREFIX := Gensrc, \
98108191Sdillon    MAKE_SUBDIR := gensrc, \
99108191Sdillon    CHECK_MODULES := $(ALL_MODULES), \
100108191Sdillon    MULTIPLE_MAKEFILES := true))
101108191Sdillon
10243803SdillonJDK_GENSRC_TARGETS := $(filter %-gensrc-jdk, $(GENSRC_TARGETS))
10343803SdillonLANGTOOLS_GENSRC_TARGETS := $(filter %-gensrc-langtools, $(GENSRC_TARGETS))
104108191SdillonCORBA_GENSRC_TARGETS := $(filter %-gensrc-corba, $(GENSRC_TARGETS))
105108191Sdillon
106108191SdillonALL_TARGETS += $(GENSRC_TARGETS)
107108191Sdillon
10875931Simp################################################################################
10975931Simp# Generate data targets
110108191Sdillon$(eval $(call DeclareRecipesForPhase, GENDATA, \
111108191Sdillon    TARGET_SUFFIX := gendata, \
112108191Sdillon    FILE_PREFIX := Gendata, \
113108191Sdillon    MAKE_SUBDIR := gendata, \
114110942Sjhay    CHECK_MODULES := $(ALL_MODULES), \
115108191Sdillon    USE_WRAPPER := true))
116108191Sdillon
117108191SdillonALL_TARGETS += $(GENDATA_TARGETS)
118108191Sdillon
119108191Sdillon################################################################################
120108191Sdillon# Copy files targets
121108191Sdillon$(eval $(call DeclareRecipesForPhase, COPY, \
122108191Sdillon    TARGET_SUFFIX := copy, \
123108191Sdillon    FILE_PREFIX := Copy, \
124108191Sdillon    MAKE_SUBDIR := copy, \
12543803Sdillon    CHECK_MODULES := $(ALL_MODULES), \
12643803Sdillon    USE_WRAPPER := true))
12755520Sluigi
12843803SdillonALL_TARGETS += $(COPY_TARGETS)
12951231Ssheldonh
13043803Sdillon################################################################################
13155520Sluigi# Targets for compiling all java modules. Nashorn is treated separately.
13255520SluigiJAVA_MODULES := $(call FindJavaModules)
13355520SluigiJAVA_TARGETS := $(addsuffix -java, $(JAVA_MODULES))
13455520Sluigi
13555520Sluigidefine DeclareCompileJavaRecipe
136108191Sdillon  $1-java:
137108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CompileJavaModules.gmk \
138108191Sdillon	    $1 JAVA_MODULES=$1)
139108191Sdillonendef
140108191Sdillon
141108191Sdillon$(foreach m, $(filter-out jdk.scripting.nashorn, $(JAVA_MODULES)), \
142108191Sdillon    $(eval $(call DeclareCompileJavaRecipe,$m)))
143108191Sdillon
144108191Sdillon# Build nashorn. Needs to be compiled separately from the rest of the modules
145108191Sdillon# due to nasgen.
146108191Sdillonjdk.scripting.nashorn-java:
147108191Sdillon	+($(CD) $(NASHORN_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f BuildNashorn.gmk compile)
148108191Sdillon
14955520SluigiALL_TARGETS += $(JAVA_TARGETS)
15055520Sluigi
15143803Sdillon################################################################################
152117087Sbrooks# Targets for running rmic.
153117087Sbrooks$(eval $(call DeclareRecipesForPhase, RMIC, \
154117087Sbrooks    TARGET_SUFFIX := rmic, \
155117087Sbrooks    FILE_PREFIX := Rmic, \
156117087Sbrooks    MAKE_SUBDIR := rmic, \
157117087Sbrooks    CHECK_MODULES := $(ALL_MODULES)))
158117087Sbrooks
159117087SbrooksALL_TARGETS += $(RMIC_TARGETS)
160117087Sbrooks
161117087Sbrooks################################################################################
162117087Sbrooks# Targets for compiling native libraries
163108191Sdillon$(eval $(call DeclareRecipesForPhase, LIBS, \
164108191Sdillon    TARGET_SUFFIX := libs, \
165108191Sdillon    FILE_PREFIX := Lib, \
16643803Sdillon    MAKE_SUBDIR := lib, \
167108191Sdillon    CHECK_MODULES := $(ALL_MODULES), \
168108191Sdillon    USE_WRAPPER := true))
169108191Sdillon
170108191SdillonALL_TARGETS += $(LIBS_TARGETS)
171108191Sdillon
172108191Sdillon################################################################################
173108191Sdillon# Targets for compiling native executables
174108191Sdillon$(eval $(call DeclareRecipesForPhase, LAUNCHER, \
175108191Sdillon    TARGET_SUFFIX := launchers, \
176108191Sdillon    FILE_PREFIX := Launcher, \
177108191Sdillon    MAKE_SUBDIR := launcher, \
178117087Sbrooks    CHECK_MODULES := $(ALL_MODULES), \
179117087Sbrooks    USE_WRAPPER := true))
180117087Sbrooks
181117087SbrooksALL_TARGETS += $(LAUNCHER_TARGETS)
182108191Sdillon
183108191Sdillon################################################################################
184108191Sdillon# Build hotspot target
185108191Sdillon
186108191Sdillonifeq ($(BUILD_HOTSPOT),true)
187108191Sdillon  hotspot:
188108191Sdillon	($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f HotspotWrapper.gmk)
189108191Sdillonendif
190108191Sdillon
19143803SdillonALL_TARGETS += hotspot
192108191Sdillon
193108191Sdillon################################################################################
194108191Sdillon# Build demos and samples targets
195108191Sdillon
196117087Sbrooksdemos:
197117087Sbrooks	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CompileDemos.gmk)
198117087Sbrooks
199108191Sdillonsamples:
200108191Sdillon	+($(CD) $(JDK_TOPDIR)/make && $(MAKE) $(MAKE_ARGS) -f CopySamples.gmk)
20175746Sbsd
202108191SdillonALL_TARGETS += demos samples
20375746Sbsd
20475746Sbsd################################################################################
205108191Sdillon# Image targets
206108191Sdillon
207108191Sdillon# Stores the tips for each repository. This file is be used when constructing the jdk image and can be
208108191Sdillon# used to track the exact sources used to build that image.
20995280Sobriensource-tips: $(SUPPORT_OUTPUTDIR)/source_tips
210108191Sdillon$(SUPPORT_OUTPUTDIR)/source_tips: FRC
211108191Sdillon	@$(MKDIR) -p $(@D)
212108191Sdillon	@$(RM) $@
21395280Sobrien	@$(call GetSourceTips)
214108191Sdillon
215108191SdillonBOOTCYCLE_TARGET := product-images
216108191Sdillonbootcycle-images:
217108191Sdillon	@$(ECHO) Boot cycle build step 2: Building a new JDK image using previously built image
218108191Sdillon	+$(MAKE) $(MAKE_ARGS) -f Main.gmk SPEC=$(dir $(SPEC))bootcycle-spec.gmk $(BOOTCYCLE_TARGET)
219108191Sdillon
220108191Sdillonzip-security:
221108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSecurity.gmk)
222108191Sdillon
223108191Sdillonzip-source:
224108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f ZipSource.gmk)
225108191Sdillon
226108191Sdillonstrip-binaries:
227108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f StripBinaries.gmk)
228108191Sdillon
229108191Sdillonjrtfs-jar:
230108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f JrtfsJar.gmk)
231108191Sdillon
232108191Sdillonjimages:
233108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk jimages)
234108191Sdillon
235108191Sdillonprofiles:
236108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Images.gmk profiles)
237108191Sdillon
238108191Sdillonmac-bundles:
239108191Sdillon	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f MacBundles.gmk)
240108191Sdillon
241104334SddALL_TARGETS += source-tips bootcycle-images zip-security zip-source strip-binaries \
242    jrtfs-jar jimages profiles mac-bundles
243
244################################################################################
245# Docs targets
246
247docs-javadoc:
248	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk docs)
249
250docs-jvmtidoc:
251	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Javadoc.gmk jvmtidocs)
252
253ALL_TARGETS += docs-javadoc docs-jvmtidoc
254
255################################################################################
256# Build tests
257#
258
259prepare-test-image:
260	$(MKDIR) -p $(TEST_IMAGE_DIR)
261	$(ECHO) > $(TEST_IMAGE_DIR)/Readme.txt 'JDK test image'
262
263build-test-hotspot-jtreg-native:
264	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
265	    build-test-hotspot-jtreg-native)
266
267test-image-hotspot-jtreg-native:
268	+($(CD) $(HOTSPOT_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
269	    test-image-hotspot-jtreg-native)
270
271build-test-jdk-jtreg-native:
272	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
273	    build-test-jdk-jtreg-native)
274
275test-image-jdk-jtreg-native:
276	+($(CD) $(JDK_TOPDIR)/make/test && $(MAKE) $(MAKE_ARGS) -f JtregNative.gmk \
277	    test-image-jdk-jtreg-native)
278
279ALL_TARGETS += prepare-test-image build-test-hotspot-jtreg-native \
280    test-image-hotspot-jtreg-native build-test-jdk-jtreg-native \
281    test-image-jdk-jtreg-native
282
283################################################################################
284# Run tests
285
286# Run tests specified by $(TEST), or the default test set.
287test:
288	$(call RunTests, $(TEST))
289
290test-hotspot-jtreg-native:
291	$(call RunTests, "hotspot_native_sanity")
292
293test-jdk-jtreg-native:
294	$(call RunTests, "jdk_native_sanity")
295
296test-make:
297	($(CD) $(SRC_ROOT)/test/make && $(MAKE) $(MAKE_ARGS) -f TestMake.gmk $(TEST_TARGET))
298
299ALL_TARGETS += test test-hotspot-jtreg-native test-jdk-jtreg-native test-make
300
301################################################################################
302# Verification targets
303
304verify-modules:
305	@$(call TargetEnter)
306	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f CheckModules.gmk)
307	@$(call TargetExit)
308
309ALL_TARGETS += verify-modules
310
311################################################################################
312# Install targets
313
314install:
315	+($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) -f Install.gmk)
316
317ALL_TARGETS += install
318
319################################################################################
320#
321# Dependency declarations between targets.
322#
323# These are declared in two groups. First all dependencies between targets that
324# have recipes above as these dependencies may be disabled. Then the aggregator
325# targets that do not have recipes of their own, which will never have their
326# dependencies disabled.
327#
328################################################################################
329# Targets with recipes above
330
331# If running an *-only target, parallel execution and dependencies between
332# recipe targets are disabled. This makes it possible to run a select set of
333# recipe targets in order. It's the responsibility of the user to make sure
334# all prerequisites are fulfilled.
335ifneq ($(findstring -only, $(MAKECMDGOALS)), )
336  .NOTPARALLEL:
337else
338  $(LANGTOOLS_GENSRC_TARGETS): buildtools-langtools
339
340  interim-langtools: $(LANGTOOLS_GENSRC_TARGETS)
341
342  buildtools-jdk: interim-langtools
343
344  $(CORBA_GENSRC_TARGETS): interim-langtools
345
346  $(JDK_GENSRC_TARGETS): interim-langtools buildtools-jdk
347
348  interim-corba: $(CORBA_GENSRC_TARGETS)
349
350  $(GENDATA_TARGETS): interim-langtools buildtools-jdk
351
352  interim-rmic: interim-langtools
353
354  $(RMIC_TARGETS): interim-langtools interim-corba interim-rmic
355
356  import-hotspot: hotspot
357
358  $(LIBS_TARGETS): import-hotspot
359
360  $(LAUNCHER_TARGETS): java.base-libs
361
362  # The demos are currently linking to libjvm and libjava, just like all other
363  # jdk libs, even though they don't need to. To avoid warnings, make sure they
364  # aren't built until after libjava and libjvm are available to link to.
365  demos: $(JAVA_TARGETS)
366
367  # Declare dependency from <module>-java to <module>-gensrc
368  $(foreach m, $(GENSRC_MODULES), $(eval $m-java: $m-gensrc))
369
370  # Declare dependencies between java modules
371  $(foreach m, $(JAVA_MODULES), \
372      $(eval $m-java: $(addsuffix -java, $(filter $(JAVA_MODULES), \
373      $(call FindDepsForModule,$m)))))
374
375  # Declare dependencies between <module>-rmic to <module>-java
376  $(foreach m, $(RMIC_MODULES), $(eval $m-rmic: $m-java))
377
378  # Declare dependencies from <module>-lib to <module>-java
379  # Skip modules that do not have java source.
380  $(foreach m, $(filter $(JAVA_MODULES), $(LIBS_MODULES)), $(eval $m-libs: $m-java))
381
382  # Declare dependencies from all other <module>-lib to java.base-lib
383  $(foreach t, $(filter-out java.base-libs, $(LIBS_TARGETS)), \
384      $(eval $t: java.base-libs))
385  # Declare the special case dependency for jdk.deploy.osx where libosx
386  # links against libosxapp.
387  jdk.deploy.osx-libs: java.desktop-libs
388
389  # This dependency needs to be explicitly declared. jdk.jdi-gensrc generates a
390  # header file used by jdk.jdwp.agent-libs. The jdk.jdwp.agent-gensrc is a
391  # virtual target.
392  jdk.jdwp.agent-libs: jdk.jdwp.agent-gensrc
393
394  # Until the module system is in place, jdk.jdi-gensrc needs to combine service
395  # loader configuration with jdk.hotspot.agent so is dependent on importing
396  # hotspot.
397  jdk.jdi-gensrc-jdk: import-hotspot
398
399  # The swing beans need to have java base properly generated to avoid errors
400  # in javadoc.
401  java.desktop-gensrc-jdk: java.base-gensrc
402
403  # Explicitly add dependencies for special targets
404  java.base-java: unpack-sec
405
406  jdk.dev-gendata: java rmic
407
408  zip-security: java.base-java java.security.jgss-java java.security.jgss-libs \
409      $(filter jdk.crypto%, $(JAVA_TARGETS))
410
411  zip-source: gensrc rmic
412
413  strip-binaries: libs launchers gendata copy
414
415  jrtfs-jar: buildtools-jdk
416
417  jimages: exploded-image zip-source strip-binaries source-tips demos samples \
418      jrtfs-jar
419
420  profiles: exploded-image strip-binaries source-tips
421
422  mac-bundles: jimages
423
424  bootcycle-images: jimages
425
426  docs-javadoc: gensrc rmic
427
428  docs-jvmtidoc: hotspot
429
430  test: jimages test-image
431
432  verify-modules: exploded-image
433
434  test-make: clean-test-make
435
436  build-test-hotspot-jtreg-native: buildtools-jdk
437
438  build-test-jdk-jtreg-native: buildtools-jdk
439
440  test-image-hotspot-jtreg-native: build-test-hotspot-jtreg-native
441
442  test-image-jdk-jtreg-native: build-test-jdk-jtreg-native
443
444endif
445
446################################################################################
447# Virtual targets without recipes
448
449buildtools: buildtools-langtools interim-langtools interim-corba interim-rmic \
450    buildtools-jdk
451
452gensrc: $(GENSRC_TARGETS)
453
454gendata: $(GENDATA_TARGETS)
455
456copy: $(COPY_TARGETS)
457
458java: $(JAVA_TARGETS)
459
460rmic: $(RMIC_TARGETS)
461
462libs: $(LIBS_TARGETS)
463
464launchers: $(LAUNCHER_TARGETS)
465
466# Explicitly declare dependency for virtual target jdk.jdwp.agent-gensrc which
467# is actually handled by jdk.jdi-gensrc
468jdk.jdwp.agent-gensrc: jdk.jdi-gensrc
469
470# Declare dependencies from <module> to all the individual targets specific
471# to that module <module>-*.
472$(foreach m, $(GENSRC_MODULES), $(eval $m: $m-gensrc))
473$(foreach m, $(JAVA_MODULES), $(eval $m: $m-java))
474$(foreach m, $(GENDATA_MODULES), $(eval $m: $m-gendata))
475$(foreach m, $(RMIC_MODULES), $(eval $m: $m-rmic))
476$(foreach m, $(LIBS_MODULES), $(eval $m: $m-libs))
477$(foreach m, $(LAUNCHER_MODULES), $(eval $m: $m-launchers))
478$(foreach m, $(COPY_MODULES), $(eval $m: $m-copy))
479
480ALL_MODULE_TARGETS := $(sort $(GENSRC_MODULES) $(JAVA_MODULES) \
481    $(GENDATA_MODULES) $(LIBS_MODULES) $(LAUNCHER_MODULES) $(COPY_MODULES))
482
483# The "exploded image" is a locally runnable JDK in $(BUILD_OUTPUT)/jdk.
484exploded-image: $(ALL_MODULE_TARGETS)
485
486# The $(BUILD_OUTPUT)/images directory contain the resulting deliverables,
487# and in line with this, our targets for creating these are named *-image[s].
488
489# This target builds the product images, e.g. the JRE and JDK image
490# (and possibly other, more specific versions)
491product-images: jimages demos samples zip-security verify-modules
492
493ifeq ($(OPENJDK_TARGET_OS), macosx)
494  product-images: mac-bundles
495endif
496
497# This target builds the documentation image
498docs-image: docs-javadoc docs-jvmtidoc
499
500# This target builds the test image
501test-image: prepare-test-image test-image-hotspot-jtreg-native \
502    test-image-jdk-jtreg-native
503
504# all-images is the top-most target, it builds all our deliverables ("images").
505all-images: product-images test-image docs-image
506
507ALL_TARGETS += buildtools gensrc gendata copy java rmic libs launchers \
508    jdk.jdwp.agent-gensrc $(ALL_MODULE_TARGETS) exploded-image \
509    product-images docs-image test-image all-images
510
511################################################################################
512
513# Traditional targets typically run by users.
514# These can be considered aliases for the targets now named by a more
515# "modern" naming scheme.
516default: exploded-image
517jdk: exploded-image
518images: product-images
519docs: docs-image
520all: all-images
521
522ALL_TARGETS += default jdk images docs all
523
524################################################################################
525################################################################################
526#
527# Clean targets
528#
529################################################################################
530# Clean targets are automatically run serially by the Makefile calling this
531# file.
532
533CLEAN_DIRS += hotspot jdk bootcycle-build test buildtools support \
534    images make-support test-make
535CLEAN_DIR_TARGETS := $(addprefix clean-, $(CLEAN_DIRS))
536CLEAN_TESTS += hotspot-jtreg-native jdk-jtreg-native
537CLEAN_TEST_TARGETS += $(addprefix clean-test-, $(CLEAN_TESTS))
538CLEAN_PHASES := gensrc java native include
539CLEAN_PHASE_TARGETS := $(addprefix clean-, $(CLEAN_PHASES))
540CLEAN_MODULE_TARGETS := $(addprefix clean-, $(ALL_MODULES))
541# Construct targets of the form clean-$module-$phase
542CLEAN_MODULE_PHASE_TARGETS := $(addprefix clean-, $(foreach m, $(ALL_MODULES), \
543    $(addprefix $m-, $(CLEAN_PHASES))))
544
545# Remove everything, except the output from configure.
546clean: $(CLEAN_DIR_TARGETS)
547	($(CD) $(OUTPUT_ROOT) && $(RM) -r source_tips build.log* build-trace*.log*)
548	$(ECHO) Cleaned all build artifacts.
549
550$(CLEAN_DIR_TARGETS):
551	$(call CleanDir,$(patsubst clean-%, %, $@))
552
553$(CLEAN_TEST_TARGETS):
554	$(call CleanTest,$(patsubst clean-test-%, %, $@))
555
556$(CLEAN_PHASE_TARGETS):
557	$(call Clean-$(patsubst clean-%,%, $@))
558
559$(CLEAN_MODULE_TARGETS):
560	$(call CleanModule,$(patsubst clean-%, %, $@))
561
562$(CLEAN_MODULE_PHASE_TARGETS):
563	$(call Clean-$(word 3, $(subst -,$(SPACE),$@)), \
564	    $(word 2, $(subst -,$(SPACE),$@)))
565
566# When removing the support dir, we must also remove jdk. Building classes has
567# the side effect of generating native headers. The headers end up in support
568# while classes and touch files end up in jdk.
569clean-support: clean-jdk
570
571clean-docs: clean-docstemp
572
573# Remove everything, including configure configuration.
574# If the output directory was created by configure and now becomes empty, remove it as well.
575dist-clean: clean
576	($(CD) $(OUTPUT_ROOT) && $(RM) -r *spec.gmk config.* configure-arguments \
577	    Makefile compare.sh tmp javacservers)
578	$(if $(filter $(CONF_NAME),$(notdir $(OUTPUT_ROOT))), \
579	  if test "x`$(LS) $(OUTPUT_ROOT)`" != x; then \
580	    $(ECHO) "Warning: Not removing non-empty configuration directory for '$(CONF_NAME)'" ; \
581	  else \
582	    ($(CD) $(SRC_ROOT) && $(ECHO) "Removing configuration directory for '$(CONF_NAME)'" \
583	        && $(RM) -r $(OUTPUT_ROOT)) \
584	  fi \
585	)
586	$(ECHO) Cleaned everything, you will have to re-run configure.
587
588ALL_TARGETS += clean dist-clean $(CLEAN_DIR_TARGETS) $(CLEAN_TEST_TARGETS) \
589    $(CLEAN_PHASE_TARGETS) $(CLEAN_MODULE_TARGETS) $(CLEAN_MODULE_PHASE_TARGETS)
590
591################################################################################
592
593# Setup a rule for SPEC file that fails if executed. This check makes sure the
594# configuration is up to date after changes to configure.
595ifeq ($(findstring reconfigure, $(MAKECMDGOALS)), )
596  $(SPEC): $(wildcard $(SRC_ROOT)/common/autoconf/*)
597	@$(ECHO) "ERROR: $(SPEC) is not up to date."
598	@$(ECHO) "Please rerun configure! Easiest way to do this is by running"
599	@$(ECHO) "'make reconfigure'."
600	@$(ECHO) "It may also be ignored by setting IGNORE_OLD_CONFIG=true"
601	@if test "x$(IGNORE_OLD_CONFIG)" != "xtrue"; then exit 1; fi
602endif
603
604# The reconfigure target is automatically run serially from everything else
605# by the Makefile calling this file.
606
607reconfigure:
608        ifneq ($(CONFIGURE_COMMAND_LINE), )
609	  @$(ECHO) "Re-running configure using arguments '$(CONFIGURE_COMMAND_LINE)'"
610        else
611	  @$(ECHO) "Re-running configure using default settings"
612        endif
613	@( cd $(OUTPUT_ROOT) && PATH="$(ORIGINAL_PATH)" \
614	    $(BASH) $(TOPDIR)/configure $(CONFIGURE_COMMAND_LINE) )
615
616ALL_TARGETS += reconfigure
617
618################################################################################
619# Declare *-only targets for each normal target
620$(foreach t, $(ALL_TARGETS), $(eval $(t)-only: $(t)))
621
622ALL_TARGETS += $(addsuffix -only, $(filter-out clean%, $(ALL_TARGETS)))
623
624################################################################################
625
626.PHONY: $(ALL_TARGETS)
627
628include $(SRC_ROOT)/make/Jprt.gmk
629
630FRC: # Force target
631