author | dcubed |
Wed, 20 Jan 2010 12:09:31 -0700 | |
changeset 4808 | 37f605425f74 |
parent 4665 | d14dc3d9e1fa |
child 4917 | c98da2209f8c |
permissions | -rw-r--r-- |
2 | 1 |
# |
4808
37f605425f74
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
4665
diff
changeset
|
2 |
# Copyright 2004-2010 Sun Microsystems, Inc. All Rights Reserved. |
2 | 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. Sun designates this |
|
8 |
# particular file as subject to the "Classpath" exception as provided |
|
9 |
# by Sun in the LICENSE file that accompanied this code. |
|
10 |
# |
|
11 |
# This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
# version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
# accompanied this code). |
|
16 |
# |
|
17 |
# You should have received a copy of the GNU General Public License version |
|
18 |
# 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
# |
|
21 |
# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
22 |
# CA 95054 USA or visit www.sun.com if you need additional information or |
|
23 |
# have any questions. |
|
24 |
# |
|
25 |
||
26 |
# |
|
27 |
# Makefile for building the jvmti demo(s) |
|
28 |
# |
|
29 |
||
30 |
BUILDDIR = ../.. |
|
4665
d14dc3d9e1fa
6911737: Module build: generate modules with native libraries and any other files not in jar
mchung
parents:
2
diff
changeset
|
31 |
MODULE = demos |
2 | 32 |
PRODUCT = demos |
33 |
include $(BUILDDIR)/common/Defs.gmk |
|
34 |
||
35 |
# Can be built in any order, the JRE version of hprof and java_crw_demo are |
|
36 |
# really built in make/java. |
|
4808
37f605425f74
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
4665
diff
changeset
|
37 |
# The hprof target here just delivers the sources and README files. |
2 | 38 |
# The java_crw_demo and agent_util files are copied into each demo that |
39 |
# uses them. |
|
40 |
SUBDIRS = \ |
|
41 |
versionCheck \ |
|
4808
37f605425f74
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
4665
diff
changeset
|
42 |
compiledMethodLoad \ |
37f605425f74
6580131: 3/4 CompiledMethodLoad events don't produce the expected extra notifications to describe inlining
dcubed
parents:
4665
diff
changeset
|
43 |
gctest \ |
2 | 44 |
heapViewer \ |
45 |
heapTracker \ |
|
46 |
minst \ |
|
47 |
mtrace \ |
|
48 |
waiters \ |
|
49 |
hprof |
|
50 |
||
51 |
all build clean clobber:: |
|
52 |
$(SUBDIRS-loop) |
|
53 |
||
54 |
all build :: $(DEMODIR)/jvmti/index.html |
|
55 |
||
56 |
$(DEMODIR)/jvmti/index.html: $(SHARE_SRC)/demo/jvmti/index.html |
|
57 |
$(install-file) |
|
58 |