95c56a472b
Co-authored-by: Greg Lewis <glewis@eyesbeyond.com> Co-authored-by: Jung-uk Kim <jkim@freebsd.org> Co-authored-by: Christos Zoulas <christos@zoulas.com> Co-authored-by: Landon Fuller <landonf@plausible.coop> Co-authored-by: The FreeBSD Foundation <board@freebsdfoundation.org> Co-authored-by: Michael Franz <mvfranz@gmail.com> Co-authored-by: Roger Hoover <rhoover@apple.com> Co-authored-by: Alexander Strange <astrange@apple.com> Reviewed-by: kvn, twisti, jrose
118 lines
4.8 KiB
Makefile
118 lines
4.8 KiB
Makefile
#
|
|
# Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
|
|
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
#
|
|
# This code is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License version 2 only, as
|
|
# published by the Free Software Foundation.
|
|
#
|
|
# This code is distributed in the hope that it will be useful, but WITHOUT
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
# version 2 for more details (a copy is included in the LICENSE file that
|
|
# accompanied this code).
|
|
#
|
|
# You should have received a copy of the GNU General Public License version
|
|
# 2 along with this work; if not, write to the Free Software Foundation,
|
|
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
#
|
|
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
|
# or visit www.oracle.com if you need additional information or have any
|
|
# questions.
|
|
#
|
|
#
|
|
|
|
# This makefile (jvmti.make) is included from the jvmti.make in the
|
|
# build directories.
|
|
#
|
|
# It knows how to build and run the tools to generate jvmti.
|
|
|
|
include $(GAMMADIR)/make/bsd/makefiles/rules.make
|
|
|
|
# #########################################################################
|
|
|
|
TOPDIR = $(shell echo `pwd`)
|
|
GENERATED = $(TOPDIR)/../generated
|
|
JvmtiOutDir = $(GENERATED)/jvmtifiles
|
|
|
|
JvmtiSrcDir = $(GAMMADIR)/src/share/vm/prims
|
|
InterpreterSrcDir = $(GAMMADIR)/src/share/vm/interpreter
|
|
|
|
# set VPATH so make knows where to look for source files
|
|
Src_Dirs_V += $(JvmtiSrcDir)
|
|
VPATH += $(Src_Dirs_V:%=%:)
|
|
|
|
JvmtiGeneratedNames = \
|
|
jvmtiEnv.hpp \
|
|
jvmtiEnter.cpp \
|
|
jvmtiEnterTrace.cpp \
|
|
jvmtiEnvRecommended.cpp \
|
|
bytecodeInterpreterWithChecks.cpp \
|
|
jvmti.h \
|
|
|
|
JvmtiEnvFillSource = $(JvmtiSrcDir)/jvmtiEnvFill.java
|
|
JvmtiEnvFillClass = $(JvmtiOutDir)/jvmtiEnvFill.class
|
|
|
|
JvmtiGenSource = $(JvmtiSrcDir)/jvmtiGen.java
|
|
JvmtiGenClass = $(JvmtiOutDir)/jvmtiGen.class
|
|
|
|
JvmtiGeneratedFiles = $(JvmtiGeneratedNames:%=$(JvmtiOutDir)/%)
|
|
|
|
XSLT = $(QUIETLY) $(REMOTE) $(RUN.JAVA) -classpath $(JvmtiOutDir) jvmtiGen
|
|
|
|
.PHONY: all jvmtidocs clean cleanall
|
|
|
|
# #########################################################################
|
|
|
|
all: $(JvmtiGeneratedFiles)
|
|
|
|
both = $(JvmtiGenClass) $(JvmtiSrcDir)/jvmti.xml $(JvmtiSrcDir)/jvmtiLib.xsl
|
|
|
|
$(JvmtiGenClass): $(JvmtiGenSource)
|
|
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -d $(JvmtiOutDir) $(JvmtiGenSource)
|
|
|
|
$(JvmtiEnvFillClass): $(JvmtiEnvFillSource)
|
|
$(QUIETLY) $(REMOTE) $(COMPILE.JAVAC) -d $(JvmtiOutDir) $(JvmtiEnvFillSource)
|
|
|
|
$(JvmtiOutDir)/jvmtiEnter.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnter.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnter.xsl -OUT $(JvmtiOutDir)/jvmtiEnter.cpp -PARAM interface jvmti
|
|
|
|
$(JvmtiOutDir)/bytecodeInterpreterWithChecks.cpp: $(JvmtiGenClass) $(InterpreterSrcDir)/bytecodeInterpreter.cpp $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xml $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xml -XSL $(InterpreterSrcDir)/bytecodeInterpreterWithChecks.xsl -OUT $(JvmtiOutDir)/bytecodeInterpreterWithChecks.cpp
|
|
|
|
$(JvmtiOutDir)/jvmtiEnterTrace.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnter.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnter.xsl -OUT $(JvmtiOutDir)/jvmtiEnterTrace.cpp -PARAM interface jvmti -PARAM trace Trace
|
|
|
|
$(JvmtiOutDir)/jvmtiEnvRecommended.cpp: $(both) $(JvmtiSrcDir)/jvmtiEnv.xsl $(JvmtiSrcDir)/jvmtiEnv.cpp $(JvmtiEnvFillClass)
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiEnv.xsl -OUT $(JvmtiOutDir)/jvmtiEnvStub.cpp
|
|
$(QUIETLY) $(REMOTE) $(RUN.JAVA) -classpath $(JvmtiOutDir) jvmtiEnvFill $(JvmtiSrcDir)/jvmtiEnv.cpp $(JvmtiOutDir)/jvmtiEnvStub.cpp $(JvmtiOutDir)/jvmtiEnvRecommended.cpp
|
|
|
|
$(JvmtiOutDir)/jvmtiEnv.hpp: $(both) $(JvmtiSrcDir)/jvmtiHpp.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiHpp.xsl -OUT $(JvmtiOutDir)/jvmtiEnv.hpp
|
|
|
|
$(JvmtiOutDir)/jvmti.h: $(both) $(JvmtiSrcDir)/jvmtiH.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmtiH.xsl -OUT $(JvmtiOutDir)/jvmti.h
|
|
|
|
jvmtidocs: $(JvmtiOutDir)/jvmti.html
|
|
|
|
$(JvmtiOutDir)/jvmti.html: $(both) $(JvmtiSrcDir)/jvmti.xsl
|
|
@echo Generating $@
|
|
$(XSLT) -IN $(JvmtiSrcDir)/jvmti.xml -XSL $(JvmtiSrcDir)/jvmti.xsl -OUT $(JvmtiOutDir)/jvmti.html
|
|
|
|
# #########################################################################
|
|
|
|
clean :
|
|
rm $(JvmtiGenClass) $(JvmtiEnvFillClass) $(JvmtiGeneratedFiles)
|
|
|
|
cleanall :
|
|
rm $(JvmtiGenClass) $(JvmtiEnvFillClass) $(JvmtiGeneratedFiles)
|
|
|
|
# #########################################################################
|
|
|