0N/A#
5036N/A# Copyright (c) 1995, 2012, 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#
0N/A# Get platform definitions
0N/A#
0N/A
0N/Ainclude $(JDK_TOPDIR)/make/common/Defs-$(PLATFORM).gmk
0N/A
3767N/A#
3867N/A# SE-Embedded support, if enabled
3867N/A#
3867N/A
3867N/Ainclude $(JDK_TOPDIR)/make/common/Defs-embedded.gmk
3867N/A
3867N/A#
3767N/A# Cross-compilation Settings
3767N/A#
3767N/Aifdef CROSS_COMPILE_ARCH
3767N/A # Can't run the tools we just built
3767N/A USE_ONLY_BOOTDIR_TOOLS = true
3767N/A
3767N/A # When cross-compiling CC generates code for the target, but
3767N/A # some parts of the build generate C code that has to be compiled
3767N/A # and executed on the build host - HOST_CC is the 'local' compiler.
3767N/A # For linux the default is /usr/bin/gcc; other platforms need to
3767N/A # set it explicitly
3767N/A ifeq ($(PLATFORM), linux)
3767N/A ifndef HOST_CC
3767N/A HOST_CC = $(USRBIN_PATH)gcc
3767N/A endif
3767N/A endif
3767N/Aelse
3767N/A # Must set HOST_CC if not already set
3767N/A ifndef HOST_CC
3767N/A HOST_CC = $(CC)
3767N/A endif
3767N/Aendif
3767N/A
3763N/A# Reset the VM name for client-only builds
3763N/Aifdef BUILD_CLIENT_ONLY
3763N/A VM_NAME = client
3763N/Aendif
3763N/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)
4632N/A ifeq ($(PLATFORM), macosx)
4632N/A USING_SYSTEM_FT_LIB=true
4632N/A endif
0N/A else
0N/A ifeq ($(DEVTOOLS_FT_DIR_EXISTS), true)
0N/A FREETYPE_LIB_PATH = $(DEVTOOLS_FT_DIR)/lib
0N/A else
4632N/A ifeq ($(PLATFORM), macosx)
4632N/A FREETYPE_LIB_PATH = /usr/X11R6/lib
4632N/A else
4632N/A FREETYPE_LIB_PATH = /usr/lib
4632N/A endif
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
4632N/A ifeq ($(PLATFORM), macosx)
4632N/A FREETYPE_HEADERS_PATH = /usr/X11R6/include
4632N/A else
4632N/A FREETYPE_HEADERS_PATH = /usr/include
4632N/A endif
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
3153N/AJRE_LOCALES = de es fr it ja ko pt_BR sv zh_CN zh_TW zh_HK
3153N/APLUGIN_LOCALES = de es fr it ja ko pt_BR 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
4632N/A ifeq ($(PLATFORM), macosx)
4632N/A LDLIBS_COMMON = -pthread
4632N/A endif
4632N/A
0N/Aendif # PROGRAM
0N/A
0N/ALDLIBS_COMMON += $(EXTRA_LIBS)
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
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
5036N/AABS_BUILDTOOLBINDIR = $(ABS_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
5847N/AJDK_SERVER_IMAGE_DIR = $(ABS_OUTPUTDIR)/j2sdk-server-image
0N/A
0N/A#where the demo source can be found
0N/ADEMOSRCDIR = $(SHARE_SRC)/demo
0N/A
4378N/A#where the sample source can be found
4378N/ASAMPLESRCDIR = $(SHARE_SRC)/sample
4378N/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
3378N/A# not define PACKAGE, PROGRAM, and LIBRARY. This code attempts to
3378N/A# generate a unique OBJDIR/CLASSHDRDIR for each build unit based
3378N/A# on which of those 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/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)
3767N/AOTHER_CPPFLAGS += $(INCLUDES)
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
4632N/Aifeq ($(PLATFORM), macosx)
4632N/A VPATH0.java = $(subst $(ONESPACE),:,$(GENSRCDIR) $(call JavaSrcDirList,,classes))
4632N/Aelse
4632N/A VPATH0.java = $(GENSRCDIR)$(CLASSPATH_SEPARATOR)$(PLATFORM_SRC)/classes$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/classes
4632N/Aendif
4632N/A
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#
6143N/Aifeq ($(PLATFORM), macosx)
6143N/A VPATH0.h = $(PLATFORM_SRC_MACOS)/javavm/export$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/javavm/export
6143N/Aelse
6143N/A VPATH0.h = $(PLATFORM_SRC)/javavm/export$(CLASSPATH_SEPARATOR)$(SHARE_SRC)/javavm/export
6143N/Aendif
6143N/A
4603N/Aifdef OPENJDK
4603N/A VPATH.h = $(VPATH0.h)
4603N/Aelse
4603N/A VPATH.h = $(CLOSED_SHARE_SRC)/javavm/export$(CLASSPATH_SEPARATOR)$(VPATH0.h)
4603N/Aendif
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
2080N/AUNIQUE_PATH_PATTERN = $(subst /,.,$(UNIQUE_PATH))
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 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) $< $@
2080N/Aendef
2080N/A
2080N/Adefine chmod-file
2080N/A$(CHMOD) $1 $@
2080N/Aendef
2080N/A
2080N/Adefine install-sym-link
2080N/A$(LN) -s $1 $@
2080N/Aendef
2080N/A
2080N/Adefine install-manifest-file
3686N/A$(install-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#
3767N/A# EXTRA_CFLAGS are used to define cross-compilation options
3767N/A#
0N/AASFLAGS = $(ASFLAGS_$(VARIANT)) $(ASFLAGS_COMMON) $(OTHER_ASFLAGS)
3767N/ACFLAGS = $(CFLAGS_$(VARIANT)/BYFILE) $(CFLAGS_COMMON) $(OTHER_CFLAGS) $(EXTRA_CFLAGS)
3767N/ACXXFLAGS = $(CXXFLAGS_$(VARIANT)/BYFILE) $(CXXFLAGS_COMMON) $(OTHER_CXXFLAGS) $(EXTRA_CFLAGS)
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
3698N/Aifndef OPENJDK
3698N/Ainclude $(JDK_TOPDIR)/make/closed/common/Defs.gmk
3698N/Aendif
3698N/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)
2080N/Aendef
2080N/A
0N/A.PHONY: all build clean clobber