make/MainSupport.gmk
author erikj
Tue, 04 Oct 2016 13:41:51 +0200
changeset 41172 1de8867db5a3
parent 41047 de6f69208f82
child 41260 4f71f07b30d1
permissions -rw-r--r--
8166965: Some small java build tools are still running with big JVM configuration Reviewed-by: ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     1
#
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
     2
# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     4
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     7
# published by the Free Software Foundation.  Oracle designates this
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     8
# particular file as subject to the "Classpath" exception as provided
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
     9
# by Oracle in the LICENSE file that accompanied this code.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    10
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    11
# This code is distributed in the hope that it will be useful, but WITHOUT
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    12
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    13
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    14
# version 2 for more details (a copy is included in the LICENSE file that
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    15
# accompanied this code).
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    16
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    17
# You should have received a copy of the GNU General Public License version
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    18
# 2 along with this work; if not, write to the Free Software Foundation,
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    19
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    20
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    21
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    22
# or visit www.oracle.com if you need additional information or have any
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    23
# questions.
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    24
#
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    25
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
    26
################################################################################
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
    27
# This file contains helper functions for Main.gmk.
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
    28
################################################################################
14111
2a82ecb35fc7 8000992: Update new build-infra makefiles
ohair
parents: 13697
diff changeset
    29
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
    30
ifndef _MAINSUPPORT_GMK
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
    31
_MAINSUPPORT_GMK := 1
13133
701e61c32ece 7182051: Update of latest build-infra Makefiles (missing files)
erikj
parents:
diff changeset
    32
37974
05e1a65c1d56 8157028: Add make target for running gtest tests
ehelin
parents: 37034
diff changeset
    33
# Run the tests specified by $1, with PRODUCT_HOME specified by $2
41047
de6f69208f82 8164301: jib should provide a JDK for running jtreg with
erikj
parents: 37974
diff changeset
    34
# JT_JAVA is picked up by the jtreg launcher and used to run Jtreg itself.
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    35
define RunTests
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    36
	($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \
37974
05e1a65c1d56 8157028: Add make target for running gtest tests
ehelin
parents: 37034
diff changeset
    37
	    JT_HOME=$(JT_HOME) PRODUCT_HOME=$(strip $2) \
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    38
	    TEST_IMAGE_DIR=$(TEST_IMAGE_DIR) \
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 33437
diff changeset
    39
	    ALT_OUTPUTDIR=$(OUTPUT_ROOT) TEST_JOBS=$(TEST_JOBS) \
41047
de6f69208f82 8164301: jib should provide a JDK for running jtreg with
erikj
parents: 37974
diff changeset
    40
	    JT_JAVA=$(BOOT_JDK) \
34594
7e0595aab028 8139272: Add configure variable to set concurrency for jtreg tests
ehelin
parents: 33437
diff changeset
    41
	    JOBS=$(JOBS) $1) || true
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    42
endef
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    43
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    44
# Cleans the dir given as $1
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    45
define CleanDir
25854
98ce0879ab4c 8054834: Modular Source Code
chegar
parents: 22031
diff changeset
    46
	@$(PRINTF) "Cleaning $(strip $1) build artifacts ..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    47
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    48
	($(CD) $(OUTPUT_ROOT) && $(RM) -r $1)
20363
fa7663fc5d50 8001931: The new build system whitespace cleanup
ihse
parents: 16583
diff changeset
    49
	@$(PRINTF) " done\n"
13697
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
    50
endef
5262b00bc10c 7197849: Update new build-infra makefiles
ohair
parents: 13133
diff changeset
    51
33437
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    52
define CleanSupportDir
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    53
	@$(PRINTF) "Cleaning $(strip $1) build artifacts ..."
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    54
	@$(PRINTF) "\n" $(LOG_DEBUG)
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    55
	$(RM) -r $(SUPPORT_OUTPUTDIR)/$(strip $1)
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    56
	@$(PRINTF) " done\n"
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    57
endef
1cf150337073 8141261: Clean up building of demos
ihse
parents: 33052
diff changeset
    58
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    59
define CleanTest
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    60
	@$(PRINTF) "Cleaning test $(strip $1) ..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    61
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    62
	$(RM) -r $(SUPPORT_OUTPUTDIR)/test/$(strip $(subst -,/,$1))
33052
4da63d511320 8140282: Remove test directories on clean-test-*
ihse
parents: 33045
diff changeset
    63
        # Remove as much of the test directory structure as is empty
4da63d511320 8140282: Remove test directories on clean-test-*
ihse
parents: 33045
diff changeset
    64
	$(RMDIR) -p $(dir $(SUPPORT_OUTPUTDIR)/test/$(strip $(subst -,/,$1))) 2> /dev/null || true
29156
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    65
	@$(PRINTF) " done\n"
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    66
endef
bd932374081c 8072842: Add support for building native JTReg tests
ihse
parents: 29060
diff changeset
    67
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    68
define Clean-gensrc
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    69
	@$(PRINTF) "Cleaning gensrc $(if $1,for $(strip $1) )..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    70
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    71
	$(RM) -r $(SUPPORT_OUTPUTDIR)/gensrc/$(strip $1)
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    72
	@$(PRINTF) " done\n"
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    73
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    74
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    75
define Clean-java
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    76
	@$(PRINTF) "Cleaning java $(if $1,for $(strip $1) )..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    77
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    78
	$(RM) -r $(JDK_OUTPUTDIR)/modules/$(strip $1)
31310
481585782338 8081814: Modularize the deploy build
erikj
parents: 29790
diff changeset
    79
	$(RM) -r $(SUPPORT_OUTPUTDIR)/special_classes/$(strip $1)
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    80
	$(PRINTF) " done\n"
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    81
	$(PRINTF) "Cleaning headers $(if $1,for $(strip $1)) ..."
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    82
	$(RM) -r $(SUPPORT_OUTPUTDIR)/headers/$(strip $1)
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    83
	@$(PRINTF) " done\n"
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    84
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    85
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    86
define Clean-native
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    87
	@$(PRINTF) "Cleaning native $(if $1,for $(strip $1) )..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    88
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    89
	$(RM) -r $(SUPPORT_OUTPUTDIR)/native/$(strip $1)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    90
	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    91
	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs-stripped/$(strip $1)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    92
	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    93
	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds-stripped/$(strip $1)
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    94
	@$(PRINTF) " done\n"
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    95
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    96
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    97
define Clean-include
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
    98
	@$(PRINTF) "Cleaning include $(if $1,for $(strip $1) )..."
29790
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
    99
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   100
	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_include/$(strip $1)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   101
	@$(PRINTF) " done\n"
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   102
endef
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   103
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   104
define Clean-docs
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   105
	@$(PRINTF) "Cleaning docs ..."
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   106
	@$(PRINTF) "\n" $(LOG_DEBUG)
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   107
	$(RM) -r $(SUPPORT_OUTPUTDIR)/docs
79641c886929 8073634: Improve clean targets
erikj
parents: 29662
diff changeset
   108
	$(RM) -r $(IMAGES_OUTPUTDIR)/docs
37034
b63fd4af003e 8154313: Generated javadoc scattered all over the place
neugens
parents: 36506
diff changeset
   109
	$(RM) $(OUTPUT_ROOT)/bundles/jdk-*-docs.zip
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   110
	@$(PRINTF) " done\n"
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   111
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   112
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   113
define CleanModule
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   114
  $(call Clean-gensrc, $1)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   115
  $(call Clean-java, $1)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   116
  $(call Clean-native, $1)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   117
  $(call Clean-include, $1)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   118
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   119
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   120
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   121
################################################################################
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   122
33045
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31310
diff changeset
   123
MAKE_TOPDIR_LIST := $(JDK_TOPDIR) $(CORBA_TOPDIR) $(LANGTOOLS_TOPDIR) \
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31310
diff changeset
   124
    $(HOTSPOT_TOPDIR)
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   125
MAKE_MAKEDIR_LIST := make
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   126
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   127
# Helper macro for DeclareRecipesForPhase
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   128
# Declare a recipe for calling the module and phase specific makefile.
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   129
# If there are multiple makefiles to call, create a rule for each topdir
28356
3b985eeacb08 8066769: Fix merge errors following JDK-8049367
ihse
parents: 27602
diff changeset
   130
# that contains a makefile with the target $module-$suffix-$repodir,
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   131
# (i.e: java.base-gensrc-jdk)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   132
# Normally there is only one makefile, and the target will just be
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   133
# $module-$suffix
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   134
# Param 1: Name of list to add targets to
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   135
# Param 2: Module name
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   136
# Param 3: Topdir
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   137
define DeclareRecipeForModuleMakefile
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   138
  ifeq ($$($1_MULTIPLE_MAKEFILES), true)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   139
    $2-$$($1_TARGET_SUFFIX): $2-$$($1_TARGET_SUFFIX)-$$(notdir $3)
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   140
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   141
    $2-$$($1_TARGET_SUFFIX)-$$(notdir $3):
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   142
  else
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   143
    $2-$$($1_TARGET_SUFFIX):
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   144
  endif
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   145
        ifeq ($$($1_USE_WRAPPER), true)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   146
	  +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   147
	      -f ModuleWrapper.gmk \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   148
	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   149
	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   150
	          MODULE=$2 MAKEFILE_PREFIX=$$($1_FILE_PREFIX))
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   151
        else
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   152
	  +($(CD) $$(dir $$(firstword $$(wildcard $$(patsubst %, \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   153
	          $3/%/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, $(MAKE_MAKEDIR_LIST))))) \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   154
	    && $(MAKE) $(MAKE_ARGS) \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   155
	          -f $$($1_FILE_PREFIX)-$2.gmk \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   156
	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
29060
baa66d2b7e95 8073498: Enhance GensrcProperties.gmk to allow an alternative source root
erikj
parents: 28356
diff changeset
   157
	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   158
	          MODULE=$2)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   159
        endif
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   160
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   161
endef
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   162
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   163
# Helper macro for DeclareRecipesForPhase
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   164
# Param 1: Name of list to add targets to
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   165
# Param 2: Module name
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   166
define DeclareRecipesForPhaseAndModule
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   167
  $1_$2_TOPDIRS := $$(strip $$(sort $$(foreach d, $(MAKE_TOPDIR_LIST), \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   168
      $$(patsubst $$d/%, $$d, $$(filter $$d/%, \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   169
          $$(wildcard $$(patsubst %, %/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   170
          $$(foreach s, $(MAKE_MAKEDIR_LIST), \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   171
              $$(addsuffix /$$s, $(MAKE_TOPDIR_LIST))))))))))
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   172
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   173
  # Only declare recipes if there are makefiles to call
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   174
  ifneq ($$($1_$2_TOPDIRS), )
41172
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   175
    # Add the top dir specific target to target list regardless of if recipe
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   176
    # generation is disabled.
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   177
    ifeq ($$($1_MULTIPLE_MAKEFILES), true)
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   178
      $$(foreach d, $$($1_$2_TOPDIRS), \
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   179
        $$(eval $1 += $2-$$($1_TARGET_SUFFIX)-$$(notdir $$d)))
1de8867db5a3 8166965: Some small java build tools are still running with big JVM configuration
erikj
parents: 41047
diff changeset
   180
    endif
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
   181
    ifeq ($(NO_RECIPES),)
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
   182
      $$(foreach d, $$($1_$2_TOPDIRS), \
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
   183
          $$(eval $$(call DeclareRecipeForModuleMakefile,$1,$2,$$d)))
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
   184
    endif
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   185
    $1 += $2-$$($1_TARGET_SUFFIX)
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   186
    $1_MODULES += $2
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   187
  endif
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   188
endef
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   189
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   190
# Declare recipes for a specific module and build phase if there are makefiles
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   191
# present for the specific combination.
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   192
# Param 1: Name of list to add targets to
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   193
# Named params:
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   194
# TARGET_SUFFIX : Suffix of target to create for recipe
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   195
# MAKE_SUBDIR : Subdir for this build phase
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   196
# FILE_PREFIX : File prefix for this build phase
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   197
# USE_WRAPPER : Set to true to use ModuleWrapper.gmk
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   198
# CHECK_MODULES : List of modules to try
33045
00f484891bcf 8136421: JEP 243: Java-Level JVM Compiler Interface
twisti
parents: 31310
diff changeset
   199
# MULTIPLE_MAKEFILES : Set to true to handle makefiles for the same module and
27560
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   200
#                      phase in multiple repos
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   201
# Exported variables:
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   202
# $1_MODULES : All modules that had rules generated
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   203
# $1_TARGETS : All targets generated
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   204
define DeclareRecipesForPhase
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   205
  $(foreach i,2 3 4 5 6 7, $(if $($i),$(strip $1)_$(strip $($i)))$(NEWLINE))
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   206
  $(if $(8),$(error Internal makefile error: Too many arguments to \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   207
      DeclareRecipesForPhase, please update MakeHelper.gmk))
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   208
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   209
  $$(foreach m, $$($(strip $1)_CHECK_MODULES), \
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   210
      $$(eval $$(call DeclareRecipesForPhaseAndModule,$(strip $1),$$m)))
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   211
adc258b13e2c 8049367: Modular Run-Time Images
chegar
parents: 27000
diff changeset
   212
  $(strip $1)_TARGETS := $$($(strip $1))
26116
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   213
endef
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   214
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   215
################################################################################
f051bd253364 8055095: Improve "do nothing" incremental build performance after modularized source code integration
erikj
parents: 25854
diff changeset
   216
29662
78c47f0002c3 8076060: Improve make bootstrap process
ihse
parents: 29156
diff changeset
   217
endif # _MAINSUPPORT_GMK