Makefile revision 803
7321N/A#
7321N/A# Copyright 1997-2005 Sun Microsystems, Inc. All Rights Reserved.
7321N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7321N/A#
7321N/A# This code is free software; you can redistribute it and/or modify it
7321N/A# under the terms of the GNU General Public License version 2 only, as
7321N/A# published by the Free Software Foundation. Sun designates this
7321N/A# particular file as subject to the "Classpath" exception as provided
7321N/A# by Sun in the LICENSE file that accompanied this code.
7321N/A#
7321N/A# This code is distributed in the hope that it will be useful, but WITHOUT
7321N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7321N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
7321N/A# version 2 for more details (a copy is included in the LICENSE file that
7321N/A# accompanied this code).
7321N/A#
7321N/A# You should have received a copy of the GNU General Public License version
7321N/A# 2 along with this work; if not, write to the Free Software Foundation,
7321N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7321N/A#
7321N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
7321N/A# CA 95054 USA or visit www.sun.com if you need additional information or
7321N/A# have any questions.
7321N/A#
7321N/A
7321N/A#
7321N/A# Install a wrapper for the "rmid" command. The associated classfiles
7321N/A# are built at a higher level.
7321N/A#
7321N/A
7321N/ABUILDDIR = ../../..
7321N/APACKAGE = sun.rmi.activation
7321N/APRODUCT = sun
7321N/Ainclude $(BUILDDIR)/common/Defs.gmk
7321N/A
7321N/Abuild: stubs
7321N/A
7321N/A#
7321N/A# Resources
7321N/A#
7321N/ALOCALE_SET_DEFINITION = jre
7321N/ARESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = sun/rmi/server/resources/rmid.properties
7321N/A
7321N/A#
7321N/A# Extra dependencies.
7321N/A#
7321N/Aclasses: stubs
7321N/A
7321N/A#
7321N/A# Rules to build activation-system stubs
7321N/A#
7321N/A
7321N/A# Full package names of implementations requiring stubs
7321N/AREMOTE_impls = \
7321N/A sun.rmi.server.Activation$$ActivationSystemImpl \
7321N/A java.rmi.activation.ActivationGroup
7321N/A
7321N/AREMOTE_files = $(subst .,/,$(REMOTE_impls))
7321N/AFILES_stubs = $(REMOTE_files:%=$(CLASSBINDIR)/%_Stub.class)
7321N/A
7321N/A#
7321N/A# Compile stubs for remote implementations
7321N/A# (use -v1.2 stubs for activation system)
7321N/A#
7321N/A
7321N/A$(CLASSBINDIR)/%_Stub.class: $(CLASSBINDIR)/%.class
7321N/A $(RMIC) -v1.2 -classpath $(CLASSBINDIR) \
7321N/A -d $(CLASSBINDIR) '$(subst /,.,$(<:$(CLASSBINDIR)/%.class=%))'
7321N/A @$(java-vm-cleanup)
7321N/A
7321N/Astubs: $(FILES_stubs)
7321N/A
7321N/A#
7321N/A# Rules to
7321N/A#
7321N/Ainclude $(BUILDDIR)/common/Classes.gmk
7321N/A
7321N/A
7321N/A