author | kvn |
Sat, 06 Aug 2011 08:28:08 -0700 | |
changeset 10259 | fc6e02d351c4 |
parent 7662 | 5f31baaff55b |
child 26691 | 40ea2c41f53b |
permissions | -rw-r--r-- |
1 | 1 |
# |
7662
5f31baaff55b
7010068: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - first pass
trims
parents:
7397
diff
changeset
|
2 |
# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. |
1 | 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 |
# |
|
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
19 |
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
20 |
# or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
3818
diff
changeset
|
21 |
# questions. |
1 | 22 |
# |
23 |
# |
|
24 |
||
25 |
# This makefile (jvmti.make) is included from the jvmti.make in the |
|
26 |
# build directories. |
|
27 |
# |
|
28 |
# It knows how to build and run the tools to generate jvmti. |
|
29 |
||
338
5cf9f61d76f4
6583644: Move all managed/SCCS files out of 'build' into 'make' directory
kamg
parents:
1
diff
changeset
|
30 |
include $(GAMMADIR)/make/linux/makefiles/rules.make |
1 | 31 |
|
32 |
# ######################################################################### |
|
33 |
||
34 |
TOPDIR = $(shell echo `pwd`) |
|
35 |
GENERATED = $(TOPDIR)/../generated |
|
36 |
JvmtiOutDir = $(GENERATED)/jvmtifiles |
|
37 |
||
38 |
JvmtiSrcDir = $(GAMMADIR)/src/share/vm/prims |
|
39 |
InterpreterSrcDir = $(GAMMADIR)/src/share/vm/interpreter |
|
40 |
||
41 |
# set VPATH so make knows where to look for source files |
|
7397 | 42 |
Src_Dirs_V += $(JvmtiSrcDir) |
43 |
VPATH += $(Src_Dirs_V:%=%:) |
|
1 | 44 |
|
45 |
JvmtiGeneratedNames = \ |
|
46 |
jvmtiEnv.hpp \ |
|
47 |
jvmtiEnter.cpp \ |
|
48 |
jvmtiEnterTrace.cpp \ |
|
49 |
jvmtiEnvRecommended.cpp \ |
|
50 |
bytecodeInterpreterWithChecks.cpp \ |
|
51 |
jvmti.h \ |
|
52 |
||
53 |
JvmtiEnvFillSource = $(JvmtiSrcDir)/jvmtiEnvFill.java |
|
54 |
JvmtiEnvFillClass = $(JvmtiOutDir)/jvmtiEnvFill.class |
|
55 |
||
56 |
JvmtiGenSource = $(JvmtiSrcDir)/jvmtiGen.java |
|
57 |
JvmtiGenClass = $(JvmtiOutDir)/jvmtiGen.class |
|
58 |
||
59 |
JvmtiGeneratedFiles = $(JvmtiGeneratedNames:%=$(JvmtiOutDir)/%) |
|
60 |
||
61 |
XSLT = $(QUIETLY) $(REMOTE) $(RUN.JAVA) -classpath $(JvmtiOutDir) jvmtiGen |
|
62 |
||
63 |
.PHONY: all jvmtidocs clean cleanall |
|
64 |
||
65 |
# ######################################################################### |
|
66 |
||
67 |
all: $(JvmtiGeneratedFiles) |
|
68 |
||
69 |
both = $(JvmtiGenClass) $(JvmtiSrcDir)/jvmti.xml $(JvmtiSrcDir)/jvmtiLib.xsl |
|
70 |
||
71 |
$(JvmtiGenClass): $(JvmtiGenSource) |
|
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
670
diff
changeset
|
72 |
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -d $(JvmtiOutDir) $(JvmtiGenSource) |
1 | 73 |
|
74 |
$(JvmtiEnvFillClass): $(JvmtiEnvFillSource) |
|
3818
75004bf9026c
6873059: Explicitly use -source 6 -target 6 when compiling with the boot jdk
andrew
parents:
670
diff
changeset
|
75 |
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -d $(JvmtiOutDir) $(JvmtiEnvFillSource) |
1 | 76 |
|
77 |
$(JvmtiOutDir)/jvmtiEnter.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnter.xsl |
|
78 |
@echo Generating $@ |
|
79 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnter.xsl -OUT $(JvmtiOutDir)/jvmtiEnter.cpp -PARAM interface jvmti |
|
80 |
||
81 |
$(JvmtiOutDir)/bytecodeInterpreterWithChecks.cpp: $(JvmtiGenClass) $(InterpreterSrcDir)/bytecodeInterpreter.cpp $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xml $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xsl |
|
82 |
@echo Generating $@ |
|
83 |
$(XSLT) -IN $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xml -XSL $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xsl -OUT $(JvmtiOutDir)/bytecodeInterpreterWithChecks.cpp |
|
84 |
||
85 |
$(JvmtiOutDir)/jvmtiEnterTrace.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnter.xsl |
|
86 |
@echo Generating $@ |
|
87 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnter.xsl -OUT $(JvmtiOutDir)/jvmtiEnterTrace.cpp -PARAM interface jvmti -PARAM trace Trace |
|
88 |
||
89 |
$(JvmtiOutDir)/jvmtiEnvRecommended.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnv.xsl $(JvmtiSrcDir)/jvmtiEnv.cpp $(JvmtiEnvFillClass) |
|
90 |
@echo Generating $@ |
|
91 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnv.xsl -OUT $(JvmtiOutDir)/jvmtiEnvStub.cpp |
|
92 |
$(QUIETLY) $(REMOTE) $(RUN.JAVA) -classpath $(JvmtiOutDir) jvmtiEnvFill $(JvmtiSrcDir)/jvmtiEnv.cpp $(JvmtiOutDir)/jvmtiEnvStub.cpp $(JvmtiOutDir)/jvmtiEnvRecommended.cpp |
|
93 |
||
94 |
$(JvmtiOutDir)/jvmtiEnv.hpp: $(both) $(JvmtiSrcDir)/jvmtiHpp.xsl |
|
95 |
@echo Generating $@ |
|
96 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiHpp.xsl -OUT $(JvmtiOutDir)/jvmtiEnv.hpp |
|
97 |
||
98 |
$(JvmtiOutDir)/jvmti.h: $(both) $(JvmtiSrcDir)/jvmtiH.xsl |
|
99 |
@echo Generating $@ |
|
100 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiH.xsl -OUT $(JvmtiOutDir)/jvmti.h |
|
101 |
||
102 |
jvmtidocs: $(JvmtiOutDir)/jvmti.html |
|
103 |
||
104 |
$(JvmtiOutDir)/jvmti.html: $(both) $(JvmtiSrcDir)/jvmti.xsl |
|
105 |
@echo Generating $@ |
|
106 |
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmti.xsl -OUT $(JvmtiOutDir)/jvmti.html |
|
107 |
||
108 |
# ######################################################################### |
|
109 |
||
110 |
clean : |
|
111 |
rm $(JvmtiGenClass) $(JvmtiEnvFillClass) $(JvmtiGeneratedFiles) |
|
112 |
||
113 |
cleanall : |
|
114 |
rm $(JvmtiGenClass) $(JvmtiEnvFillClass) $(JvmtiGeneratedFiles) |
|
115 |
||
116 |
# ######################################################################### |
|
117 |