325N/A#
325N/A# Copyright (c) 2004, 2005, Oracle and/or its affiliates. All rights reserved.
325N/A#
325N/A# Redistribution and use in source and binary forms, with or without
325N/A# modification, are permitted provided that the following conditions
325N/A# are met:
325N/A#
325N/A# - Redistributions of source code must retain the above copyright
325N/A# notice, this list of conditions and the following disclaimer.
325N/A#
325N/A# - Redistributions in binary form must reproduce the above copyright
325N/A# notice, this list of conditions and the following disclaimer in the
325N/A# documentation and/or other materials provided with the distribution.
325N/A#
325N/A# - Neither the name of Oracle nor the names of its
325N/A# contributors may be used to endorse or promote products derived
325N/A# from this software without specific prior written permission.
325N/A#
325N/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
325N/A# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
325N/A# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
325N/A# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
325N/A# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
325N/A# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
325N/A# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
325N/A# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
325N/A# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
325N/A# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
325N/A# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
325N/A#
325N/A
325N/A########################################################################
325N/A#
325N/A# Sample GNU Makefile for building JVMTI Demo versionCheck
325N/A#
325N/A# Example uses:
325N/A# gnumake JDK=<java_home> OSNAME=solaris [OPT=true] [LIBARCH=sparc]
325N/A# gnumake JDK=<java_home> OSNAME=solaris [OPT=true] [LIBARCH=sparcv9]
325N/A# gnumake JDK=<java_home> OSNAME=linux [OPT=true]
325N/A# gnumake JDK=<java_home> OSNAME=win32 [OPT=true]
325N/A#
325N/A########################################################################
325N/A
325N/A# Source lists
325N/ALIBNAME=versionCheck
325N/ASOURCES=versionCheck.c ../agent_util/agent_util.c
325N/A
325N/A# Solaris Sun C Compiler Version 5.5
325N/Aifeq ($(OSNAME), solaris)
325N/A # Sun Solaris Compiler options needed
325N/A COMMON_FLAGS=-mt -KPIC
325N/A # Options that help find errors
325N/A COMMON_FLAGS+= -Xa -v -xstrconst -xc99=%none
325N/A # Check LIBARCH for any special compiler options
325N/A LIBARCH=$(shell uname -p)
325N/A ifeq ($(LIBARCH), sparc)
325N/A COMMON_FLAGS+=-xarch=v8 -xregs=no%appl
325N/A endif
325N/A ifeq ($(LIBARCH), sparcv9)
325N/A COMMON_FLAGS+=-xarch=v9 -xregs=no%appl
325N/A endif
325N/A ifeq ($(OPT), true)
325N/A CFLAGS=-xO2 $(COMMON_FLAGS)
325N/A else
325N/A CFLAGS=-g $(COMMON_FLAGS)
325N/A endif
325N/A # Object files needed to create library
325N/A OBJECTS=$(SOURCES:%.c=%.o)
325N/A # Library name and options needed to build it
325N/A LIBRARY=lib$(LIBNAME).so
325N/A LDFLAGS=-z defs -ztext
# Libraries we are dependent on
LIBRARIES= -lc
# Building a shared library
LINK_SHARED=$(LINK.c) -G -o $@
endif
# Linux GNU C Compiler
ifeq ($(OSNAME), linux)
# GNU Compiler options needed to build it
COMMON_FLAGS=-fno-strict-aliasing -fPIC -fno-omit-frame-pointer
# Options that help find errors
COMMON_FLAGS+= -W -Wall -Wno-unused -Wno-parentheses
ifeq ($(OPT), true)
CFLAGS=-O2 $(COMMON_FLAGS)
else
CFLAGS=-g $(COMMON_FLAGS)
endif
# Object files needed to create library
OBJECTS=$(SOURCES:%.c=%.o)
# Library name and options needed to build it
LIBRARY=lib$(LIBNAME).so
LDFLAGS=-Wl,-soname=$(LIBRARY) -static-libgcc
# Libraries we are dependent on
LIBRARIES=-lc
# Building a shared library
LINK_SHARED=$(LINK.c) -shared -o $@
endif
# Windows Microsoft C/C++ Optimizing Compiler Version 12
ifeq ($(OSNAME), win32)
CC=cl
# Compiler options needed to build it
COMMON_FLAGS=-Gy -DWIN32
# Options that help find errors
COMMON_FLAGS+=-W0 -WX
ifeq ($(OPT), true)
CFLAGS= -Ox -Op -Zi $(COMMON_FLAGS)
else
CFLAGS= -Od -Zi $(COMMON_FLAGS)
endif
# Object files needed to create library
OBJECTS=$(SOURCES:%.c=%.obj)
# Library name and options needed to build it
LIBRARY=$(LIBNAME).dll
LDFLAGS=
# Libraries we are dependent on
LIBRARIES=
# Building a shared library
LINK_SHARED=link -dll -out:$@
endif
# Common -I options
CFLAGS += -I.
CFLAGS += -I../agent_util
CFLAGS += -I$(JDK)/include -I$(JDK)/include/$(OSNAME)
# Default rule
all: $(LIBRARY)
# Build native library
$(LIBRARY): $(OBJECTS)
$(LINK_SHARED) $(OBJECTS) $(LIBRARIES)
# Cleanup the built bits
clean:
rm -f $(LIBRARY) $(OBJECTS)
# Simple tester
test: all
LD_LIBRARY_PATH=`pwd` $(JDK)/bin/java -agentlib:$(LIBNAME) -version
# Compilation rule only needed on Windows
ifeq ($(OSNAME), win32)
%.obj: %.c
$(COMPILE.c) $<
endif