comparison make/Makefile @ 21631:77acf6ba2fc0

Move EventProvider to jvmci.hotspot, make it a JVMCI Service
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Mon, 01 Jun 2015 17:03:29 +0200
parents 47bebae7454f
children b5bbf03bc17a
comparison
equal deleted inserted replaced
21630:9cc3571ef51d 21631:77acf6ba2fc0
61 # JDK_MICRO_VERSION Micro number for version (e.g. 0) 61 # JDK_MICRO_VERSION Micro number for version (e.g. 0)
62 # 62 #
63 63
64 # Default is build both product fastdebug and create export area 64 # Default is build both product fastdebug and create export area
65 65
66
67 # Directory for shared code (e.g. jvmci.jar)
68 SHARED_DIR=$(OUTPUTDIR)/shared
69
66 # Allow to build HotSpot in local directory from sources specified by GAMMADIR. 70 # Allow to build HotSpot in local directory from sources specified by GAMMADIR.
67 # After make/defs.make GAMMADIR is defined. 71 # After make/defs.make GAMMADIR is defined.
68 ifdef GAMMADIR 72 ifdef GAMMADIR
69 ifndef ALT_OUTPUTDIR 73 ifndef ALT_OUTPUTDIR
70 ALT_OUTPUTDIR := $(shell pwd) 74 ALT_OUTPUTDIR := $(shell pwd)
81 ifneq ($(ALT_OUTPUTDIR),) 85 ifneq ($(ALT_OUTPUTDIR),)
82 ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR) 86 ALT_OUT=ALT_OUTPUTDIR=$(ALT_OUTPUTDIR)
83 else 87 else
84 ALT_OUT= 88 ALT_OUT=
85 endif 89 endif
86
87 # Directory for shared code (e.g. jvmci.jar)
88 SHARED_DIR=$(OUTPUTDIR)/shared
89 90
90 # Typical C1/C2 targets made available with this Makefile 91 # Typical C1/C2 targets made available with this Makefile
91 C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1 92 C1_VM_TARGETS=product1 fastdebug1 optimized1 debug1
92 C2_VM_TARGETS=product fastdebug optimized debug 93 C2_VM_TARGETS=product fastdebug optimized debug
93 CORE_VM_TARGETS=productcore fastdebugcore optimizedcore debugcore 94 CORE_VM_TARGETS=productcore fastdebugcore optimizedcore debugcore