MainSupport.gmk revision 1695:dec57655571e
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 file contains helper functions for Main.gmk.
28################################################################################
29
30ifndef _MAINSUPPORT_GMK
31_MAINSUPPORT_GMK := 1
32
33# Run the tests specified by $1.
34define RunTests
35	($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \
36	    JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR) \
37	    TEST_IMAGE_DIR=$(TEST_IMAGE_DIR) \
38	    ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $1) || true
39endef
40
41# Cleans the dir given as $1
42define CleanDir
43	@$(PRINTF) "Cleaning $(strip $1) build artifacts ..."
44	@$(PRINTF) "\n" $(LOG_DEBUG)
45	($(CD) $(OUTPUT_ROOT) && $(RM) -r $1)
46	@$(PRINTF) " done\n"
47endef
48
49define CleanTest
50	@$(PRINTF) "Cleaning test $(strip $1) ..."
51	@$(PRINTF) "\n" $(LOG_DEBUG)
52	$(RM) -r $(SUPPORT_OUTPUTDIR)/test/$(strip $(subst -,/,$1))
53	@$(PRINTF) " done\n"
54endef
55
56define Clean-gensrc
57	@$(PRINTF) "Cleaning gensrc $(if $1,for $(strip $1) )..."
58	@$(PRINTF) "\n" $(LOG_DEBUG)
59	$(RM) -r $(SUPPORT_OUTPUTDIR)/gensrc/$(strip $1)
60	$(RM) -r $(SUPPORT_OUTPUTDIR)/gensrc_no_docs/$(strip $1)
61	@$(PRINTF) " done\n"
62endef
63
64define Clean-java
65	@$(PRINTF) "Cleaning java $(if $1,for $(strip $1) )..."
66	@$(PRINTF) "\n" $(LOG_DEBUG)
67	$(RM) -r $(JDK_OUTPUTDIR)/modules/$(strip $1)
68	$(RM) -r $(SUPPORT_OUTPUTDIR)/special_classes/$(strip $1)
69	$(PRINTF) " done\n"
70	$(PRINTF) "Cleaning headers $(if $1,for $(strip $1)) ..."
71	$(RM) -r $(SUPPORT_OUTPUTDIR)/headers/$(strip $1)
72	@$(PRINTF) " done\n"
73endef
74
75define Clean-native
76	@$(PRINTF) "Cleaning native $(if $1,for $(strip $1) )..."
77	@$(PRINTF) "\n" $(LOG_DEBUG)
78	$(RM) -r $(SUPPORT_OUTPUTDIR)/native/$(strip $1)
79	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
80	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs-stripped/$(strip $1)
81	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
82	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds-stripped/$(strip $1)
83	@$(PRINTF) " done\n"
84endef
85
86define Clean-include
87	@$(PRINTF) "Cleaning include $(if $1,for $(strip $1) )..."
88	@$(PRINTF) "\n" $(LOG_DEBUG)
89	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_include/$(strip $1)
90	@$(PRINTF) " done\n"
91endef
92
93define Clean-docs
94	@$(PRINTF) "Cleaning docs ..."
95	@$(PRINTF) "\n" $(LOG_DEBUG)
96	$(RM) -r $(SUPPORT_OUTPUTDIR)/docs
97	$(RM) -r $(IMAGES_OUTPUTDIR)/docs
98	@$(PRINTF) " done\n"
99endef
100
101define CleanModule
102  $(call Clean-gensrc, $1)
103  $(call Clean-java, $1)
104  $(call Clean-native, $1)
105  $(call Clean-include, $1)
106endef
107
108
109################################################################################
110
111MAKE_TOPDIR_LIST := $(JDK_TOPDIR) $(CORBA_TOPDIR) $(LANGTOOLS_TOPDIR) \
112    $(HOTSPOT_TOPDIR)
113MAKE_MAKEDIR_LIST := make
114
115# Helper macro for DeclareRecipesForPhase
116# Declare a recipe for calling the module and phase specific makefile.
117# If there are multiple makefiles to call, create a rule for each topdir
118# that contains a makefile with the target $module-$suffix-$repodir,
119# (i.e: java.base-gensrc-jdk)
120# Normally there is only one makefile, and the target will just be
121# $module-$suffix
122# Param 1: Name of list to add targets to
123# Param 2: Module name
124# Param 3: Topdir
125define DeclareRecipeForModuleMakefile
126  ifeq ($$($1_MULTIPLE_MAKEFILES), true)
127    $2-$$($1_TARGET_SUFFIX): $2-$$($1_TARGET_SUFFIX)-$$(notdir $3)
128    $1 += $2-$$($1_TARGET_SUFFIX)-$$(notdir $3)
129
130    $2-$$($1_TARGET_SUFFIX)-$$(notdir $3):
131  else
132    $2-$$($1_TARGET_SUFFIX):
133  endif
134	$(ECHO) $(LOG_INFO) "Building $$@"
135        ifeq ($$($1_USE_WRAPPER), true)
136	  +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
137	      -f ModuleWrapper.gmk \
138	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
139	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
140	          MODULE=$2 MAKEFILE_PREFIX=$$($1_FILE_PREFIX))
141        else
142	  +($(CD) $$(dir $$(firstword $$(wildcard $$(patsubst %, \
143	          $3/%/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, $(MAKE_MAKEDIR_LIST))))) \
144	    && $(MAKE) $(MAKE_ARGS) \
145	          -f $$($1_FILE_PREFIX)-$2.gmk \
146	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
147	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
148	          MODULE=$2)
149        endif
150
151endef
152
153# Helper macro for DeclareRecipesForPhase
154# Param 1: Name of list to add targets to
155# Param 2: Module name
156define DeclareRecipesForPhaseAndModule
157  $1_$2_TOPDIRS := $$(strip $$(sort $$(foreach d, $(MAKE_TOPDIR_LIST), \
158      $$(patsubst $$d/%, $$d, $$(filter $$d/%, \
159          $$(wildcard $$(patsubst %, %/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, \
160          $$(foreach s, $(MAKE_MAKEDIR_LIST), \
161              $$(addsuffix /$$s, $(MAKE_TOPDIR_LIST))))))))))
162
163  # Only declare recipes if there are makefiles to call
164  ifneq ($$($1_$2_TOPDIRS), )
165    ifeq ($(NO_RECIPES),)
166      $$(foreach d, $$($1_$2_TOPDIRS), \
167          $$(eval $$(call DeclareRecipeForModuleMakefile,$1,$2,$$d)))
168    endif
169    $1 += $2-$$($1_TARGET_SUFFIX)
170    $1_MODULES += $2
171  endif
172endef
173
174# Declare recipes for a specific module and build phase if there are makefiles
175# present for the specific combination.
176# Param 1: Name of list to add targets to
177# Named params:
178# TARGET_SUFFIX : Suffix of target to create for recipe
179# MAKE_SUBDIR : Subdir for this build phase
180# FILE_PREFIX : File prefix for this build phase
181# USE_WRAPPER : Set to true to use ModuleWrapper.gmk
182# CHECK_MODULES : List of modules to try
183# MULTIPLE_MAKEFILES : Set to true to handle makefiles for the same module and
184#                      phase in multiple repos
185# Exported variables:
186# $1_MODULES : All modules that had rules generated
187# $1_TARGETS : All targets generated
188define DeclareRecipesForPhase
189  $(foreach i,2 3 4 5 6 7, $(if $($i),$(strip $1)_$(strip $($i)))$(NEWLINE))
190  $(if $(8),$(error Internal makefile error: Too many arguments to \
191      DeclareRecipesForPhase, please update MakeHelper.gmk))
192
193  $$(foreach m, $$($(strip $1)_CHECK_MODULES), \
194      $$(eval $$(call DeclareRecipesForPhaseAndModule,$(strip $1),$$m)))
195
196  $(strip $1)_TARGETS := $$($(strip $1))
197endef
198
199################################################################################
200
201endif # _MAINSUPPORT_GMK
202