sa.make revision 91
0N/A#
0N/A# Copyright 2003-2007 Sun Microsystems, Inc. All Rights Reserved.
0N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
0N/A#
0N/A# This code is free software; you can redistribute it and/or modify it
0N/A# under the terms of the GNU General Public License version 2 only, as
0N/A# published by the Free Software Foundation.
0N/A#
0N/A# This code is distributed in the hope that it will be useful, but WITHOUT
0N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
0N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
0N/A# version 2 for more details (a copy is included in the LICENSE file that
0N/A# accompanied this code).
0N/A#
0N/A# You should have received a copy of the GNU General Public License version
0N/A# 2 along with this work; if not, write to the Free Software Foundation,
0N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
0N/A#
0N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
0N/A# CA 95054 USA or visit www.sun.com if you need additional information or
0N/A# have any questions.
0N/A#
0N/A#
0N/A
0N/A# This makefile (sa.make) is included from the sa.make in the
0N/A# build directories.
0N/A
0N/A# This makefile is used to build Serviceability Agent java code
0N/A# and generate JNI header file for native methods.
0N/A
91N/Ainclude $(GAMMADIR)/make/solaris/makefiles/rules.make
0N/AAGENT_DIR = $(GAMMADIR)/agent
91N/Ainclude $(GAMMADIR)/make/sa.files
0N/AGENERATED = ../generated
0N/A
0N/A# tools.jar is needed by the JDI - SA binding
0N/ASA_CLASSPATH = $(BOOT_JAVA_HOME)/lib/tools.jar
0N/A
0N/A# gnumake 3.78.1 does not accept the *s that
0N/A# are in AGENT_ALLFILES, so use the shell to expand them
0N/AAGENT_ALLFILES := $(shell /usr/bin/test -d $(AGENT_DIR) && /bin/ls $(AGENT_ALLFILES))
0N/A
0N/ASA_CLASSDIR = $(GENERATED)/saclasses
0N/A
0N/ASA_BUILD_VERSION_PROP = "sun.jvm.hotspot.runtime.VM.saBuildVersion=$(SA_BUILD_VERSION)"
0N/A
0N/ASA_PROPERTIES = $(SA_CLASSDIR)/sa.properties
0N/A
0N/A# if $(AGENT_DIR) does not exist, we don't build SA.
0N/Aall:
0N/A $(QUIETLY) if [ -d $(AGENT_DIR) ] ; then \
0N/A $(MAKE) -f sa.make $(GENERATED)/sa-jdi.jar; \
0N/A fi
0N/A
0N/A$(GENERATED)/sa-jdi.jar: $(AGENT_ALLFILES)
0N/A $(QUIETLY) echo "Making $@";
0N/A $(QUIETLY) if [ "$(BOOT_JAVA_HOME)" = "" ]; then \
0N/A echo "ALT_BOOTDIR, BOOTDIR or JAVA_HOME needs to be defined to build SA"; \
0N/A exit 1; \
0N/A fi
0N/A $(QUIETLY) if [ ! -f $(SA_CLASSPATH) ] ; then \
0N/A echo "Missing $(SA_CLASSPATH) file. Use 1.6.0 or later version of JDK";\
0N/A echo ""; \
0N/A exit 1; \
0N/A fi
0N/A $(QUIETLY) if [ ! -d $(SA_CLASSDIR) ] ; then \
0N/A mkdir -p $(SA_CLASSDIR); \
0N/A fi
0N/A $(QUIETLY) $(COMPILE.JAVAC) -source 1.4 -classpath $(SA_CLASSPATH) -g -d $(SA_CLASSDIR) $(AGENT_ALLFILES)
0N/A $(QUIETLY) $(COMPILE.RMIC) -classpath $(SA_CLASSDIR) -d $(SA_CLASSDIR) sun.jvm.hotspot.debugger.remote.RemoteDebuggerServer
0N/A $(QUIETLY) echo "$(SA_BUILD_VERSION_PROP)" > $(SA_PROPERTIES)
0N/A $(QUIETLY) $(RUN.JAR) cf $@ -C $(SA_CLASSDIR)/ .
0N/A $(QUIETLY) $(RUN.JAR) uf $@ -C $(AGENT_SRC_DIR) META-INF/services/com.sun.jdi.connect.Connector
0N/A $(QUIETLY) $(RUN.JAVAH) -classpath $(SA_CLASSDIR) -d $(GENERATED) -jni sun.jvm.hotspot.debugger.proc.ProcDebuggerLocal
0N/A
0N/Aclean:
0N/A rm -rf $(SA_CLASSDIR)
0N/A rm -rf $(GENERATED)/sa-jdi.jar