Merge
This commit is contained in:
commit
6f69115f08
@ -4311,7 +4311,7 @@ TOOLCHAIN_DESCRIPTION_xlc="IBM XL C/C++"
|
||||
#CUSTOM_AUTOCONF_INCLUDE
|
||||
|
||||
# Do not change or remove the following line, it is needed for consistency checks:
|
||||
DATE_WHEN_GENERATED=1404942241
|
||||
DATE_WHEN_GENERATED=1405336663
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
@ -14548,7 +14548,7 @@ $as_echo "$with_jvm_variants" >&6; }
|
||||
if test "x$JVM_VARIANT_ZEROSHARK" = xtrue ; then
|
||||
INCLUDE_SA=false
|
||||
fi
|
||||
if test "x$VAR_CPU" = xppc64 ; then
|
||||
if test "x$OPENJDK_TARGET_OS" = xaix ; then
|
||||
INCLUDE_SA=false
|
||||
fi
|
||||
|
||||
|
@ -158,7 +158,7 @@ AC_DEFUN_ONCE([JDKOPT_SETUP_JVM_VARIANTS],
|
||||
if test "x$JVM_VARIANT_ZEROSHARK" = xtrue ; then
|
||||
INCLUDE_SA=false
|
||||
fi
|
||||
if test "x$VAR_CPU" = xppc64 ; then
|
||||
if test "x$OPENJDK_TARGET_OS" = xaix ; then
|
||||
INCLUDE_SA=false
|
||||
fi
|
||||
AC_SUBST(INCLUDE_SA)
|
||||
|
132
make/Javadoc.gmk
132
make/Javadoc.gmk
@ -239,11 +239,15 @@ endef
|
||||
|
||||
# Common echo of option
|
||||
define OptionOnly # opt
|
||||
$(PRINTF) "%s\n" "$1"
|
||||
if [ "$1" != "" ] ; then \
|
||||
$(PRINTF) "%s\n" "$1"; \
|
||||
fi
|
||||
endef
|
||||
|
||||
define OptionPair # opt arg
|
||||
$(PRINTF) "%s '%s'\n" "$1" '$2'
|
||||
endef
|
||||
|
||||
define OptionTrip # opt arg arg
|
||||
$(PRINTF) "%s '%s' '%s'\n" "$1" '$2' '$3'
|
||||
endef
|
||||
@ -258,14 +262,7 @@ and working code examples.<br>\
|
||||
$(call CopyrightLine,$(COPYRIGHT_URL),$(FIRST_COPYRIGHT_YEAR),)\
|
||||
</font>
|
||||
|
||||
# Common javadoc options used by all
|
||||
COMMON_JAVADOCFLAGS = \
|
||||
-XDignore.symbol.file=true \
|
||||
-quiet \
|
||||
-use \
|
||||
-keywords \
|
||||
-Xprofilespath $(JDK_TOPDIR)/make/profile-rtjar-includes.txt \
|
||||
$(ADDITIONAL_JAVADOCFLAGS)
|
||||
# Common javadoc options used by all bundles
|
||||
|
||||
ifdef OPENJDK
|
||||
ADDITIONAL_JAVADOCFLAGS = \
|
||||
@ -274,6 +271,52 @@ else
|
||||
ADDITIONAL_JAVADOCFLAGS =
|
||||
endif
|
||||
|
||||
define COMMON_JAVADOCFLAGS
|
||||
$(call OptionOnly,-XDignore.symbol.file=true) ; \
|
||||
$(call OptionOnly,-quiet) ; \
|
||||
$(call OptionOnly,-use) ; \
|
||||
$(call OptionOnly,-keywords) ; \
|
||||
$(call OptionPair,-Xprofilespath,$(JDK_TOPDIR)/make/profile-rtjar-includes.txt) ; \
|
||||
$(call OptionOnly,$(ADDITIONAL_JAVADOCFLAGS))
|
||||
endef
|
||||
|
||||
# Common javadoc tags used by all bundles
|
||||
|
||||
# Java language specification cite
|
||||
TAG_JLS = jls:a:See <cite> \
|
||||
The Java™ Language Specification</cite>:
|
||||
|
||||
# Java virtual machine specification cite
|
||||
TAG_JVMS = jvms:a:See <cite> \
|
||||
The Java™ Virtual Machine Specification</cite>:
|
||||
|
||||
# In order to get a specific ordering it's necessary to specify the total
|
||||
# ordering of tags as the tags are otherwise ordered in order of definition.
|
||||
define COMMON_JAVADOCTAGS
|
||||
$(call OptionPair,-tag,beaninfo:X) ; \
|
||||
$(call OptionPair,-tag,revised:X) ; \
|
||||
$(call OptionPair,-tag,since.unbundled:X) ; \
|
||||
$(call OptionPair,-tag,spec:X) ; \
|
||||
$(call OptionPair,-tag,specdefault:X) ; \
|
||||
$(call OptionPair,-tag,Note:X) ; \
|
||||
$(call OptionPair,-tag,ToDo:X) ; \
|
||||
$(call OptionPair,-tag,apiNote:a:API Note:) ; \
|
||||
$(call OptionPair,-tag,implSpec:a:Implementation Requirements:) ; \
|
||||
$(call OptionPair,-tag,implNote:a:Implementation Note:) ; \
|
||||
$(call OptionPair,-tag,param) ; \
|
||||
$(call OptionPair,-tag,return) ; \
|
||||
$(call OptionPair,-tag,throws) ; \
|
||||
$(call OptionPair,-tag,since) ; \
|
||||
$(call OptionPair,-tag,version) ; \
|
||||
$(call OptionPair,-tag,serialData) ; \
|
||||
$(call OptionPair,-tag,factory) ; \
|
||||
$(call OptionPair,-tag,see) ; \
|
||||
$(call OptionPair,-tag,$(TAG_JVMS)) ; \
|
||||
$(call OptionPair,-tag,$(TAG_JLS))
|
||||
endef
|
||||
|
||||
|
||||
|
||||
# Draft used for non-fcs documents
|
||||
DRAFT_HEADER =
|
||||
ifneq ($(MILESTONE), fcs)
|
||||
@ -338,10 +381,6 @@ COREAPI_WINDOWTITLE = Java Platform SE $(JDK_MINOR_VERSION)
|
||||
COREAPI_HEADER = \
|
||||
<strong>Java$(TRADEMARK) Platform<br>Standard Ed. $(JDK_MINOR_VERSION)</strong>
|
||||
|
||||
# Java language specification cite
|
||||
TAG_JLS = jls:a:See <cite> \
|
||||
The Java™ Language Specification</cite>:
|
||||
|
||||
# Overview file for core apis
|
||||
COREAPI_OVERVIEW = $(JDK_SHARE_CLASSES)/overview-core.html
|
||||
|
||||
@ -365,29 +404,11 @@ $(COREAPI_INDEX_FILE): $(COREAPI_OPTIONS_FILE) $(COREAPI_PACKAGES_FILE)
|
||||
# Create file with javadoc options in it
|
||||
$(COREAPI_OPTIONS_FILE): $(COREAPI_OVERVIEW)
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ISO-8859-1) ; \
|
||||
$(call OptionPair,-tag,beaninfo:X) ; \
|
||||
$(call OptionPair,-tag,revised:X) ; \
|
||||
$(call OptionPair,-tag,since.unbundled:X) ; \
|
||||
$(call OptionPair,-tag,spec:X) ; \
|
||||
$(call OptionPair,-tag,specdefault:X) ; \
|
||||
$(call OptionPair,-tag,Note:X) ; \
|
||||
$(call OptionPair,-tag,ToDo:X) ; \
|
||||
$(call OptionPair,-tag,apiNote:a:API Note:) ; \
|
||||
$(call OptionPair,-tag,implSpec:a:Implementation Requirements:) ; \
|
||||
$(call OptionPair,-tag,implNote:a:Implementation Note:) ; \
|
||||
$(call OptionPair,-tag,param) ; \
|
||||
$(call OptionPair,-tag,return) ; \
|
||||
$(call OptionPair,-tag,throws) ; \
|
||||
$(call OptionPair,-tag,since) ; \
|
||||
$(call OptionPair,-tag,version) ; \
|
||||
$(call OptionPair,-tag,serialData) ; \
|
||||
$(call OptionPair,-tag,factory) ; \
|
||||
$(call OptionPair,-tag,see) ; \
|
||||
$(call OptionPair,-tag,$(TAG_JLS)) ; \
|
||||
$(call OptionOnly,-splitIndex) ; \
|
||||
$(call OptionPair,-overview,$(COREAPI_OVERVIEW)) ; \
|
||||
$(call OptionPair,-doctitle,$(COREAPI_DOCTITLE)) ; \
|
||||
@ -441,7 +462,8 @@ $(DOCLETAPI_INDEX_FILE): $(DOCLETAPI_OPTIONS_FILE) $(DOCLETAPI_PACKAGES_FILE) $(
|
||||
# Create file with javadoc options in it
|
||||
$(DOCLETAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -498,7 +520,8 @@ $(TAGLETAPI_INDEX_FILE): $(TAGLETAPI_OPTIONS_FILE) $(TAGLETAPI_PACKAGES_FILE) $(
|
||||
# Create file with javadoc options in it
|
||||
$(TAGLETAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -550,7 +573,8 @@ $(DOMAPI_INDEX_FILE): $(DOMAPI_OPTIONS_FILE) $(DOMAPI_PACKAGES_FILE) $(COREAPI_I
|
||||
# Create file with javadoc options in it
|
||||
$(DOMAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -613,7 +637,8 @@ $(JDI_INDEX_FILE): $(JDI_OPTIONS_FILE) $(JDI_PACKAGES_FILE) $(COREAPI_INDEX_FILE
|
||||
# Create file with javadoc options in it
|
||||
$(JDI_OPTIONS_FILE): $(JDI_OVERVIEW)
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -700,7 +725,8 @@ $(JAAS_INDEX_FILE): $(JAAS_OPTIONS_FILE) $(JAAS_PACKAGES_FILE) $(COREAPI_INDEX_F
|
||||
# Create file with javadoc options in it
|
||||
$(JAAS_OPTIONS_FILE): $(JAAS_OVERVIEW)
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -753,7 +779,8 @@ $(JGSS_INDEX_FILE): $(JGSS_OPTIONS_FILE) $(JGSS_PACKAGES_FILE) $(COREAPI_INDEX_F
|
||||
# Create file with javadoc options in it
|
||||
$(JGSS_OPTIONS_FILE): $(JGSS_OVERVIEW)
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -806,7 +833,8 @@ $(SMARTCARDIO_INDEX_FILE): $(SMARTCARDIO_OPTIONS_FILE) $(SMARTCARDIO_PACKAGES_FI
|
||||
# Create file with javadoc options in it
|
||||
$(SMARTCARDIO_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -857,7 +885,8 @@ $(HTTPSERVER_INDEX_HTML): $(HTTPSERVER_OPTIONS_FILE) $(HTTPSERVER_PACKAGES_FILE)
|
||||
# Create file with javadoc options in it
|
||||
$(HTTPSERVER_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -917,7 +946,8 @@ $(MGMT_INDEX_FILE): $(MGMT_OPTIONS_FILE) $(MGMT_PACKAGES_FILE) $(COREAPI_INDEX_F
|
||||
# Create file with javadoc options in it
|
||||
$(MGMT_OPTIONS_FILE): $(MGMT_OVERVIEW)
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -969,7 +999,8 @@ $(ATTACH_INDEX_HTML): $(ATTACH_OPTIONS_FILE) $(ATTACH_PACKAGES_FILE) $(COREAPI_I
|
||||
# Create file with javadoc options in it
|
||||
$(ATTACH_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -1020,7 +1051,8 @@ $(JCONSOLE_INDEX_HTML): $(JCONSOLE_OPTIONS_FILE) $(JCONSOLE_PACKAGES_FILE) $(COR
|
||||
# Create file with javadoc options in it
|
||||
$(JCONSOLE_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -1073,14 +1105,14 @@ $(TREEAPI_INDEX_HTML): $(TREEAPI_OPTIONS_FILE) $(TREEAPI_PACKAGES_FILE) $(COREAP
|
||||
# Create file with javadoc options in it
|
||||
$(TREEAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:all) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
$(call OptionPair,-doctitle,$(TREEAPI_DOCTITLE)) ; \
|
||||
$(call OptionPair,-windowtitle,$(TREEAPI_WINDOWTITLE) $(DRAFT_WINTITLE)); \
|
||||
$(call OptionPair,-header,$(TREEAPI_HEADER)$(DRAFT_HEADER)) ; \
|
||||
$(call OptionPair,-tag,$(TAG_JLS)) ; \
|
||||
$(call OptionPair,-bottom,$(TREEAPI_BOTTOM)$(DRAFT_BOTTOM)) ; \
|
||||
$(call OptionTrip,-group,$(TREEAPI_GROUPNAME),$(TREEAPI_REGEXP)); \
|
||||
$(call OptionTrip,-linkoffline,$(TREEAPI2COREAPI),$(COREAPI_DOCSDIR)/); \
|
||||
@ -1125,7 +1157,8 @@ $(SCTPAPI_INDEX_HTML): $(SCTPAPI_OPTIONS_FILE) $(SCTPAPI_PACKAGES_FILE) $(COREAP
|
||||
# Create file with javadoc options in it
|
||||
$(SCTPAPI_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
@ -1176,7 +1209,8 @@ $(JDKNET_INDEX_HTML): $(JDKNET_OPTIONS_FILE) $(JDKNET_PACKAGES_FILE) $(COREAPI_I
|
||||
# Create file with javadoc options in it
|
||||
$(JDKNET_OPTIONS_FILE):
|
||||
$(prep-target)
|
||||
@($(call OptionOnly,$(COMMON_JAVADOCFLAGS)) ; \
|
||||
@($(call COMMON_JAVADOCFLAGS) ; \
|
||||
$(call COMMON_JAVADOCTAGS) ; \
|
||||
$(call OptionOnly,-Xdoclint:none) ; \
|
||||
$(call OptionPair,-sourcepath,$(RELEASEDOCS_SOURCEPATH)) ; \
|
||||
$(call OptionPair,-encoding,ascii) ; \
|
||||
|
@ -460,19 +460,23 @@ my.make.rule.test.targets.hotspot.internalvmtests= \
|
||||
windows_i586_6.1-fastdebug-c2-hotspot_internalvmtests, \
|
||||
windows_x64_6.1-fastdebug-c2-hotspot_internalvmtests
|
||||
|
||||
my.make.rule.test.targets.hotspot.wbapitests= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_i586_2.6-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
windows_i586_6.1-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-hotspot_wbapitest, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-hotspot_wbapitest, \
|
||||
windows_i586_6.1-{product|fastdebug}-c1-hotspot_wbapitest
|
||||
my.make.rule.test.targets.hotspot.reg.group= \
|
||||
solaris_sparcv9_5.11-{product|fastdebug}-c2-GROUP, \
|
||||
solaris_x64_5.11-{product|fastdebug}-c2-GROUP, \
|
||||
linux_i586_2.6-{product|fastdebug}-c2-GROUP, \
|
||||
linux_x64_2.6-{product|fastdebug}-c2-GROUP, \
|
||||
windows_i586_6.1-{product|fastdebug}-c2-GROUP, \
|
||||
windows_x64_6.1-{product|fastdebug}-c2-GROUP, \
|
||||
linux_i586_2.6-{product|fastdebug}-c1-GROUP, \
|
||||
windows_i586_6.1-{product|fastdebug}-c1-GROUP
|
||||
|
||||
my.make.rule.test.targets.hotspot= \
|
||||
${my.make.rule.test.targets.hotspot.clienttests}, \
|
||||
${my.make.rule.test.targets.hotspot.servertests}, \
|
||||
${my.make.rule.test.targets.hotspot.internalvmtests}, \
|
||||
${my.make.rule.test.targets.hotspot.wbapitests}, \
|
||||
my.make.rule.test.targets.hotspot= \
|
||||
${my.make.rule.test.targets.hotspot.clienttests}, \
|
||||
${my.make.rule.test.targets.hotspot.servertests}, \
|
||||
${my.make.rule.test.targets.hotspot.internalvmtests}, \
|
||||
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_wbapitest}, \
|
||||
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_compiler}, \
|
||||
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_gc}, \
|
||||
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_runtime}, \
|
||||
${my.make.rule.test.targets.hotspot.reg.group:GROUP=hotspot_serviceability}, \
|
||||
${my.additional.make.rule.test.targets.hotspot}
|
||||
|
Loading…
Reference in New Issue
Block a user