1 #
   2 # Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.
   8 #
   9 # This code is distributed in the hope that it will be useful, but WITHOUT
  10 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12 # version 2 for more details (a copy is included in the LICENSE file that
  13 # accompanied this code).
  14 #
  15 # You should have received a copy of the GNU General Public License version
  16 # 2 along with this work; if not, write to the Free Software Foundation,
  17 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18 #
  19 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20 # or visit www.oracle.com if you need additional information or have any
  21 # questions.
  22 #
  23 #
  24 
  25 # Resource file containing VERSIONINFO
  26 Res_Files=.\version.res
  27 
  28 !include ..\generated\objfiles.make
  29 
  30 COMMONSRC=$(WorkSpace)\src
  31 ALTSRC=$(WorkSpace)\src\closed
  32 
  33 !ifdef RELEASE
  34 !ifdef DEVELOP
  35 CPP_FLAGS=$(CPP_FLAGS) /D "DEBUG"
  36 !else
  37 CPP_FLAGS=$(CPP_FLAGS) /D "PRODUCT"
  38 !endif
  39 !else
  40 CPP_FLAGS=$(CPP_FLAGS) /D "ASSERT"
  41 !endif
  42 
  43 !if "$(Variant)" == "core"
  44 # No need to define anything, CORE is defined as !COMPILER1 && !COMPILER2
  45 !endif
  46 
  47 !if "$(Variant)" == "kernel"
  48 CPP_FLAGS=$(CPP_FLAGS) /D "KERNEL"
  49 !endif
  50 
  51 !if "$(Variant)" == "compiler1"
  52 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1"
  53 !endif
  54 
  55 !if "$(Variant)" == "compiler2"
  56 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER2"
  57 !endif
  58 
  59 !if "$(Variant)" == "tiered"
  60 CPP_FLAGS=$(CPP_FLAGS) /D "COMPILER1" /D "COMPILER2"
  61 !endif
  62 
  63 !if "$(BUILDARCH)" == "i486"
  64 HOTSPOT_LIB_ARCH=i386
  65 !else
  66 HOTSPOT_LIB_ARCH=$(BUILDARCH)
  67 !endif
  68 
  69 # The following variables are defined in the generated local.make file.
  70 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_RELEASE_VERSION=\"$(HS_BUILD_VER)\""
  71 CPP_FLAGS=$(CPP_FLAGS) /D "JRE_RELEASE_VERSION=\"$(JRE_RELEASE_VER)\""
  72 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_LIB_ARCH=\"$(HOTSPOT_LIB_ARCH)\""
  73 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_TARGET=\"$(BUILD_FLAVOR)\""
  74 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_BUILD_USER=\"$(BuildUser)\""
  75 CPP_FLAGS=$(CPP_FLAGS) /D "HOTSPOT_VM_DISTRO=\"$(HOTSPOT_VM_DISTRO)\""
  76 
  77 !ifndef JAVASE_EMBEDDED
  78 CPP_FLAGS=$(CPP_FLAGS) /D "INCLUDE_TRACE"
  79 !endif
  80 
  81 CPP_FLAGS=$(CPP_FLAGS) $(CPP_INCLUDE_DIRS)
  82 
  83 # Define that so jni.h is on correct side
  84 CPP_FLAGS=$(CPP_FLAGS) /D "_JNI_IMPLEMENTATION_"
  85 
  86 !if "$(BUILDARCH)" == "ia64"
  87 STACK_SIZE="/STACK:1048576,262144"
  88 !else
  89 STACK_SIZE=
  90 !endif
  91 
  92 !if "$(BUILDARCH)" == "ia64"
  93 # AsyncGetCallTrace is not supported on IA64 yet
  94 AGCT_EXPORT=
  95 !else
  96 !if "$(Variant)" == "kernel"
  97 AGCT_EXPORT=
  98 !else
  99 AGCT_EXPORT=/export:AsyncGetCallTrace
 100 !endif
 101 !endif
 102 
 103 # If you modify exports below please do the corresponding changes in
 104 # src/share/tools/ProjectCreator/WinGammaPlatformVC7.java
 105 LINK_FLAGS=$(LINK_FLAGS) $(STACK_SIZE) /subsystem:windows /dll /base:0x8000000 \
 106   /export:JNI_GetDefaultJavaVMInitArgs       \
 107   /export:JNI_CreateJavaVM                   \
 108   /export:JVM_FindClassFromBootLoader        \
 109   /export:JNI_GetCreatedJavaVMs              \
 110   /export:jio_snprintf                       \
 111   /export:jio_printf                         \
 112   /export:jio_fprintf                        \
 113   /export:jio_vfprintf                       \
 114   /export:jio_vsnprintf                      \
 115   $(AGCT_EXPORT)                             \
 116   /export:JVM_GetVersionInfo                 \
 117   /export:JVM_GetThreadStateNames            \
 118   /export:JVM_GetThreadStateValues           \
 119   /export:JVM_InitAgentProperties
 120 
 121 CPP_INCLUDE_DIRS=/I "..\generated"
 122 
 123 !if exists($(ALTSRC)\share\vm)
 124 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\share\vm"
 125 !endif
 126 
 127 !if exists($(ALTSRC)\os\windows\vm)
 128 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os\windows\vm"
 129 !endif
 130 
 131 !if exists($(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm)
 132 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm"
 133 !endif
 134 
 135 !if exists($(ALTSRC)\cpu\$(Platform_arch)\vm)
 136 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) /I "$(ALTSRC)\cpu\$(Platform_arch)\vm"
 137 !endif
 138 
 139 CPP_INCLUDE_DIRS=$(CPP_INCLUDE_DIRS) \
 140   /I "$(COMMONSRC)\share\vm" \
 141   /I "$(COMMONSRC)\share\vm\precompiled" \
 142   /I "$(COMMONSRC)\share\vm\prims" \
 143   /I "$(COMMONSRC)\os\windows\vm" \
 144   /I "$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm" \
 145   /I "$(COMMONSRC)\cpu\$(Platform_arch)\vm"
 146 
 147 CPP_DONT_USE_PCH=/D DONT_USE_PRECOMPILED_HEADER
 148 
 149 !if "$(USE_PRECOMPILED_HEADER)" != "0"
 150 CPP_USE_PCH=/Fp"vm.pch" /Yu"precompiled.hpp"
 151 !else
 152 CPP_USE_PCH=$(CPP_DONT_USE_PCH)
 153 !endif
 154 
 155 # Where to find the source code for the virtual machine (is this used?)
 156 VM_PATH=../generated
 157 VM_PATH=$(VM_PATH);../generated/adfiles
 158 VM_PATH=$(VM_PATH);../generated/jvmtifiles
 159 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/c1
 160 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/compiler
 161 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/code
 162 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/interpreter
 163 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/ci
 164 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/classfile
 165 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parallelScavenge
 166 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/shared
 167 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/parNew
 168 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/concurrentMarkSweep
 169 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_implementation/g1
 170 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/gc_interface
 171 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/asm
 172 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/memory
 173 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/oops
 174 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/prims
 175 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/runtime
 176 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/services
 177 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/trace
 178 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/utilities
 179 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/libadt
 180 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os/windows/vm
 181 VM_PATH=$(VM_PATH);$(WorkSpace)/src/os_cpu/windows_$(Platform_arch)/vm
 182 VM_PATH=$(VM_PATH);$(WorkSpace)/src/cpu/$(Platform_arch)/vm
 183 VM_PATH=$(VM_PATH);$(WorkSpace)/src/share/vm/opto
 184 
 185 !if exists($(ALTSRC)\share\vm\jfr)
 186 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/agent
 187 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/agent/isolated_deps/util
 188 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr/jvm
 189 VM_PATH=$(VM_PATH);$(ALTSRC)/share/vm/jfr
 190 !endif
 191 
 192 VM_PATH={$(VM_PATH)}
 193 
 194 # Special case files not using precompiled header files.
 195 
 196 c1_RInfo_$(Platform_arch).obj: $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp 
 197          $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\cpu\$(Platform_arch)\vm\c1_RInfo_$(Platform_arch).cpp
 198 
 199 os_windows.obj: $(WorkSpace)\src\os\windows\vm\os_windows.cpp
 200         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\os_windows.cpp
 201 
 202 os_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
 203         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\os_windows_$(Platform_arch).cpp
 204 
 205 osThread_windows.obj: $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
 206         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\osThread_windows.cpp
 207 
 208 conditionVar_windows.obj: $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
 209         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os\windows\vm\conditionVar_windows.cpp
 210 
 211 getThread_windows_$(Platform_arch).obj: $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
 212         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\os_cpu\windows_$(Platform_arch)\vm\getThread_windows_$(Platform_arch).cpp
 213 
 214 opcodes.obj: $(WorkSpace)\src\share\vm\opto\opcodes.cpp
 215         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\opto\opcodes.cpp
 216 
 217 bytecodeInterpreter.obj: $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
 218         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c $(WorkSpace)\src\share\vm\interpreter\bytecodeInterpreter.cpp
 219 
 220 bytecodeInterpreterWithChecks.obj: ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
 221         $(CPP) $(CPP_FLAGS) $(CPP_DONT_USE_PCH) /c ..\generated\jvmtifiles\bytecodeInterpreterWithChecks.cpp
 222 
 223 # Default rules for the Virtual Machine
 224 {$(COMMONSRC)\share\vm\c1}.cpp.obj::
 225         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 226 
 227 {$(COMMONSRC)\share\vm\compiler}.cpp.obj::
 228         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 229 
 230 {$(COMMONSRC)\share\vm\code}.cpp.obj::
 231         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 232 
 233 {$(COMMONSRC)\share\vm\interpreter}.cpp.obj::
 234         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 235 
 236 {$(COMMONSRC)\share\vm\ci}.cpp.obj::
 237         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 238 
 239 {$(COMMONSRC)\share\vm\classfile}.cpp.obj::
 240         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 241 
 242 {$(COMMONSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
 243         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 244 
 245 {$(COMMONSRC)\share\vm\gc_implementation\shared}.cpp.obj::
 246         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 247 
 248 {$(COMMONSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
 249         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 250 
 251 {$(COMMONSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
 252         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 253 
 254 {$(COMMONSRC)\share\vm\gc_implementation\g1}.cpp.obj::
 255         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 256 
 257 {$(COMMONSRC)\share\vm\gc_interface}.cpp.obj::
 258         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 259 
 260 {$(COMMONSRC)\share\vm\asm}.cpp.obj::
 261         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 262 
 263 {$(COMMONSRC)\share\vm\memory}.cpp.obj::
 264         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 265 
 266 {$(COMMONSRC)\share\vm\oops}.cpp.obj::
 267         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 268 
 269 {$(COMMONSRC)\share\vm\prims}.cpp.obj::
 270         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 271 
 272 {$(COMMONSRC)\share\vm\runtime}.cpp.obj::
 273         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 274 
 275 {$(COMMONSRC)\share\vm\services}.cpp.obj::
 276         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 277 
 278 {$(COMMONSRC)\share\vm\trace}.cpp.obj::
 279         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 280 
 281 {$(COMMONSRC)\share\vm\utilities}.cpp.obj::
 282         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 283 
 284 {$(COMMONSRC)\share\vm\libadt}.cpp.obj::
 285         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 286 
 287 {$(COMMONSRC)\share\vm\opto}.cpp.obj::
 288         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 289 
 290 {$(COMMONSRC)\os\windows\vm}.cpp.obj::
 291         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 292 
 293 # This guy should remain a single colon rule because
 294 # otherwise we can't specify the output filename.
 295 {$(COMMONSRC)\os\windows\vm}.rc.res:
 296         @$(RC) $(RC_FLAGS) /fo"$@" $<
 297 
 298 {$(COMMONSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
 299         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 300 
 301 {$(COMMONSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
 302         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 303 
 304 {$(ALTSRC)\share\vm\c1}.cpp.obj::
 305         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 306 
 307 {$(ALTSRC)\share\vm\compiler}.cpp.obj::
 308         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 309 
 310 {$(ALTSRC)\share\vm\code}.cpp.obj::
 311         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 312 
 313 {$(ALTSRC)\share\vm\interpreter}.cpp.obj::
 314         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 315 
 316 {$(ALTSRC)\share\vm\ci}.cpp.obj::
 317         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 318 
 319 {$(ALTSRC)\share\vm\classfile}.cpp.obj::
 320         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 321 
 322 {$(ALTSRC)\share\vm\gc_implementation\parallelScavenge}.cpp.obj::
 323         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 324 
 325 {$(ALTSRC)\share\vm\gc_implementation\shared}.cpp.obj::
 326         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 327 
 328 {$(ALTSRC)\share\vm\gc_implementation\parNew}.cpp.obj::
 329         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 330 
 331 {$(ALTSRC)\share\vm\gc_implementation\concurrentMarkSweep}.cpp.obj::
 332         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 333 
 334 {$(ALTSRC)\share\vm\gc_implementation\g1}.cpp.obj::
 335         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 336 
 337 {$(ALTSRC)\share\vm\gc_interface}.cpp.obj::
 338         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 339 
 340 {$(ALTSRC)\share\vm\asm}.cpp.obj::
 341         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 342 
 343 {$(ALTSRC)\share\vm\memory}.cpp.obj::
 344         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 345 
 346 {$(ALTSRC)\share\vm\oops}.cpp.obj::
 347         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 348 
 349 {$(ALTSRC)\share\vm\prims}.cpp.obj::
 350         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 351 
 352 {$(ALTSRC)\share\vm\runtime}.cpp.obj::
 353         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 354 
 355 {$(ALTSRC)\share\vm\services}.cpp.obj::
 356         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 357 
 358 {$(ALTSRC)\share\vm\trace}.cpp.obj::
 359         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 360 
 361 {$(ALTSRC)\share\vm\utilities}.cpp.obj::
 362         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 363 
 364 {$(ALTSRC)\share\vm\libadt}.cpp.obj::
 365         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 366 
 367 {$(ALTSRC)\share\vm\opto}.cpp.obj::
 368         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 369 
 370 {$(ALTSRC)\os\windows\vm}.cpp.obj::
 371         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 372 
 373 # otherwise we can't specify the output filename.
 374 {$(ALTSRC)\os\windows\vm}.rc.res:
 375         @$(RC) $(RC_FLAGS) /fo"$@" $<
 376 
 377 {$(ALTSRC)\cpu\$(Platform_arch)\vm}.cpp.obj::
 378         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 379 
 380 {$(ALTSRC)\os_cpu\windows_$(Platform_arch)\vm}.cpp.obj::
 381         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 382 
 383 {..\generated\incls}.cpp.obj::
 384         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 385 
 386 {..\generated\adfiles}.cpp.obj::
 387         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 388 
 389 {..\generated\jvmtifiles}.cpp.obj::
 390         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 391 
 392 {$(ALTSRC)\share\vm\jfr}.cpp.obj::
 393         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 394 
 395 {$(ALTSRC)\share\vm\jfr\agent}.cpp.obj::
 396         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 397 
 398 {$(ALTSRC)\share\vm\jfr\agent\isolated_deps\util}.cpp.obj::
 399         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 400 
 401 {$(ALTSRC)\share\vm\jfr\jvm}.cpp.obj::
 402         $(CPP) $(CPP_FLAGS) $(CPP_USE_PCH) /c $<
 403 
 404 default::
 405 
 406 _build_pch_file.obj:
 407         @echo #include "precompiled.hpp" > ../generated/_build_pch_file.cpp
 408         $(CPP) $(CPP_FLAGS) /Fp"vm.pch" /Yc"precompiled.hpp" /c ../generated/_build_pch_file.cpp