hotspot/make/windows/makefiles/vm.make
author ysr
Thu, 05 Jun 2008 15:57:56 -0700
changeset 1374 4c24294029a9
parent 357 f4edb0d9f109
child 1388 3677f5f3d66b
permissions -rw-r--r--
6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
# Copyright 1997-2007 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
# This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
# under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
# published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
# This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
# version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
# accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
# You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
# 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
# CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
# have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
#  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
#
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
# Resource file containing VERSIONINFO
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
Res_Files=.\version.res
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
!ifdef RELEASE 
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
!ifdef DEVELOP
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
CPP_FLAGS=$(CPP_FLAGS) /D "DEBUG"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
!else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
CPP_FLAGS=$(CPP_FLAGS) /D "PRODUCT"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
!else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
CPP_FLAGS=$(CPP_FLAGS) /D "ASSERT"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
!if "$(Variant)" == "core"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
# No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
!if "$(Variant)" == "kernel"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
CPP_FLAGS=$(CPP_FLAGS) /D "KERNEL"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
!if "$(Variant)" == "compiler1"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
!if "$(Variant)" == "compiler2"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
!if "$(Variant)" == "tiered"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
# The following variables are defined in the generated local.make file.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
CPP_FLAGS=$(CPP_FLAGS) /D "JRE_RELEASE_VERSION=\"$(JRE_RELEASE_VER)\""
347
df859fcca515 6667042: PrintAssembly option does not work without special plugin
jrose
parents: 1
diff changeset
    61
CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_LIB_ARCH=\"$(BUILDARCH)\""
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_TARGET=\"$(BUILD_FLAVOR)\""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_USER=\"$(BuildUser)\""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_VM_DISTRO=\"$(HOTSPOT_VM_DISTRO)\""
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
CPP_FLAGS=$(CPP_FLAGS) /D "WIN32" /D "_WINDOWS" $(CPP_INCLUDE_DIRS)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
# Must specify this for sharedRuntimeTrig.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
CPP_FLAGS=$(CPP_FLAGS) /D "VM_LITTLE_ENDIAN"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
# Define that so jni.h is on correct side
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
CPP_FLAGS=$(CPP_FLAGS) /D "_JNI_IMPLEMENTATION_"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
!if "$(BUILDARCH)" == "ia64"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
STACK_SIZE="/STACK:1048576,262144"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
!else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
STACK_SIZE=
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
!if "$(BUILDARCH)" == "ia64"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
# AsyncGetCallTrace is not supported on IA64 yet
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
AGCT_EXPORT=
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
!else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
!if "$(Variant)" == "kernel"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
AGCT_EXPORT=
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
!else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
AGCT_EXPORT=/export:AsyncGetCallTrace
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
!endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
LINK_FLAGS=$(LINK_FLAGS) $(STACK_SIZE) /subsystem:windows /dll /base:0x8000000  \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
  /export:JNI_GetDefaultJavaVMInitArgs /export:JNI_CreateJavaVM    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
  /export:JNI_GetCreatedJavaVMs /export:jio_snprintf               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
  /export:jio_printf /export:jio_fprintf                           \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
  /export:jio_vfprintf /export:jio_vsnprintf $(AGCT_EXPORT)        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
  /export:JVM_GetVersionInfo \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
  /export:JVM_GetThreadStateNames /export:JVM_GetThreadStateValues \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
  /export:JVM_InitAgentProperties
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
CPP_INCLUDE_DIRS=\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
  /I "..\generated"                          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  /I "..\generated\jvmtifiles"               \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  /I "$(WorkSpace)\src\share\vm\c1"          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
  /I "$(WorkSpace)\src\share\vm\compiler"    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  /I "$(WorkSpace)\src\share\vm\code"        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  /I "$(WorkSpace)\src\share\vm\interpreter" \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  /I "$(WorkSpace)\src\share\vm\ci"          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  /I "$(WorkSpace)\src\share\vm\classfile"   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
  /I "$(WorkSpace)\src\share\vm\gc_implementation\parallelScavenge"\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  /I "$(WorkSpace)\src\share\vm\gc_implementation\shared"\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  /I "$(WorkSpace)\src\share\vm\gc_implementation\parNew"\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  /I "$(WorkSpace)\src\share\vm\gc_implementation\concurrentMarkSweep"\
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 357
diff changeset
   113
  /I "$(WorkSpace)\src\share\vm\gc_implementation\g1"\
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  /I "$(WorkSpace)\src\share\vm\gc_interface"\
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  /I "$(WorkSpace)\src\share\vm\asm"         \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
  /I "$(WorkSpace)\src\share\vm\memory"      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
  /I "$(WorkSpace)\src\share\vm\oops"        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
  /I "$(WorkSpace)\src\share\vm\prims"       \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  /I "$(WorkSpace)\src\share\vm\runtime"     \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  /I "$(WorkSpace)\src\share\vm\services"    \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
  /I "$(WorkSpace)\src\share\vm\utilities"   \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  /I "$(WorkSpace)\src\share\vm\libadt"      \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  /I "$(WorkSpace)\src\share\vm\opto"        \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  /I "$(WorkSpace)\src\os\windows\vm"          \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
  /I "$(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm" \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  /I "$(WorkSpace)\src\cpu\$(Platform_arch)\vm"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
CPP_USE_PCH=/Fp"vm.pch" /Yu"incls/_precompiled.incl"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
# Where to find the source code for the virtual machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
VM_PATH=../generated/incls
489c9b5090e2 Initial load
duke
parents:
diff changeset
   132
VM_PATH=$(VM_PATH);../generated/jvmtifiles
489c9b5090e2 Initial load
duke
parents:
diff changeset
   133
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/c1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/compiler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/interpreter
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/ci
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/classfile
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parallelScavenge
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/shared
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parNew
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/concurrentMarkSweep
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 357
diff changeset
   143
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/g1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_interface
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/asm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/memory
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/oops
489c9b5090e2 Initial load
duke
parents:
diff changeset
   148
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/prims
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/runtime
489c9b5090e2 Initial load
duke
parents:
diff changeset
   150
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/services
489c9b5090e2 Initial load
duke
parents:
diff changeset
   151
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/utilities
489c9b5090e2 Initial load
duke
parents:
diff changeset
   152
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/libadt
489c9b5090e2 Initial load
duke
parents:
diff changeset
   153
VM_PATH=$(VM_PATH);$(WorkSpace)/src/os/windows/vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
VM_PATH=$(VM_PATH);$(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
VM_PATH=$(VM_PATH);$(WorkSpace)/src/cpu/$(Platform_arch)/vm
489c9b5090e2 Initial load
duke
parents:
diff changeset
   156
VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/opto
489c9b5090e2 Initial load
duke
parents:
diff changeset
   157
489c9b5090e2 Initial load
duke
parents:
diff changeset
   158
VM_PATH={$(VM_PATH)}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   159
489c9b5090e2 Initial load
duke
parents:
diff changeset
   160
# Special case files not using precompiled header files.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   161
489c9b5090e2 Initial load
duke
parents:
diff changeset
   162
c1_RInfo_$(Platform_arch).obj: $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp 
489c9b5090e2 Initial load
duke
parents:
diff changeset
   163
	 $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   164
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
os_windows.obj: $(WorkSpace)\src\os\windows\vm\os_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\os\windows\vm\os_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
os_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
osThread_windows.obj: $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
conditionVar_windows.obj: $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
getThread_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
opcodes.obj: $(WorkSpace)\src\share\vm\opto\opcodes.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\share\vm\opto\opcodes.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
bytecodeInterpreter.obj: $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
        $(CPP) $(CPP_FLAGS) /c $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
bytecodeInterpreterWithChecks.obj: ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
        $(CPP) $(CPP_FLAGS) /c ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
# Default rules for the Virtual Machine
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
{$(WorkSpace)\src\share\vm\c1}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
{$(WorkSpace)\src\share\vm\compiler}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   194
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   195
489c9b5090e2 Initial load
duke
parents:
diff changeset
   196
{$(WorkSpace)\src\share\vm\code}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   197
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   198
489c9b5090e2 Initial load
duke
parents:
diff changeset
   199
{$(WorkSpace)\src\share\vm\interpreter}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   200
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   201
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
{$(WorkSpace)\src\share\vm\ci}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
{$(WorkSpace)\src\share\vm\classfile}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
{$(WorkSpace)\src\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
{$(WorkSpace)\src\share\vm\gc_implementation\shared}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
{$(WorkSpace)\src\share\vm\gc_implementation\parNew}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
{$(WorkSpace)\src\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
1374
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 357
diff changeset
   220
{$(WorkSpace)\src\share\vm\gc_implementation\g1}.cpp.obj::
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 357
diff changeset
   221
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
4c24294029a9 6711316: Open source the Garbage-First garbage collector
ysr
parents: 357
diff changeset
   222
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
{$(WorkSpace)\src\share\vm\gc_interface}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
{$(WorkSpace)\src\share\vm\asm}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
{$(WorkSpace)\src\share\vm\memory}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
{$(WorkSpace)\src\share\vm\oops}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
{$(WorkSpace)\src\share\vm\prims}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
{$(WorkSpace)\src\share\vm\runtime}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
{$(WorkSpace)\src\share\vm\services}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
{$(WorkSpace)\src\share\vm\utilities}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
{$(WorkSpace)\src\share\vm\libadt}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
{$(WorkSpace)\src\share\vm\opto}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
{$(WorkSpace)\src\os\windows\vm}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
# This guy should remain a single colon rule because
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
# otherwise we can't specify the output filename.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
{$(WorkSpace)\src\os\windows\vm}.rc.res:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
        @$(RC) $(RC_FLAGS) /fo"$@" $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
{$(WorkSpace)\src\cpu\$(Platform_arch)\vm}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
{$(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   266
489c9b5090e2 Initial load
duke
parents:
diff changeset
   267
{..\generated\incls}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
{..\generated\jvmtifiles}.cpp.obj::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
        $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
default::
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
_build_pch_file.obj:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
        @echo #include "incls/_precompiled.incl" > ../generated/_build_pch_file.cpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
        $(CPP) $(CPP_FLAGS) /Fp"vm.pch" /Yc"incls/_precompiled.incl" /c ../generated/_build_pch_file.cpp