MainSupport.gmk revision 1725:d7f1098c2fc8
10Sduke#
211884Sykantser# Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
30Sduke# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
40Sduke#
50Sduke# This code is free software; you can redistribute it and/or modify it
60Sduke# under the terms of the GNU General Public License version 2 only, as
70Sduke# published by the Free Software Foundation.  Oracle designates this
80Sduke# particular file as subject to the "Classpath" exception as provided
90Sduke# by Oracle in the LICENSE file that accompanied this code.
100Sduke#
110Sduke# This code is distributed in the hope that it will be useful, but WITHOUT
120Sduke# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
130Sduke# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
140Sduke# version 2 for more details (a copy is included in the LICENSE file that
150Sduke# accompanied this code).
160Sduke#
170Sduke# You should have received a copy of the GNU General Public License version
180Sduke# 2 along with this work; if not, write to the Free Software Foundation,
192362Sohair# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
202362Sohair#
212362Sohair# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
220Sduke# or visit www.oracle.com if you need additional information or have any
230Sduke# questions.
240Sduke#
250Sduke
260Sduke################################################################################
270Sduke# This file contains helper functions for Main.gmk.
280Sduke################################################################################
290Sduke
300Sdukeifndef _MAINSUPPORT_GMK
310Sduke_MAINSUPPORT_GMK := 1
320Sduke
330Sduke# Run the tests specified by $1.
340Sdukedefine RunTests
350Sduke	($(CD) $(SRC_ROOT)/test && $(MAKE) $(MAKE_ARGS) -j1 -k MAKEFLAGS= \
360Sduke	    JT_HOME=$(JT_HOME) PRODUCT_HOME=$(JDK_IMAGE_DIR) \
370Sduke	    TEST_IMAGE_DIR=$(TEST_IMAGE_DIR) \
380Sduke	    ALT_OUTPUTDIR=$(OUTPUT_ROOT) CONCURRENCY=$(JOBS) $1) || true
390Sdukeendef
400Sduke
410Sduke# Cleans the dir given as $1
420Sdukedefine CleanDir
430Sduke	@$(PRINTF) "Cleaning $(strip $1) build artifacts ..."
440Sduke	@$(PRINTF) "\n" $(LOG_DEBUG)
450Sduke	($(CD) $(OUTPUT_ROOT) && $(RM) -r $1)
460Sduke	@$(PRINTF) " done\n"
470Sdukeendef
480Sduke
490Sdukedefine CleanSupportDir
500Sduke	@$(PRINTF) "Cleaning $(strip $1) build artifacts ..."
510Sduke	@$(PRINTF) "\n" $(LOG_DEBUG)
520Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/$(strip $1)
530Sduke	@$(PRINTF) " done\n"
540Sdukeendef
550Sduke
560Sdukedefine CleanTest
570Sduke	@$(PRINTF) "Cleaning test $(strip $1) ..."
580Sduke	@$(PRINTF) "\n" $(LOG_DEBUG)
590Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/test/$(strip $(subst -,/,$1))
600Sduke        # Remove as much of the test directory structure as is empty
610Sduke	$(RMDIR) -p $(dir $(SUPPORT_OUTPUTDIR)/test/$(strip $(subst -,/,$1))) 2> /dev/null || true
620Sduke	@$(PRINTF) " done\n"
630Sdukeendef
640Sduke
650Sdukedefine Clean-gensrc
660Sduke	@$(PRINTF) "Cleaning gensrc $(if $1,for $(strip $1) )..."
670Sduke	@$(PRINTF) "\n" $(LOG_DEBUG)
680Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/gensrc/$(strip $1)
690Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/gensrc_no_docs/$(strip $1)
700Sduke	@$(PRINTF) " done\n"
710Sdukeendef
720Sduke
730Sdukedefine Clean-java
740Sduke	@$(PRINTF) "Cleaning java $(if $1,for $(strip $1) )..."
750Sduke	@$(PRINTF) "\n" $(LOG_DEBUG)
760Sduke	$(RM) -r $(JDK_OUTPUTDIR)/modules/$(strip $1)
770Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/special_classes/$(strip $1)
780Sduke	$(PRINTF) " done\n"
790Sduke	$(PRINTF) "Cleaning headers $(if $1,for $(strip $1)) ..."
800Sduke	$(RM) -r $(SUPPORT_OUTPUTDIR)/headers/$(strip $1)
810Sduke	@$(PRINTF) " done\n"
82endef
83
84define Clean-native
85	@$(PRINTF) "Cleaning native $(if $1,for $(strip $1) )..."
86	@$(PRINTF) "\n" $(LOG_DEBUG)
87	$(RM) -r $(SUPPORT_OUTPUTDIR)/native/$(strip $1)
88	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs/$(strip $1)
89	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_libs-stripped/$(strip $1)
90	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds/$(strip $1)
91	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_cmds-stripped/$(strip $1)
92	@$(PRINTF) " done\n"
93endef
94
95define Clean-include
96	@$(PRINTF) "Cleaning include $(if $1,for $(strip $1) )..."
97	@$(PRINTF) "\n" $(LOG_DEBUG)
98	$(RM) -r $(SUPPORT_OUTPUTDIR)/modules_include/$(strip $1)
99	@$(PRINTF) " done\n"
100endef
101
102define Clean-docs
103	@$(PRINTF) "Cleaning docs ..."
104	@$(PRINTF) "\n" $(LOG_DEBUG)
105	$(RM) -r $(SUPPORT_OUTPUTDIR)/docs
106	$(RM) -r $(IMAGES_OUTPUTDIR)/docs
107	@$(PRINTF) " done\n"
108endef
109
110define CleanModule
111  $(call Clean-gensrc, $1)
112  $(call Clean-java, $1)
113  $(call Clean-native, $1)
114  $(call Clean-include, $1)
115endef
116
117
118################################################################################
119
120MAKE_TOPDIR_LIST := $(JDK_TOPDIR) $(CORBA_TOPDIR) $(LANGTOOLS_TOPDIR) \
121    $(HOTSPOT_TOPDIR)
122MAKE_MAKEDIR_LIST := make
123
124# Helper macro for DeclareRecipesForPhase
125# Declare a recipe for calling the module and phase specific makefile.
126# If there are multiple makefiles to call, create a rule for each topdir
127# that contains a makefile with the target $module-$suffix-$repodir,
128# (i.e: java.base-gensrc-jdk)
129# Normally there is only one makefile, and the target will just be
130# $module-$suffix
131# Param 1: Name of list to add targets to
132# Param 2: Module name
133# Param 3: Topdir
134define DeclareRecipeForModuleMakefile
135  ifeq ($$($1_MULTIPLE_MAKEFILES), true)
136    $2-$$($1_TARGET_SUFFIX): $2-$$($1_TARGET_SUFFIX)-$$(notdir $3)
137    $1 += $2-$$($1_TARGET_SUFFIX)-$$(notdir $3)
138
139    $2-$$($1_TARGET_SUFFIX)-$$(notdir $3):
140  else
141    $2-$$($1_TARGET_SUFFIX):
142  endif
143	$(ECHO) $(LOG_INFO) "Building $$@"
144        ifeq ($$($1_USE_WRAPPER), true)
145	  +($(CD) $(SRC_ROOT)/make && $(MAKE) $(MAKE_ARGS) \
146	      -f ModuleWrapper.gmk \
147	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
148	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
149	          MODULE=$2 MAKEFILE_PREFIX=$$($1_FILE_PREFIX))
150        else
151	  +($(CD) $$(dir $$(firstword $$(wildcard $$(patsubst %, \
152	          $3/%/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, $(MAKE_MAKEDIR_LIST))))) \
153	    && $(MAKE) $(MAKE_ARGS) \
154	          -f $$($1_FILE_PREFIX)-$2.gmk \
155	          $$(addprefix -I, $$(wildcard $$(addprefix $3/, $(MAKE_MAKEDIR_LIST)) \
156	          $$(addsuffix /$$($1_MAKE_SUBDIR), $$(addprefix $3/, $(MAKE_MAKEDIR_LIST))))) \
157	          MODULE=$2)
158        endif
159
160endef
161
162# Helper macro for DeclareRecipesForPhase
163# Param 1: Name of list to add targets to
164# Param 2: Module name
165define DeclareRecipesForPhaseAndModule
166  $1_$2_TOPDIRS := $$(strip $$(sort $$(foreach d, $(MAKE_TOPDIR_LIST), \
167      $$(patsubst $$d/%, $$d, $$(filter $$d/%, \
168          $$(wildcard $$(patsubst %, %/$$($1_MAKE_SUBDIR)/$$($1_FILE_PREFIX)-$2.gmk, \
169          $$(foreach s, $(MAKE_MAKEDIR_LIST), \
170              $$(addsuffix /$$s, $(MAKE_TOPDIR_LIST))))))))))
171
172  # Only declare recipes if there are makefiles to call
173  ifneq ($$($1_$2_TOPDIRS), )
174    ifeq ($(NO_RECIPES),)
175      $$(foreach d, $$($1_$2_TOPDIRS), \
176          $$(eval $$(call DeclareRecipeForModuleMakefile,$1,$2,$$d)))
177    endif
178    $1 += $2-$$($1_TARGET_SUFFIX)
179    $1_MODULES += $2
180  endif
181endef
182
183# Declare recipes for a specific module and build phase if there are makefiles
184# present for the specific combination.
185# Param 1: Name of list to add targets to
186# Named params:
187# TARGET_SUFFIX : Suffix of target to create for recipe
188# MAKE_SUBDIR : Subdir for this build phase
189# FILE_PREFIX : File prefix for this build phase
190# USE_WRAPPER : Set to true to use ModuleWrapper.gmk
191# CHECK_MODULES : List of modules to try
192# MULTIPLE_MAKEFILES : Set to true to handle makefiles for the same module and
193#                      phase in multiple repos
194# Exported variables:
195# $1_MODULES : All modules that had rules generated
196# $1_TARGETS : All targets generated
197define DeclareRecipesForPhase
198  $(foreach i,2 3 4 5 6 7, $(if $($i),$(strip $1)_$(strip $($i)))$(NEWLINE))
199  $(if $(8),$(error Internal makefile error: Too many arguments to \
200      DeclareRecipesForPhase, please update MakeHelper.gmk))
201
202  $$(foreach m, $$($(strip $1)_CHECK_MODULES), \
203      $$(eval $$(call DeclareRecipesForPhaseAndModule,$(strip $1),$$m)))
204
205  $(strip $1)_TARGETS := $$($(strip $1))
206endef
207
208################################################################################
209
210endif # _MAINSUPPORT_GMK
211