1879N/A# Copyright (c) 1997, 2010, Oracle
and/or its affiliates. All rights reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
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
0N/A# published by the Free Software Foundation.
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# 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.
1472N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
0N/A# Resource file containing VERSIONINFO
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "DEBUG"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "PRODUCT"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "ASSERT"
0N/A!if "$(Variant)" == "core"
0N/A# No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
0N/A!if "$(Variant)" == "kernel"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "KERNEL"
0N/A!if "$(Variant)" == "compiler1"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1"
0N/A!if "$(Variant)" == "compiler2"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
0N/A!if "$(Variant)" == "tiered"
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
720N/A!if "$(BUILDARCH)" == "i486"
720N/AHOTSPOT_LIB_ARCH=$(BUILDARCH)
0N/A# The following variables are defined in the generated
local.make file.
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "JRE_RELEASE_VERSION=\"$(JRE_RELEASE_VER)\""
720N/ACPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_LIB_ARCH=\"$(HOTSPOT_LIB_ARCH)\""
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_TARGET=\"$(BUILD_FLAVOR)\""
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_USER=\"$(BuildUser)\""
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_VM_DISTRO=\"$(HOTSPOT_VM_DISTRO)\""
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "WIN32" /D "_WINDOWS" $(CPP_INCLUDE_DIRS)
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "VM_LITTLE_ENDIAN"
0N/A# Define that so
jni.h is on correct side
0N/ACPP_FLAGS=$(CPP_FLAGS) /D "_JNI_IMPLEMENTATION_"
1879N/A# Used for platform dispatching
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_OS_FAMILY_windows
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_ARCH_$(Platform_arch)
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_ARCH_MODEL_$(Platform_arch_model)
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_OS_ARCH_windows_$(Platform_arch)
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_OS_ARCH_MODEL_windows_$(Platform_arch_model)
1879N/ACPP_FLAGS=$(CPP_FLAGS) /D TARGET_COMPILER_visCPP
0N/A!if "$(BUILDARCH)" == "ia64"
0N/ASTACK_SIZE="/STACK:1048576,262144"
0N/A!if "$(BUILDARCH)" == "ia64"
0N/A# AsyncGetCallTrace is not supported on IA64 yet
0N/A!if "$(Variant)" == "kernel"
0N/AAGCT_EXPORT=/export:AsyncGetCallTrace
226N/ALINK_FLAGS=$(LINK_FLAGS) $(STACK_SIZE) /subsystem:windows /dll /base:0x8000000 \
226N/A /export:JNI_GetDefaultJavaVMInitArgs \
226N/A /export:JNI_CreateJavaVM \
226N/A /export:JVM_FindClassFromBootLoader \
226N/A /export:JNI_GetCreatedJavaVMs \
226N/A /export:jio_vsnprintf \
226N/A /export:JVM_GetVersionInfo \
226N/A /export:JVM_GetThreadStateNames \
226N/A /export:JVM_GetThreadStateValues \
0N/A /export:JVM_InitAgentProperties
1879N/A /I "$(WorkSpace)\src\share\vm" \
1879N/A /I "$(WorkSpace)\src\share\vm\prims" \
1879N/A /I "$(WorkSpace)\src\os\windows\vm" \
0N/A /I "$(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm" \
0N/A /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
1890N/ACPP_DONT_USE_PCH=/D DONT_USE_PRECOMPILED_HEADER
1890N/A!if "$(USE_PRECOMPILED_HEADER)" != "0"
1890N/ACPP_USE_PCH=$(CPP_DONT_USE_PCH)
0N/A# Where to find the source code for the virtual machine
0N/AVM_PATH=$(VM_PATH);$(WorkSpace)
/src/cpu/$(Platform_arch)/vm
0N/A# Special case files not using precompiled header files.
0N/Ac1_RInfo_$(Platform_arch).obj: $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
1890N/A $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
0N/Aos_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
1890N/A $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
0N/AgetThread_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
1890N/A $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
1890N/A $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\opto\
opcodes.cpp 0N/A# Default rules for the Virtual Machine
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A{$(WorkSpace)\src\share\vm\gc_implementation\parallelScavenge}
.cpp.obj::
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A{$(WorkSpace)\src\share\vm\gc_implementation\shared}
.cpp.obj::
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A{$(WorkSpace)\src\share\vm\gc_implementation\parNew}
.cpp.obj::
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A{$(WorkSpace)\src\share\vm\gc_implementation\concurrentMarkSweep}
.cpp.obj::
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
342N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A# This guy should remain a single colon rule because
0N/A# otherwise we can't specify the output filename.
0N/A @$(RC) $(RC_FLAGS) /fo"$@" $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A{$(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm}
.cpp.obj::
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
1879N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
0N/A $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<