Defs.gmk revision 3142
0N/A#
2362N/A# Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
2362N/A# published by the Free Software Foundation. Oracle designates this
0N/A# particular file as subject to the "Classpath" exception as provided
2362N/A# by Oracle in the LICENSE file that accompanied this code.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
2362N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A# or visit www.oracle.com if you need additional information or have any
2362N/A# questions.
0N/A#
0N/A
0N/A#
0N/A# Common variables used by all the Java makefiles. This file should
0N/A# not contain rules.
0N/A#
0N/A
0N/A# WARNING: This file is shared with other workspaces.
0N/A# So when it includes other files, it must use JDK_TOPDIR.
0N/A#
0N/A
116N/A# Check for strange explicit settings (change to empty or true)
116N/Aifdef OPENJDK
116N/A ifneq ($(OPENJDK),true)
116N/A x:=$(error "OPENJDK (if defined) can only be set to true")
116N/A endif
116N/Aendif
116N/A
0N/A#
0N/A# On Solaris, the 'make' utility from Sun will not work with these makefiles.
0N/A# This little rule is only understood by Sun's make, and is harmless
0N/A# when seen by the GNU make tool. If using Sun's make, this causes the
0N/A# make command to fail.
0N/A#
0N/ASUN_MAKE_TEST:sh = echo "ERROR: PLEASE USE GNU VERSION OF MAKE"; exit 33
0N/A
0N/Aifndef JDK_TOPDIR
9N/A ifdef BUILDDIR
9N/A JDK_TOPDIR=$(BUILDDIR)/..
9N/A else
9N/A JDK_TOPDIR:=$(error "ERROR: Cannot define top of jdk repository")
9N/A endif
9N/Aendif
9N/Aifndef BUILDDIR
9N/A # Hack, due to deploy repository using this file.
9N/A BUILDDIR=$(JDK_TOPDIR)/make
0N/Aendif
0N/Aifndef JDK_MAKE_SHARED_DIR
0N/A JDK_MAKE_SHARED_DIR=$(JDK_TOPDIR)/make/common/shared
0N/Aendif
0N/A
0N/Ainclude $(JDK_MAKE_SHARED_DIR)/Platform.gmk
0N/A
0N/ATOPDIR=$(BUILDDIR)/..
0N/A
0N/Ainclude $(JDK_TOPDIR)/make/common/CancelImplicits.gmk
0N/A
0N/A# Historically PLATFORM_SRC used to be src/$(PLATFORM), but we switched it to
0N/A# src/solaris so if you want to build on Linux you didn't need a src/linux
0N/A# directory. In an ideal world it would be called src/genunix but we are not
0N/A# there yet.
0N/A#
0N/Aifndef SHARE_SRC
7N/A SHARE_SRC = $(BUILDDIR)/../src/share
0N/Aendif
0N/A
0N/A# Files that cannot be included in the OpenJDK distribution are
0N/A# collected under a parent directory which contains just those files.
0N/Aifndef CLOSED_SRC
7N/A CLOSED_SRC = $(BUILDDIR)/../src/closed
0N/Aendif
0N/A
3142N/A# If CLOSE_SRC_INCLUDED isn't set to true, check if there's any
3142N/A# closed directory.
3142N/Aifneq ($(CLOSED_SRC_INCLUDED), true)
3142N/A CLOSED_SRC_INCLUDED := $(shell \
3142N/A if [ -d $(CLOSED_SRC) ] ; then \
3142N/A echo true; \
3142N/A else \
3142N/A echo false; \
3142N/A fi)
3142N/Aendif
3142N/A
3142N/A# Set OPENJDK based on CLOSED_SRC_INCLUDED
3142N/Aifeq ($(CLOSED_SRC_INCLUDED), false)
0N/A OPENJDK = true
0N/Aendif
0N/A
0N/A# Define where closed directories are
0N/Aifdef OPENJDK
0N/A CLOSED_SRC =
0N/A CLOSED_SHARE_SRC =
0N/Aelse
0N/A ifndef CLOSED_SHARE_SRC
0N/A CLOSED_SHARE_SRC = $(CLOSED_SRC)/share
0N/A endif
0N/Aendif
0N/A
0N/A# If OPENJDK is defined, we may still need to use some native libraries that
0N/A# exist only as part of the closed source. If the closed sources are not
0N/A# available, the libraries must have been pre-built. Since these libraries
0N/A# and the JDK internal interfaces to these are reasonably stable this is not
0N/A# a significant problem. But we do need to provide a way to locate them,
0N/A# including a way to point to a new one when there have been changes.
0N/A#
0N/A# If you have a formal binary plugs download, set ALT_BINARY_PLUGS_PATH
0N/A# to the location.
0N/A# (Optionally you can set ALT_CLOSED_JDK_IMPORT_PATH to point to the latest
0N/A# build JDK, or last promotion for this JDK version, but will not work
0N/A# on windows).
0N/A#
0N/A# As the OPENJDK is built, the binary plugs are used instead of building the
0N/A# libraries.
0N/A# Individual Makefiles that specify USE_BINARY_PLUG_LIBRARY, will get
0N/A# the binary plug copy (or a copy from a built JDK).
0N/A#
0N/A# See common/internal/BinaryPlugs.gmk for more information.
0N/A#
0N/A# Usage notes:
0N/A#
0N/A# ALT_BINARY_PLUGS_JARFILE is probably rarely needed. It can be used
0N/A# to identify the exact jar file to be used for all closed classes..
0N/A#
0N/A# ALT_BINARY_PLUGS_PATH points to a directory containing precisely the
0N/A# binaries needed to build.
0N/A#
0N/A# ALT_BUILD_BINARY_PLUGS_PATH points to a directory containing binary plug dirs
0N/A# multiple architectures named using the standard conventions
0N/A# This is useful for build scripts that need to build multiple architectures
0N/A# of the OpenJDK.
0N/A#
0N/A# ALT_CLOSED_JDK_IMPORT_PATH points to the top-level of a specific platform
0N/A# JDK image.
0N/A#
0N/A# The precedence is that
0N/A# 1. ALT_BINARY_PLUGS_JARFILE overrides any other location of the classes
0N/A# 2. ALT_BINARY_PLUGS_PATH overrides all locations of classes and libraries
0N/A# 3. ALT_BUILD_BINARY_PLUGS_PATH is used to find a ALT_BINARY_PLUGS_PATH
0N/A# 4. ALT_CLOSED_JDK_IMPORT_PATH is used to locate classes and libraries
971N/A# Note: If any of the ALT_ variables are modified here, it is assumed
971N/A# that the build should be done with IMPORT_BINARY_PLUGS=true as
971N/A# well. Otherwise the default will be IMPORT_BINARY_PLUGS=false.
971N/A# Lastly, setting IMPORT_BINARY_PLUGS=false on the command line
971N/A# will override this logic, and plugs will not be imported.
0N/A#
0N/A
0N/A# Always needed, defines the name of the imported/exported jarfile
0N/ABINARY_PLUGS_JARNAME = rt-closed.jar
0N/A
0N/Aifdef OPENJDK
0N/A ifdef ALT_CLOSED_JDK_IMPORT_PATH
0N/A CLOSED_JDK_IMPORT_PATH = $(ALT_CLOSED_JDK_IMPORT_PATH)
0N/A BINARY_PLUGS_PATH = $(CLOSED_JDK_IMPORT_PATH)
0N/A BINARY_PLUGS_JARFILE = $(CLOSED_JDK_IMPORT_PATH)/jre/lib/rt.jar
971N/A IMPORT_BINARY_PLUGS=true
0N/A endif
0N/A ifdef ALT_BUILD_BINARY_PLUGS_PATH
0N/A BUILD_BINARY_PLUGS_PATH = $(ALT_BUILD_BINARY_PLUGS_PATH)
971N/A IMPORT_BINARY_PLUGS=true
0N/A else
0N/A BUILD_BINARY_PLUGS_PATH = $(SLASH_JAVA)/re/jdk/$(JDK_VERSION)/promoted/latest/openjdk/binaryplugs
0N/A endif
0N/A BINARY_PLUGS_PATH = $(BUILD_BINARY_PLUGS_PATH)/$(PLATFORM)-$(ARCH)
0N/A BINARY_PLUGS_JARFILE = $(BINARY_PLUGS_PATH)/jre/lib/$(BINARY_PLUGS_JARNAME)
0N/A ifdef ALT_BINARY_PLUGS_PATH
0N/A BINARY_PLUGS_PATH = $(ALT_BINARY_PLUGS_PATH)
0N/A BINARY_PLUGS_JARFILE = $(BINARY_PLUGS_PATH)/jre/lib/$(BINARY_PLUGS_JARNAME)
971N/A IMPORT_BINARY_PLUGS=true
0N/A endif
0N/A ifdef ALT_BINARY_PLUGS_JARFILE
0N/A BINARY_PLUGS_JARFILE = $(ALT_BINARY_PLUGS_JARFILE)
971N/A IMPORT_BINARY_PLUGS=true
0N/A endif
0N/Aendif # OPENJDK
0N/A
0N/A#
0N/A# Get platform definitions
0N/A#
0N/A
0N/Ainclude $(JDK_TOPDIR)/make/common/Defs-$(PLATFORM).gmk
0N/A
0N/A#
0N/A# Freetype logic is applicable to OpenJDK only
0N/A#
0N/Aifdef OPENJDK
0N/A
0N/A#if we use system lib we do not need to copy it to build tree
0N/AUSING_SYSTEM_FT_LIB=false
0N/A
0N/Aifeq ($(PLATFORM), windows)
0N/A DEVTOOLS_FT_DIR=$(JDK_DEVTOOLS_DIR)/win32/freetype-$(ARCH)
0N/Aendif
0N/Aifeq ($(PLATFORM), linux)
0N/A DEVTOOLS_FT_DIR=$(JDK_DEVTOOLS_DIR)/$(PLATFORM)/freetype-$(ARCH)
0N/Aendif
0N/Aifeq ($(PLATFORM), solaris)
0N/A # historically for Solaris we have slightly different devtools
0N/A # naming conventions
0N/A DEVTOOLS_FT_DIR=$(JDK_DEVTOOLS_DIR)/$(ARCH_FAMILY)/freetype-$(ARCH)
0N/Aendif
0N/A
0N/ADEVTOOLS_FT_DIR_EXISTS = $(shell \
0N/A if [ -f $(DEVTOOLS_FT_DIR)/include/ft2build.h ] ; then \
0N/A echo true; \
0N/A else \
0N/A echo false; \
0N/A fi)
0N/A
0N/A ifdef ALT_FREETYPE_LIB_PATH
0N/A FREETYPE_LIB_PATH = $(ALT_FREETYPE_LIB_PATH)
0N/A else
0N/A ifeq ($(DEVTOOLS_FT_DIR_EXISTS), true)
0N/A FREETYPE_LIB_PATH = $(DEVTOOLS_FT_DIR)/lib
0N/A else
0N/A FREETYPE_LIB_PATH = /usr/lib
0N/A USING_SYSTEM_FT_LIB=true
0N/A endif
0N/A endif
0N/A
0N/A ifdef ALT_FREETYPE_HEADERS_PATH
0N/A FREETYPE_HEADERS_PATH = $(ALT_FREETYPE_HEADERS_PATH)
0N/A else
0N/A ifeq ($(DEVTOOLS_FT_DIR_EXISTS), true)
0N/A FREETYPE_HEADERS_PATH = $(DEVTOOLS_FT_DIR)/include
0N/A else
0N/A FREETYPE_HEADERS_PATH = /usr/include
0N/A endif
0N/A endif
0N/Aendif
0N/A
0N/A#
1592N/A# zlib version
1592N/A#
1592N/AZLIB_VERSION = 1.2.3
1592N/A
1592N/A
1592N/A#
0N/A# Localizations for the different parts of the product beyond English
0N/A#
0N/A
0N/AJRE_LOCALES = de es fr it ja ko sv zh_CN zh_TW zh_HK
0N/APLUGIN_LOCALES = de es fr it ja ko sv zh_CN zh_TW zh_HK
0N/AJDK_LOCALES = ja zh_CN
0N/A
0N/A#
0N/A# A list of locales we support but don't have resource files.
0N/A# This is defined to optimize the search of resource bundles.
0N/A#
0N/AJRE_NONEXIST_LOCALES = en en_US de_DE es_ES fr_FR it_IT ja_JP ko_KR sv_SE zh
0N/A
0N/A#
0N/A# All libraries except libjava and libjvm itself link against libjvm and
0N/A# libjava, the latter for its exported common utilities. libjava only links
0N/A# against libjvm. Programs' makefiles take their own responsibility for
0N/A# adding other libs.
0N/A#
0N/Aifdef PACKAGE
0N/A# put JAVALIB first, but do not lose any platform specific values....
0N/A LDLIBS_COMMON = $(JAVALIB)
0N/Aendif # PACKAGE
0N/A
0N/A#
0N/A# Libraries that must appear ahead of libc.so on the link command line
0N/A#
0N/Aifdef PROGRAM
0N/A
0N/A ifeq ($(PLATFORM), solaris)
0N/A LDLIBS_COMMON = -lthread -ldl
0N/A endif
0N/A
0N/A ifeq ($(PLATFORM), linux)
0N/A LDLIBS_COMMON = -ldl
0N/A endif
0N/A
0N/Aendif # PROGRAM
0N/A
0N/ALDLIBS_COMMON += $(EXTRA_LIBS)
0N/A
0N/A#
0N/A# Default is to build, not import native binaries
0N/A#
0N/Aifndef IMPORT_NATIVE_BINARIES
0N/A IMPORT_NATIVE_BINARIES=false
0N/Aendif
0N/A# If importing libraries in, no incremental builds
0N/Aifeq ($(IMPORT_NATIVE_BINARIES),true)
0N/A INCREMENTAL_BUILD=false
0N/Aendif
0N/A
0N/A# for generated libraries
0N/ALIBDIR = $(OUTPUTDIR)/lib
0N/AABS_LIBDIR = $(ABS_OUTPUTDIR)/lib
0N/A# Optional place to save the windows .lib files
0N/ALIBFILES_DIR = $(OUTPUTDIR)/libfiles
0N/A# for ext jre files
0N/AEXTDIR = $(LIBDIR)/ext
0N/A# for generated include files
0N/AINCLUDEDIR = $(OUTPUTDIR)/include
0N/A# for generated class files
0N/ACLASSBINDIR = $(OUTPUTDIR)/classes
0N/ADEMOCLASSDIR = $(OUTPUTDIR)/democlasses
2096N/A# for modules
2096N/AMODULES_DIR = $(OUTPUTDIR)/modules
2096N/AABS_MODULES_DIR = $(ABS_OUTPUTDIR)/modules
0N/A# for generated tool class files
0N/ABUILDTOOLCLASSDIR = $(OUTPUTDIR)/btclasses
0N/A# for build tool jar files
0N/ABUILDTOOLJARDIR = $(OUTPUTDIR)/btjars
0N/AABS_BUILDTOOLJARDIR = $(ABS_OUTPUTDIR)/btjars
165N/A# for generated tool class files
165N/ABUILDTOOLBINDIR = $(OUTPUTDIR)/btbins
0N/A# for generated java source files
0N/AGENSRCDIR = $(OUTPUTDIR)/gensrc
0N/A# for generated C source files (not javah)
0N/AGENNATIVESRCDIR = $(OUTPUTDIR)/gennativesrc
0N/A# for imported source files
0N/AIMPORTSRCDIR = $(OUTPUTDIR)/impsrc
0N/A# for imported documents
0N/AIMPORTDOCDIR = $(OUTPUTDIR)/impdoc
0N/A# for generated demo
0N/ADEMODIR = $(OUTPUTDIR)/demo
0N/A# for sample code
0N/ASAMPLEDIR = $(OUTPUTDIR)/sample
0N/A# for generated documentation
0N/ADOCSDIR = $(OUTPUTDIR)/docs$(DOCSDIRSUFFIX)
0N/ADOCSDIRSUFFIX =
0N/A
0N/A# The MESSAGE, WARNING and ERROR files are used to store sanityck and
2812N/A# warnings and errors.
0N/Aifndef ERROR_FILE
0N/A ERROR_FILE = $(OUTPUTDIR)/sanityCheckErrors.txt
0N/Aendif
0N/Aifndef WARNING_FILE
0N/A WARNING_FILE = $(OUTPUTDIR)/sanityCheckWarnings.txt
0N/Aendif
0N/Aifndef MESSAGE_FILE
0N/A MESSAGE_FILE = $(OUTPUTDIR)/sanityCheckMessages.txt
0N/Aendif
0N/A
0N/AJDK_IMAGE_DIR = $(ABS_OUTPUTDIR)/j2sdk-image
0N/AJRE_IMAGE_DIR = $(ABS_OUTPUTDIR)/j2re-image
0N/A
0N/A#where the demo source can be found
0N/ADEMOSRCDIR = $(SHARE_SRC)/demo
0N/A
0N/A# An attempt is made to generate unique enough directories for the
0N/A# generated files to not have name collisisons. Most build units
0N/A# defines PRODUCT (except Release.gmk), but then they may or may
0N/A# not define PACKAGE, THREADIR (only HPI uses this), PROGRAM, and
0N/A# LIBRARY. This code chunk attempts to generate a unique
0N/A# OBJDIR/CLASSHDRDIR for each build unit based on which of those
0N/A# values are set within each build unit.
0N/A
0N/AUNIQUE_LOCATION_STRING = tmp
0N/A
0N/Aifneq ($(PRODUCT),)
0N/A UNIQUE_LOCATION_STRING += /$(PRODUCT)
0N/Aendif
0N/A
0N/Aifneq ($(PACKAGE),)
0N/A UNIQUE_LOCATION_STRING += /$(PACKAGE)
0N/Aendif
0N/A
0N/Aifneq ($(PROGRAM),)
0N/A UNIQUE_LOCATION_STRING += /$(PROGRAM)
0N/Aendif
0N/A
0N/Aifneq ($(LIBRARY),)
0N/A ifneq ($(LIBRARY_OUTPUT),)
0N/A UNIQUE_LOCATION_STRING += /$(LIBRARY_OUTPUT)
0N/A else
0N/A UNIQUE_LOCATION_STRING += /$(LIBRARY)
0N/A endif
0N/Aendif
0N/A
0N/Aifneq ($(THREADDIR),)
0N/A UNIQUE_LOCATION_STRING += /$(THREADDIR)
0N/Aendif
0N/A
2080N/A#
2080N/A# Build units may or may not define MODULE. Default to "other".
2080N/A#
2096N/A# MODULE variable defines the lowest-level module name that
2096N/A# might or might not be the name of the modules created in
2096N/A# the modules build (see make/modules/modules.config and
2096N/A# modules.group).
2096N/A#
2096N/AMODULES_TEMPDIR = $(OUTPUTDIR)/tmp/modules
2096N/AABS_MODULES_TEMPDIR = $(ABS_OUTPUTDIR)/tmp/modules
2096N/A
2080N/Aifndef MODULE
2080N/A MODULE = other
2080N/Aendif
2096N/Aoverride MODULE_DEST_DIR = $(MODULES_TEMPDIR)/$(MODULE)
2080N/A
0N/A# the use of += above makes a space separated list which we need to
0N/A# remove for filespecs.
0N/A#
0N/ANULLSTRING :=
0N/AONESPACE := $(NULLSTRING) # space before this comment is required.
0N/AUNIQUE_PATH = $(subst $(ONESPACE),,$(UNIQUE_LOCATION_STRING))
0N/A
0N/A# TEMPDIR is a unique general purpose directory
0N/A# need to use 'override' because GNU Make on Linux exports the wrong
0N/A# value.
0N/Aoverride TEMPDIR = $(OUTPUTDIR)/$(UNIQUE_PATH)
0N/Aoverride ABS_TEMPDIR = $(ABS_OUTPUTDIR)/$(UNIQUE_PATH)
0N/A
0N/A# This must be created right away for pattern rules in Sanity.gmk to work.
0N/Adummy1:=$(shell $(MKDIR) -p $(TEMPDIR))
0N/Adummy2:=$(shell $(MKDIR) -p $(TEMP_DISK))
0N/A
0N/A# OBJDIRNAME is the name of the directory where the object code is to
0N/A# be placed. It's name depends on whether the data model architecture
0N/A# is 32-bit or not.
0N/Aifneq ($(ARCH_DATA_MODEL), 32)
0N/A OBJDIRNAME = obj$(ARCH_DATA_MODEL)$(OBJDIRNAME_SUFFIX)
0N/Aelse
0N/A OBJDIRNAME = obj$(OBJDIRNAME_SUFFIX)
0N/Aendif
0N/AOBJDIR = $(TEMPDIR)/$(OBJDIRNAME)
0N/A
0N/A# CLASSHDRDIR is where the generated C Class Header files go.
0N/ACLASSHDRDIR = $(TEMPDIR)/CClassHeaders
0N/A
0N/A#
0N/A# CLASSDESTDIR can be used to specify the directory where generated classes
0N/A# are to be placed. The default is CLASSBINDIR.
0N/A#
0N/Aifndef CLASSDESTDIR
0N/ACLASSDESTDIR = $(CLASSBINDIR)
0N/Aendif
0N/A
0N/AINCLUDES = -I. -I$(CLASSHDRDIR) \
0N/A $(patsubst %,-I%,$(subst $(CLASSPATH_SEPARATOR), ,$(VPATH.h))) $(OTHER_INCLUDES)
0N/AOTHER_CPPFLAGS = $(INCLUDES)
0N/A
0N/A
0N/A#
0N/A# vpaths. These are the default locations searched for source files.
0N/A# GNUmakefiles of individual areas often override the default settings.
0N/A# There are no longer default vpath entries for C and assembler files
0N/A# so we can ensure that libraries don't get their hands on JVM files.
0N/A#
0N/A# We define an intermediate variable for Java files because
0N/A# we use its value later to help define $SOURCEPATH
0N/A
0N/AVPATH0.java = $(GENSRCDIR)$(CLASSPATH_SEPARATOR)$(PLATFORM_SRC)/classes$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/classes
0N/Aifdef OPENJDK
0N/A VPATH.java = $(VPATH0.java)
0N/Aelse
0N/A #
0N/A # If filenames are duplicated between open/closed workspaces, prefer
0N/A # the closed files.
0N/A #
0N/A # Source ordering is important: some targets depend on closed files
0N/A # replacing open ones, and thus the closed file sources must be found
0N/A # before the open ones.
0N/A #
0N/A # Don't reorder without consulting the teams that depend on this behavior.
0N/A #
0N/A VPATH.java = $(CLOSED_PLATFORM_SRC)/classes$(CLASSPATH_SEPARATOR)$(CLOSED_SHARE_SRC)/classes$(CLASSPATH_SEPARATOR)$(VPATH0.java)
0N/Aendif
0N/Avpath %.java $(VPATH.java)
0N/Avpath %.class $(CLASSBINDIR)
0N/Avpath %.$(OBJECT_SUFFIX) $(OBJDIR)
0N/A
0N/A#
0N/A# VPATH.h is used elsewhere to generate include flags. By default,
0N/A# anyone has access to the include files that the JVM area exports,
0N/A# namely jni.h, jvm.h, and jni_utils.h, plus their platform-specific
0N/A# relatives.
0N/A#
502N/AVPATH.h = $(PLATFORM_SRC)/javavm/export$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/javavm/export
0N/Avpath %.h $(VPATH.h)
0N/A
0N/A#
0N/A# Used in two ways: helps link against libjava.so. Also if overridden
0N/A# determines where your shared library is installed.
0N/A#
0N/Aifndef LIB_LOCATION
0N/A LIB_LOCATION = $(LIBDIR)/$(LIBARCH)
0N/Aendif
0N/A
0N/A#
0N/A# Java header and stub variables
0N/A#
0N/ACLASSHDRS = $(patsubst %,$(CLASSHDRDIR)/%.h,$(subst .,_,$(CLASSES.export)))
0N/ACLASSSTUBOBJS = classstubs.$(OBJECT_SUFFIX)
0N/ASTUBPREAMBLE = $(INCLUDEDIR)/StubPreamble.h
0N/A
0N/A#
0N/A# Classpath seen by javac (different from the one seen by the VM
0N/A# running javac), and useful variables.
0N/A#
0N/ASOURCEPATH = $(VPATH.java)
0N/APKG = $(shell $(EXPR) $(PACKAGE) : '\([a-z]*\)')
0N/APKGDIR = $(subst .,/,$(PACKAGE))
0N/A
0N/A#
0N/A# The java/javac/jdk variables (JAVAC_CMD, JAVA_CMD, etc.)
0N/A#
0N/Ainclude $(JDK_MAKE_SHARED_DIR)/Defs-java.gmk
0N/A
0N/A#
2080N/A# Macros to find the module that $@ belongs to
2080N/A#
2080N/A
2080N/AUNIQUE_PATH_PATTERN = $(subst /,.,$(UNIQUE_PATH))
2080N/AMODULE_PATH_PATTERN = -e 's%.*\/classes\/%classes\/%' \
2080N/A -e 's%.*\/$(UNIQUE_PATH_PATTERN)\/%classes\/%' \
2080N/A -e 's%.*\/lib\/%lib\/%' \
2080N/A -e 's%.*\/bin\/%bin\/%' \
2080N/A -e 's%.*\/include\/%include\/%' \
2080N/A -e 's%.*\/demo\/%demo\/%' \
2080N/A -e 's%.*\/sample\/%sample\/%'
2080N/A
2080N/A# Install a file to its module
2080N/Adefine install-module-file
2080N/Adest=`echo $(@D)/ | $(SED) $(MODULE_PATH_PATTERN)` ; \
2080N/A$(MKDIR) -p $(MODULE_DEST_DIR)/$$dest; \
2096N/A$(CP) -f $@ $(MODULE_DEST_DIR)/$$dest
2080N/Aendef
2080N/A
2080N/A# Install all files from the directory to its module
2080N/Adefine install-module-dir
2080N/Adest=`echo $(@D)/ | $(SED) $(MODULE_PATH_PATTERN)` ; \
2080N/A$(MKDIR) -p $(MODULE_DEST_DIR)/$$dest; \
2080N/A$(CP) -rf $(@D)/* $(MODULE_DEST_DIR)/$$dest
2080N/Aendef
2080N/A
2080N/A# chmod the file in its module
2080N/Adefine chmod-module-file
2080N/Adest=`echo $@ | $(SED) $(MODULE_PATH_PATTERN)` ; \
2080N/A$(CHMOD) $1 $(MODULE_DEST_DIR)/$$dest
2080N/Aendef
2080N/A
2080N/A# install a sym link in its module
2080N/Adefine install-module-sym-link
2080N/Adest=`echo $@ | $(SED) $(MODULE_PATH_PATTERN)` ; \
2096N/A$(LN) -sf $1 $(MODULE_DEST_DIR)/$$dest
2080N/Aendef
2080N/A
2080N/A
2080N/A# Run MAKE $@ for a launcher:
2080N/A# $(call make-launcher, name, mainclass, java-args, main-args)
2080N/Adefine make-launcher
2080N/A$(CD) $(BUILDDIR)/launchers && \
2080N/A$(MAKE) -f Makefile.launcher \
2080N/A MODULE=$(MODULE) \
2080N/A PROGRAM=$(strip $1) \
2080N/A MAIN_CLASS=$(strip $2) \
2080N/A MAIN_JAVA_ARGS="$(strip $3)" \
2080N/A MAIN_ARGS="$(strip $4)"
2080N/Aendef
2080N/A
2080N/A#
0N/A# Convenient macros
0N/A#
0N/A
0N/A# Prepare $@ target, remove old one and making sure directory exists
0N/Adefine prep-target
0N/A$(MKDIR) -p $(@D)
0N/A$(RM) $@
0N/Aendef
0N/A
0N/A# Simple install of $< file to $@
0N/Adefine install-file
0N/A$(prep-target)
0N/A$(CP) $< $@
2157N/A@$(install-module-file)
2080N/Aendef
2080N/A
2080N/Adefine chmod-file
2080N/A$(CHMOD) $1 $@
2157N/A@$(call chmod-module-file, $1)
2080N/Aendef
2080N/A
2080N/Adefine install-sym-link
2080N/A$(LN) -s $1 $@
2157N/A@$(call install-module-sym-link, $1)
2080N/Aendef
2080N/A
2080N/A#
2080N/A# Marcos for files not belonging to any module
2080N/Adefine install-non-module-file
2080N/A$(prep-target)
2080N/A$(CP) $< $@
2080N/Aendef
2080N/A
2080N/Adefine install-manifest-file
2080N/A$(install-non-module-file)
0N/Aendef
0N/A
0N/A# Cleanup rule for after debug java run (hotspot.log file is left around)
0N/A# (This could be an old leftover file in a read-only area, use the @- prefix)
0N/AHOTSPOT_LOG_NAME = hotspot.log
0N/Adefine java-vm-cleanup
0N/Aif [ -w $(HOTSPOT_LOG_NAME) ] ; then $(RM) $(HOTSPOT_LOG_NAME); fi
0N/Aendef
0N/A
0N/A# Current directory
0N/ACURRENT_DIRECTORY := $(shell $(PWD))
0N/A
0N/A#
0N/A# Create BYFILE OPT and DBG settings, if CFLAGS_OPT/foobar.o is set then it is
0N/A# used for this file, otherwise the default settings are used.
0N/A#
0N/ACFLAGS_$(VARIANT)/BYFILE = $(CFLAGS_$(VARIANT)/$(@F)) \
0N/A $(CFLAGS_$(VARIANT)$(CFLAGS_$(VARIANT)/$(@F)))
0N/ACXXFLAGS_$(VARIANT)/BYFILE = $(CXXFLAGS_$(VARIANT)/$(@F)) \
0N/A $(CXXFLAGS_$(VARIANT)$(CXXFLAGS_$(VARIANT)/$(@F)))
0N/A
0N/A#
0N/A# Tool flags
0N/A#
0N/AASFLAGS = $(ASFLAGS_$(VARIANT)) $(ASFLAGS_COMMON) $(OTHER_ASFLAGS)
0N/ACFLAGS = $(CFLAGS_$(VARIANT)/BYFILE) $(CFLAGS_COMMON) $(OTHER_CFLAGS)
0N/ACXXFLAGS = $(CXXFLAGS_$(VARIANT)/BYFILE) $(CXXFLAGS_COMMON) $(OTHER_CXXFLAGS)
0N/ACPPFLAGS = $(CPPFLAGS_$(VARIANT)) $(CPPFLAGS_COMMON) $(OTHER_CPPFLAGS) \
0N/A $(DEFINES) $(OPTIONS:%=-D%)
0N/ALDFLAGS = $(LDFLAGS_$(VARIANT)) $(LDFLAGS_COMMON) $(OTHER_LDFLAGS)
0N/ALDLIBS = $(OTHER_LDLIBS) $(LDLIBS_$(VARIANT)) $(LDLIBS_COMMON)
0N/ALINTFLAGS = $(LINTFLAGS_$(VARIANT)) $(LINTFLAGS_COMMON) \
0N/A $(OTHER_LINTFLAGS)
0N/A
1777N/AVERSION_DEFINES = -DRELEASE='"$(RELEASE)"'
0N/A
0N/Aifdef INSANE
0N/A export INSANE
0N/Aendif
0N/A
0N/Aifdef ALT_COPYRIGHT_YEAR
0N/A COPYRIGHT_YEAR = $(ALT_COPYRIGHT_YEAR)
0N/Aelse
420N/A COPYRIGHT_YEAR := $(shell $(DATE) '+%Y')
0N/Aendif
0N/A
0N/A# Install of imported file (JDK_IMPORT_PATH, or some other external location)
2080N/Adefine install-importonly-file
0N/A@$(ECHO) "ASSEMBLY_IMPORT: $@"
536N/A$(prep-target)
536N/A$(CP) $< $@
536N/A@if [ "$(PLATFORM)" = "linux" -a "$(@F)" = "libjvm.so" ] ; then \
536N/A if [ -x /usr/sbin/selinuxenabled ] ; then \
536N/A /usr/sbin/selinuxenabled; \
536N/A if [ $$? = 0 ] ; then \
536N/A $(ECHO) "/usr/bin/chcon -t textrel_shlib_t $@"; \
536N/A /usr/bin/chcon -t textrel_shlib_t $@; \
536N/A if [ $$? != 0 ]; then \
536N/A echo "ERROR: Cannot chcon $@"; \
536N/A fi; \
536N/A fi; \
536N/A fi; \
536N/Afi
0N/Aendef
0N/A
2080N/Adefine install-import-file
2080N/A$(install-importonly-file)
2157N/A@$(install-module-file)
2080N/Aendef
2080N/A
0N/A.PHONY: all build clean clobber