Makefile revision 4632
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# Copyright (c) 2004, 2010, Oracle and/or its affiliates. All rights reserved.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# This code is free software; you can redistribute it and/or modify it
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# under the terms of the GNU General Public License version 2 only, as
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# published by the Free Software Foundation. Oracle designates this
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# particular file as subject to the "Classpath" exception as provided
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# by Oracle in the LICENSE file that accompanied this code.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# This code is distributed in the hope that it will be useful, but WITHOUT
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# version 2 for more details (a copy is included in the LICENSE file that
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# accompanied this code).
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# You should have received a copy of the GNU General Public License version
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# 2 along with this work; if not, write to the Free Software Foundation,
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# or visit www.oracle.com if you need additional information or have any
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# questions.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaBUILDDIR = ../../..
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaPRODUCT = demo/jvmti
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMONAME = hprof
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmainclude $(BUILDDIR)/common/Defs.gmk
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMO_ROOT = $(SHARE_SRC)/demo/jvmti/$(DEMONAME)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMO_TOPFILES = ./README.txt
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMO_PSRCDIR = $(PLATFORM_SRC)/demo/jvmti/$(DEMONAME)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMO_DESTDIR = $(DEMODIR)/jvmti/$(DEMONAME)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaDEMO_OBJECTS = java_crw_demo.$(OBJECT_SUFFIX)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaifeq ($(PLATFORM), windows)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma EXTRA_LIBS += wsock32.lib winmm.lib
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaelse
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma OTHER_LDLIBS += $(LIBSOCKET) $(LIBNSL) $(LIBDL)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaifeq ($(PLATFORM), linux)
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma OTHER_LDLIBS += -lpthread
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaendif
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmaendif
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma# Demo jar building rules.
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma#
2c8454e288252bcfa5e77ea3d35bfed05266b869hajmainclude $(BUILDDIR)/common/Demo.gmk
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma
2c8454e288252bcfa5e77ea3d35bfed05266b869hajma