Makefile revision 3909
203N/A#
203N/A# Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
203N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
203N/A#
203N/A# This code is free software; you can redistribute it and/or modify it
203N/A# under the terms of the GNU General Public License version 2 only, as
203N/A# published by the Free Software Foundation. Oracle designates this
203N/A# particular file as subject to the "Classpath" exception as provided
203N/A# by Oracle in the LICENSE file that accompanied this code.
203N/A#
203N/A# This code is distributed in the hope that it will be useful, but WITHOUT
203N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
203N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
203N/A# version 2 for more details (a copy is included in the LICENSE file that
203N/A# accompanied this code).
203N/A#
203N/A# You should have received a copy of the GNU General Public License version
203N/A# 2 along with this work; if not, write to the Free Software Foundation,
203N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
203N/A#
203N/A# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
203N/A# or visit www.oracle.com if you need additional information or have any
203N/A# questions.
203N/A#
203N/A
203N/A#
618N/A# Makefile for building the jvmti demo(s)
203N/A#
203N/A
203N/ABUILDDIR = ../..
203N/APRODUCT = demos
203N/Ainclude $(BUILDDIR)/common/Defs.gmk
278N/A
278N/A# Can be built in any order, the JRE version of hprof and java_crw_demo are
203N/A# really built in make/java.
203N/A# The hprof target here just delivers the sources and README files.
203N/A# The java_crw_demo and agent_util files are copied into each demo that
203N/A# uses them.
203N/ASUBDIRS = \
203N/A versionCheck \
206N/A compiledMethodLoad \
203N/A gctest \
203N/A heapViewer \
203N/A heapTracker \
203N/A minst \
203N/A mtrace \
203N/A waiters \
203N/A hprof
203N/A
203N/Ainclude $(BUILDDIR)/common/Subdirs.gmk
203N/A
203N/Aall build clean clobber::
203N/A $(SUBDIRS-loop)
203N/A
203N/Aall build :: $(DEMODIR)/jvmti/index.html
203N/A
203N/A$(DEMODIR)/jvmti/index.html: $(SHARE_SRC)/demo/jvmti/index.html
203N/A $(install-file)
203N/A
203N/A