Makefile revision 5
2867N/A#
2867N/A# Copyright 1995-2007 Sun Microsystems, Inc. All Rights Reserved.
2867N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2867N/A#
2867N/A# This code is free software; you can redistribute it and/or modify it
2867N/A# under the terms of the GNU General Public License version 2 only, as
2867N/A# published by the Free Software Foundation. Sun designates this
2867N/A# particular file as subject to the "Classpath" exception as provided
2867N/A# by Sun in the LICENSE file that accompanied this code.
2867N/A#
2867N/A# This code is distributed in the hope that it will be useful, but WITHOUT
2867N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2867N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2867N/A# version 2 for more details (a copy is included in the LICENSE file that
2867N/A# accompanied this code).
2867N/A#
2867N/A# You should have received a copy of the GNU General Public License version
2867N/A# 2 along with this work; if not, write to the Free Software Foundation,
2867N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2867N/A#
2867N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
2867N/A# CA 95054 USA or visit www.sun.com if you need additional information or
2867N/A# have any questions.
2867N/A#
2867N/A
2867N/ABUILD_PARENT_DIRECTORY=.
2867N/A
2867N/Aifndef TOPDIR
2867N/A TOPDIR:=$(shell \
2867N/A if [ -r ./j2se/make/Makefile -o -r ./jdk/make/Makefile ]; then \
2867N/A echo "."; \
2867N/A else \
2867N/A echo "../.."; \
2867N/A fi)
2867N/Aendif
2867N/A
2867N/Aifndef CONTROL_TOPDIR
2867N/A CONTROL_TOPDIR=$(TOPDIR)/control
2867N/A CONTROL_TOPDIR:=$(shell \
2867N/A if [ -r $(TOPDIR)/control/make/Makefile ]; then \
2867N/A echo "$(TOPDIR)/control"; \
2867N/A else \
2867N/A echo "$(TOPDIR)"; \
2867N/A fi)
2867N/Aendif
2867N/A
2867N/A# Openjdk sources (only used if SKIP_OPENJDK_BUILD!=true)
2867N/AOPENJDK_SOURCETREE=$(TOPDIR)/openjdk
2867N/AOPENJDK_BUILDDIR:=$(shell \
2867N/A if [ -r $(OPENJDK_SOURCETREE)/control/make/Makefile ]; then \
2867N/A echo "$(OPENJDK_SOURCETREE)/control/make"; \
2867N/A elif [ -r $(OPENJDK_SOURCETREE)/Makefile ]; then \
2867N/A echo "$(OPENJDK_SOURCETREE)"; \
2867N/A else \
2867N/A echo "."; \
2867N/A fi)
2867N/A
2867N/Aifndef JDK_TOPDIR
2867N/A JDK_TOPDIR=$(TOPDIR)/jdk
2867N/Aendif
2867N/Aifndef JDK_MAKE_SHARED_DIR
2867N/A JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
2867N/Aendif
2867N/A
2867N/Ainclude $(JDK_MAKE_SHARED_DIR)/Defs-control.gmk
2867N/A
2867N/Ainclude ./make/Defs-internal.gmk
2867N/A
2867N/Aall::
2867N/A @$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: `$(DATE) '+%y-%m-%d %H:%M'`
2867N/A $(MKDIR) -p $(OUTPUTDIR)
2867N/A
2867N/A# Rules for sanity checks
2867N/Ainclude ./make/sanity-rules.gmk
2867N/A
2867N/Adev : dev-build
2867N/A
2867N/Adev-build:
2867N/A $(MAKE) DEV_ONLY=true all
2867N/Adev-sanity:
2867N/A $(MAKE) DEV_ONLY=true sanity
2867N/Adev-clobber:
2867N/A $(MAKE) DEV_ONLY=true clobber
2867N/A
2867N/A# Rules for various components
2867N/Ainclude ./make/hotspot-rules.gmk
2867N/Ainclude ./make/langtools-rules.gmk
2867N/Ainclude ./make/corba-rules.gmk
2867N/Ainclude ./make/jaxp-rules.gmk
2867N/Ainclude ./make/jaxws-rules.gmk
2867N/Ainclude ./make/jdk-rules.gmk
2867N/Ainclude ./make/install-rules.gmk
2867N/Ainclude ./make/sponsors-rules.gmk
2867N/Ainclude ./make/deploy-rules.gmk
2867N/A
2867N/Aall:: setup build
2867N/A
2867N/Asetup: openjdk_check
2867N/A $(MKDIR) -p $(OUTPUTDIR)/j2sdk-image
2867N/A
2867N/A# Check on whether we really can build the openjdk, need source etc.
2867N/Aopenjdk_check: FRC
2867N/Aifneq ($(SKIP_OPENJDK_BUILD), true)
2867N/A @$(ECHO) " "
2867N/A @$(ECHO) "================================================="
2867N/A @if [ ! -r $(OPENJDK_BUILDDIR)/Makefile ] ; then \
2867N/A $(ECHO) "ERROR: No openjdk source tree available at: $(OPENJDK_BUILDDIR)"; \
2867N/A exit 1; \
2867N/A else \
2867N/A $(ECHO) "OpenJDK will be built after JDK is built"; \
2867N/A $(ECHO) " OPENJDK_BUILDDIR=$(OPENJDK_BUILDDIR)"; \
2867N/A fi
2867N/A @$(ECHO) "================================================="
2867N/A @$(ECHO) " "
2867N/Aendif
2867N/A
2867N/Abuild:: sanity
2867N/A
2867N/Aclobber::
2867N/A
2867N/Aifeq ($(BUILD_LANGTOOLS), true)
2867N/A build:: langtools
2867N/A clobber:: langtools-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_CORBA), true)
2867N/A build:: corba
2867N/A clobber:: corba-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_JAXP), true)
2867N/A build:: jaxp
2867N/A clobber:: jaxp-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_JAXWS), true)
2867N/A build:: jaxws
2867N/A clobber:: jaxws-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_HOTSPOT), true)
2867N/A build:: $(HOTSPOT)
2867N/A clobber:: hotspot-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_JDK), true)
2867N/A build:: $(JDK_JAVA_EXE)
2867N/A clobber:: jdk-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_DEPLOY), true)
2867N/A build:: $(DEPLOY)
2867N/A clobber:: deploy-clobber
2867N/Aendif
2867N/A
2867N/A#
2867N/A# Generic debug build, fastdebug or debug. Needs special handling.
2867N/A# Note that debug builds do NOT do INSTALL steps, but must be done
2867N/A# after the product build and before the INSTALL step of the product build.
2867N/A#
2867N/A# DEBUG_NAME is fastdebug or debug
2867N/A# ALT_OUTPUTDIR is changed to have -debug or -fastdebug suffix
2867N/A# The resulting j2sdk-image is used by the install makefiles to create a
2867N/A# debug install bundle jdk-*-debug-** bundle (tar or zip)
2867N/A# which will install in the debug or fastdebug subdirectory of the
2867N/A# normal product install area.
2867N/A# The install process needs to know what the DEBUG_NAME is, so
2867N/A# look for INSTALL_DEBUG_NAME in the install rules.
2867N/A#
2867N/A
2867N/ACOMMON_DEBUG_FLAGS= \
2867N/A DEBUG_NAME=$(DEBUG_NAME) \
2867N/A ALT_OUTPUTDIR=$(ABS_OUTPUTDIR)-$(DEBUG_NAME) \
2872N/A NO_DOCS=true
2872N/A
2872N/Aproduct_build: setup
2872N/A @$(ECHO) $@ build started: `$(DATE) '+%y-%m-%d %H:%M'`
2872N/A $(MAKE) SKIP_FASTDEBUG_BUILD=true SKIP_DEBUG_BUILD=true all
2867N/A @$(ECHO) $@ build finished: `$(DATE) '+%y-%m-%d %H:%M'`
2867N/A
2867N/Ageneric_debug_build:
2867N/A @$(ECHO) $@ build started: `$(DATE) '+%y-%m-%d %H:%M'`
2867N/A $(MAKE) $(COMMON_DEBUG_FLAGS) setup build
2867N/A @$(ECHO) $@ build finished: `$(DATE) '+%y-%m-%d %H:%M'`
2867N/A
2867N/Adebug_build: setup
2867N/A $(MAKE) DEBUG_NAME=debug generic_debug_build
2867N/A
2867N/Afastdebug_build: setup
2867N/A $(MAKE) DEBUG_NAME=fastdebug generic_debug_build
2867N/A
2867N/Aifeq ($(SKIP_FASTDEBUG_BUILD), false)
2867N/A all:: fastdebug_build
2867N/Aendif
2867N/A
2867N/Aifeq ($(SKIP_DEBUG_BUILD), false)
2867N/A all:: debug_build
2872N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_JDK), true)
2867N/A ifeq ($(BUNDLE_RULES_AVAILABLE), true)
2867N/A all:: openjdk-binary-plugs-bundles
2867N/A endif
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_INSTALL), true)
2867N/A all :: $(INSTALL)
2867N/A clobber:: install-clobber
2867N/Aendif
2867N/A
2867N/Aifeq ($(BUILD_SPONSORS), true)
2867N/A all :: $(SPONSORS)
2867N/A clobber:: sponsors-clobber
2872N/Aendif
2872N/A
2872N/Aifneq ($(SKIP_COMPARE_IMAGES), true)
2872N/A all :: compare-image
2872N/Aendif
2872N/A
2872N/Aifneq ($(SKIP_OPENJDK_BUILD), true)
2872N/A all :: openjdk_build
2872N/Aendif
2872N/A
2872N/A# If we have bundle rules, we have a chance here to do a complete cycle
2872N/A# build, of production and open build.
2872N/A# FIXUP: We should create the openjdk source bundle and build that?
2872N/A# But how do we reliable create or get at a formal openjdk source tree?
2872N/A# The one we have needs to be trimmed of built bits and closed dirs.
2872N/A# The repositories might not be available.
2872N/A# The openjdk source bundle is probably not available.
2872N/A
2867N/Aifneq ($(SKIP_OPENJDK_BUILD), true)
2867N/A ifeq ($(BUILD_JDK), true)
2867N/A ifeq ($(BUNDLE_RULES_AVAILABLE), true)
2867N/A
2867N/AOPENJDK_PLUGS=$(ABS_OUTPUTDIR)/$(OPENJDK_BINARY_PLUGS_INAME)
2867N/AOPENJDK_OUTPUTDIR=$(ABS_OUTPUTDIR)/open-output
2867N/AOPENJDK_BUILD_NAME \
2867N/A = openjdk-$(JDK_MINOR_VERSION)-$(BUILD_NUMBER)-$(PLATFORM)-$(ARCH)-$(BUNDLE_DATE)
2867N/AOPENJDK_BUILD_BINARY_ZIP=$(ABS_BIN_BUNDLEDIR)/$(OPENJDK_BUILD_NAME).zip
2867N/ABUILT_IMAGE=$(ABS_OUTPUTDIR)/j2sdk-image
2867N/Aifeq ($(PLATFORM)$(ARCH_DATA_MODEL),solaris64)
2867N/A OPENJDK_BOOTDIR=$(BOOTDIR)
2867N/A OPENJDK_IMPORTJDK=$(JDK_IMPORT_PATH)
2867N/Aelse
2867N/A OPENJDK_BOOTDIR=$(BUILT_IMAGE)
2867N/A OPENJDK_IMPORTJDK=$(BUILT_IMAGE)
2867N/Aendif
2867N/A
2867N/Aopenjdk_build:
2867N/A @$(ECHO) " "
2867N/A @$(ECHO) "================================================="
2867N/A @$(ECHO) "Starting openjdk build"
2867N/A @$(ECHO) " Using: ALT_JDK_DEVTOOLS_DIR=$(JDK_DEVTOOLS_DIR)"
2867N/A @$(ECHO) "================================================="
2867N/A @$(ECHO) " "
2867N/A $(RM) -r $(OPENJDK_OUTPUTDIR)
2867N/A $(MKDIR) -p $(OPENJDK_OUTPUTDIR)
2867N/A ($(CD) $(OPENJDK_BUILDDIR) && $(MAKE) \
2867N/A OPENJDK=true \
2867N/A ALT_JDK_DEVTOOLS_DIR=$(JDK_DEVTOOLS_DIR) \
2867N/A ALT_OUTPUTDIR=$(OPENJDK_OUTPUTDIR) \
2867N/A ALT_BINARY_PLUGS_PATH=$(OPENJDK_PLUGS) \
2867N/A ALT_BOOTDIR=$(OPENJDK_BOOTDIR) \
2867N/A ALT_JDK_IMPORT_PATH=$(OPENJDK_IMPORTJDK) \
2867N/A product_build )
2867N/A $(RM) $(OPENJDK_BUILD_BINARY_ZIP)
2867N/A ( $(CD) $(OPENJDK_OUTPUTDIR)/j2sdk-image && \
2867N/A $(ZIPEXE) -q -r $(OPENJDK_BUILD_BINARY_ZIP) .)
2867N/A $(RM) -r $(OPENJDK_OUTPUTDIR)
2867N/A @$(ECHO) " "
2867N/A @$(ECHO) "================================================="
2867N/A @$(ECHO) "Finished openjdk build"
2867N/A @$(ECHO) " Binary Bundle: $(OPENJDK_BUILD_BINARY_ZIP)"
2867N/A @$(ECHO) "================================================="
2867N/A @$(ECHO) " "
2867N/A
2867N/A endif
2867N/A endif
2867N/Aendif
2867N/A
2867N/Aclobber::
2867N/A $(RM) -r $(OUTPUTDIR)/*
2953N/A $(RM) -r $(OUTPUTDIR)-debug/*
2867N/A $(RM) -r $(OUTPUTDIR)-fastdebug/*
2867N/A -($(RMDIR) -p $(OUTPUTDIR) > $(DEV_NULL) 2>&1; $(TRUE))
2867N/A
2867N/Aclean: clobber
2867N/A
2867N/Aall::
2867N/A @$(ECHO) Control build finished: `$(DATE) '+%y-%m-%d %H:%M'`
2867N/A
2867N/A#
2867N/A# Quick jdk verification build
2867N/A#
2867N/Ajdk_only:
2867N/A $(MAKE) SKIP_FASTDEBUG_BUILD=true BUILD_HOTSPOT=false all
2867N/A
2867N/A
2867N/A#
2867N/A# Quick jdk verification fastdebug build
2867N/A#
2867N/Ajdk_fastdebug_only:
2867N/A $(MAKE) DEBUG_NAME=fastdebug BUILD_HOTSPOT=false BUILD_DEPLOY=false \
2867N/A BUILD_INSTALL=false BUILD_SPONSORS=false generic_debug_build
2867N/A
2867N/A#
2867N/A# Quick deploy verification fastdebug build
2867N/A#
2867N/Adeploy_fastdebug_only:
2867N/A $(MAKE) \
2867N/A DEBUG_NAME=fastdebug \
2867N/A BUILD_HOTSPOT=false \
2867N/A BUILD_JDK=false \
2867N/A BUILD_LANGTOOLS=false \
2867N/A BUILD_CORBA=false \
2867N/A BUILD_JAXP=false \
2867N/A BUILD_JAXWS=false \
2867N/A BUILD_INSTALL=false \
2867N/A BUILD_SPONSORS=false \
2867N/A generic_debug_build
2867N/A
2867N/A#
2867N/A# Product build (skip debug builds)
2867N/A#
2867N/Aproduct_only:
2867N/A $(MAKE) SKIP_FASTDEBUG_BUILD=true all
2867N/A
2867N/A#
2867N/A# Check target
2867N/A#
2867N/A
2867N/Acheck: variable_check
2867N/A
2867N/A#
2867N/A# Help target
2867N/A#
2867N/Ahelp: intro_help target_help variable_help notes_help examples_help
2867N/A
2867N/A# Intro help message
2867N/Aintro_help:
2867N/A @$(ECHO) "\
2867N/AMakefile for the JDK builds (all the JDK). \n\
2867N/A"
2867N/A
2867N/A# Target help
2867N/Atarget_help:
2867N/A @$(ECHO) "\
2867N/A--- Common Targets --- \n\
2867N/Aall -- build the core JDK (default target) \n\
2867N/Ahelp -- Print out help information \n\
2867N/Acheck -- Check make variable values for correctness \n\
2867N/Asanity -- Perform detailed sanity checks on system and settings \n\
2867N/Afastdebug_build -- build the core JDK in 'fastdebug' mode (-g -O) \n\
2867N/Adebug_build -- build the core JDK in 'debug' mode (-g) \n\
2867N/Aclean -- remove all built and imported files \n\
2867N/Aclobber -- same as clean \n\
2867N/A"
2867N/A
2867N/A# Variable help (only common ones used by this Makefile)
2867N/Avariable_help: variable_help_intro variable_list variable_help_end
2867N/Avariable_help_intro:
2867N/A @$(ECHO) "--- Common Variables ---"
2867N/Avariable_help_end:
2867N/A @$(ECHO) " "
2867N/A
2867N/A# One line descriptions for the variables
2867N/AOUTPUTDIR.desc = Output directory
2867N/APARALLEL_COMPILE_JOBS.desc = Solaris/Linux parallel compile run count
2867N/ASLASH_JAVA.desc = Root of all build tools, e.g. /java or J:
2867N/ABOOTDIR.desc = JDK used to boot the build
2867N/AJDK_IMPORT_PATH.desc = JDK used to import components of the build
2867N/ACOMPILER_PATH.desc = Compiler install directory
2867N/ACACERTS_FILE.desc = Location of certificates file
2867N/ADEVTOOLS_PATH.desc = Directory containing zip and gnumake
2867N/ACUPS_HEADERS_PATH.desc = Include directory location for CUPS header files
2867N/ADXSDK_PATH.desc = Root directory of DirectX SDK
2867N/AMSDEVTOOLS_PATH.desc = Root directory of VC++ tools (e.g. rc.exe)
2867N/AMSVCRT_DLL_PATH.desc = Directory containing mscvrt.dll
2867N/A
2867N/A# Make variables to print out (description and value)
2867N/AVARIABLE_PRINTVAL_LIST += \
2867N/A OUTPUTDIR \
2867N/A PARALLEL_COMPILE_JOBS \
2867N/A SLASH_JAVA \
2867N/A BOOTDIR \
2867N/A JDK_IMPORT_PATH \
2867N/A COMPILER_PATH \
2867N/A CACERTS_FILE \
2867N/A DEVTOOLS_PATH
2867N/A
2867N/A# Make variables that should refer to directories that exist
2867N/AVARIABLE_CHECKDIR_LIST += \
2867N/A SLASH_JAVA \
2867N/A BOOTDIR \
2867N/A JDK_IMPORT_PATH \
2867N/A COMPILER_PATH \
2867N/A DEVTOOLS_PATH
2867N/A
2867N/A# Make variables that should refer to files that exist
2867N/AVARIABLE_CHECKFIL_LIST += \
2867N/A CACERTS_FILE
2867N/A
2867N/A# Some are windows specific
2867N/Aifeq ($(PLATFORM), windows)
2867N/A
2867N/AVARIABLE_PRINTVAL_LIST += \
2867N/A DXSDK_PATH \
2867N/A MSDEVTOOLS_PATH \
2867N/A MSVCRT_DLL_PATH
2867N/A
2867N/AVARIABLE_CHECKDIR_LIST += \
2867N/A DXSDK_PATH \
2867N/A MSDEVTOOLS_PATH \
2867N/A MSVCRT_DLL_PATH
2867N/A
2867N/Aendif
2867N/A
2867N/A# For pattern rules below, so all are treated the same
2867N/ADO_PRINTVAL_LIST=$(VARIABLE_PRINTVAL_LIST:%=%.printval)
2867N/ADO_CHECKDIR_LIST=$(VARIABLE_CHECKDIR_LIST:%=%.checkdir)
2867N/ADO_CHECKFIL_LIST=$(VARIABLE_CHECKFIL_LIST:%=%.checkfil)
2867N/A
2867N/A# Complete variable check
2867N/Avariable_check: $(DO_CHECKDIR_LIST) $(DO_CHECKFIL_LIST)
2872N/Avariable_list: $(DO_PRINTVAL_LIST) variable_check
2872N/A
2867N/A# Pattern rule for printing out a variable
2867N/A%.printval:
2867N/A @$(ECHO) " ALT_$* - $($*.desc)"
2867N/A @$(ECHO) " \t $*=$($*)"
2867N/A
2867N/A# Pattern rule for checking to see if a variable with a directory exists
2867N/A%.checkdir:
2867N/A @if [ ! -d $($*) ] ; then \
2867N/A $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
2867N/A fi
2867N/A
2867N/A# Pattern rule for checking to see if a variable with a file exists
2867N/A%.checkfil:
2867N/A @if [ ! -f $($*) ] ; then \
2867N/A $(ECHO) "WARNING: $* does not exist, try $(MAKE) sanity"; \
2867N/A fi
2867N/A
2867N/A# Misc notes on help
2867N/Anotes_help:
2867N/A @$(ECHO) "\
2867N/A--- Notes --- \n\
2867N/A- All builds use same output directory unless overridden with \n\
2867N/A \t ALT_OUTPUTDIR=<dir>, changing from product to fastdebug you may want \n\
2867N/A \t to use the clean target first. \n\
2867N/A- JDK_IMPORT_PATH must refer to a compatible build, not all past promoted \n\
2867N/A \t builds or previous release JDK builds will work. \n\
2867N/A- The fastest builds have been when the sources and the BOOTDIR are on \n\
2867N/A \t local disk. \n\
2867N/A"
2867N/A
2867N/Aexamples_help:
2867N/A @$(ECHO) "\
2867N/A--- Examples --- \n\
2867N/A $(MAKE) fastdebug_build \n\
2867N/A $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
2867N/A $(MAKE) ALT_OUTPUTDIR=/tmp/foobar fastdebug_build \n\
2867N/A $(MAKE) ALT_OUTPUTDIR=/tmp/foobar all \n\
2867N/A $(MAKE) ALT_BOOTDIR=/opt/java/jdk1.5.0 \n\
2867N/A $(MAKE) ALT_JDK_IMPORT_PATH=/opt/java/jdk1.6.0 \n\
2867N/A"
2867N/A
2867N/A################################################################
2867N/A# Source and binary plug bundling
2867N/A################################################################
2867N/Aifeq ($(BUNDLE_RULES_AVAILABLE), true)
2867N/A include $(BUNDLE_RULES)
2867N/Aendif
2867N/A
2867N/A################################################################
2867N/A# Cycle build. Build the jdk, use it to build the jdk again.
2867N/A################################################################
2867N/A
2867N/AABS_BOOTDIR_OUTPUTDIR=$(ABS_OUTPUTDIR)/bootjdk
2867N/A
2867N/Aboot_cycle:
2867N/A $(MAKE) ALT_OUTPUTDIR=$(ABS_BOOTDIR_OUTPUTDIR) product_build
2867N/A $(MAKE) ALT_BOOTDIR=$(ABS_BOOTDIR_OUTPUTDIR)/j2sdk-image product_build
2867N/A
2867N/A################################################################
2867N/A# JPRT rule to build
2867N/A################################################################
2867N/A
2867N/Ainclude ./make/jprt.gmk
2867N/A
2867N/A################################################################
2867N/A# PHONY
2867N/A################################################################
2867N/A
2867N/A.PHONY: all build what clobber insane \
2867N/A fastdebug_build debug_build product_build setup \
2867N/A dev dev-build dev-sanity dev-clobber
2867N/A
2867N/A# FIXUP: Old j2se targets
2867N/Aj2se_fastdebug_only: jdk_fastdebug_only
2867N/Aj2se_only: jdk_only
2867N/A
2867N/A# Force target
2867N/AFRC:
2867N/A
2867N/A