2012-04-10 15:22:03 +00:00
|
|
|
#
|
|
|
|
# Copyright (c) 2011, 2012, 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. Oracle designates this
|
|
|
|
# particular file as subject to the "Classpath" exception as provided
|
|
|
|
# by Oracle in the LICENSE file that accompanied this code.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
|
|
|
default: all
|
|
|
|
|
|
|
|
include $(SPEC)
|
|
|
|
include MakeBase.gmk
|
2012-07-03 23:10:44 +00:00
|
|
|
include RMICompilation.gmk
|
|
|
|
|
|
|
|
# To ensure the latest stub generator files are picked up from corba repo
|
|
|
|
# when available, we need to run with latest rmic version available.
|
2012-09-18 18:29:24 +00:00
|
|
|
ifneq ($(COMPILE_TYPE),cross)
|
2012-10-26 21:23:29 +00:00
|
|
|
RMIC := $(FIXPATH) $(JDK_OUTPUTDIR)/bin/rmic
|
2012-07-03 23:10:44 +00:00
|
|
|
endif
|
2012-04-10 15:22:03 +00:00
|
|
|
|
|
|
|
CLASSES_DIR := $(JDK_OUTPUTDIR)/classes
|
2012-06-08 03:40:50 +00:00
|
|
|
# NOTE: If the smart javac dependency management is reintroduced, these classes risk
|
|
|
|
# interfering with the dependency checking. In that case they will need to be kept separate.
|
2012-10-26 21:23:29 +00:00
|
|
|
STUB_CLASSES_DIR := $(JDK_OUTPUTDIR)/classes
|
2012-04-10 15:22:03 +00:00
|
|
|
RMIC_GENSRC_DIR := $(JDK_OUTPUTDIR)/gendocsrc_rmic
|
|
|
|
|
|
|
|
GENCLASSES :=
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
#
|
|
|
|
# Generate RMI stubs
|
|
|
|
#
|
|
|
|
|
|
|
|
$(eval $(call SetupRMICompilation,RMI_12,\
|
|
|
|
CLASSES:=sun.rmi.server.Activation$$$$ActivationSystemImpl\
|
|
|
|
java.rmi.activation.ActivationGroup\
|
|
|
|
com.sun.jndi.rmi.registry.ReferenceWrapper,\
|
2012-06-08 03:40:50 +00:00
|
|
|
CLASSES_DIR:=$(CLASSES_DIR),\
|
2012-04-10 15:22:03 +00:00
|
|
|
STUB_CLASSES_DIR:=$(STUB_CLASSES_DIR),\
|
|
|
|
RUN_V12:=true))
|
|
|
|
GENCLASSES += $(RMI_12)
|
|
|
|
|
|
|
|
$(eval $(call SetupRMICompilation,RMI_11,\
|
|
|
|
CLASSES:=sun.rmi.registry.RegistryImpl\
|
|
|
|
sun.rmi.transport.DGCImpl,\
|
2012-06-08 03:40:50 +00:00
|
|
|
CLASSES_DIR:=$(CLASSES_DIR),\
|
2012-04-10 15:22:03 +00:00
|
|
|
STUB_CLASSES_DIR:=$(STUB_CLASSES_DIR),\
|
|
|
|
RUN_V11:=true))
|
|
|
|
GENCLASSES += $(RMI_11)
|
|
|
|
|
|
|
|
# For RMI/IIOP call rmic a second time with -standardPackage option
|
|
|
|
# so that *_tie classes are generated in package without the prefix
|
|
|
|
# org.omg.stub (6375696)
|
|
|
|
JMAN_RMI_CLASSES:=javax.management.remote.rmi.RMIConnectionImpl\
|
|
|
|
javax.management.remote.rmi.RMIServerImpl
|
|
|
|
$(eval $(call SetupRMICompilation,RMI_IIOP,\
|
|
|
|
CLASSES:=$(JMAN_RMI_CLASSES),\
|
2012-06-08 03:40:50 +00:00
|
|
|
CLASSES_DIR:=$(CLASSES_DIR),\
|
2012-04-10 15:22:03 +00:00
|
|
|
STUB_CLASSES_DIR:=$(STUB_CLASSES_DIR),\
|
|
|
|
RUN_V12:=true,\
|
|
|
|
RUN_IIOP:=true,\
|
|
|
|
RUN_IIOP_STDPKG:=true))
|
|
|
|
GENCLASSES += $(RMI_IIOP)
|
|
|
|
|
|
|
|
# Keep generated RMI/JRMP Stub source files and copy them to RMIC_GENSRC_DIR
|
|
|
|
# so that javadoc can include them in the API (4997471)
|
|
|
|
$(eval $(call SetupRMICompilation,RMI_SRC,\
|
|
|
|
CLASSES:=$(JMAN_RMI_CLASSES),\
|
2012-06-08 03:40:50 +00:00
|
|
|
CLASSES_DIR:=$(CLASSES_DIR),\
|
2012-04-10 15:22:03 +00:00
|
|
|
STUB_CLASSES_DIR:=$(RMIC_GENSRC_DIR),\
|
|
|
|
RUN_V12:=true,\
|
|
|
|
KEEP_GENERATED:=true))
|
|
|
|
GENCLASSES += $(filter %.java,$(RMI_SRC))
|
|
|
|
|
|
|
|
##########################################################################################
|
|
|
|
|
2012-10-26 21:23:29 +00:00
|
|
|
$(RMIC_GENSRC_DIR)/_the.classes.removed: $(GENCLASSES)
|
2012-04-10 15:22:03 +00:00
|
|
|
$(FIND) $(RMIC_GENSRC_DIR) -name "*.class" $(FIND_DELETE)
|
2012-10-26 21:23:29 +00:00
|
|
|
$(TOUCH) $@
|
|
|
|
|
|
|
|
all: $(RMIC_GENSRC_DIR)/_the.classes.removed $(GENCLASSES)
|
2012-04-10 15:22:03 +00:00
|
|
|
|
|
|
|
.PHONY: all
|