Makefile revision 2157
341N/A#
341N/A# Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.
341N/A# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
341N/A#
341N/A# This code is free software; you can redistribute it and/or modify it
341N/A# under the terms of the GNU General Public License version 2 only, as
341N/A# published by the Free Software Foundation. Sun designates this
341N/A# particular file as subject to the "Classpath" exception as provided
341N/A# by Sun in the LICENSE file that accompanied this code.
341N/A#
341N/A# This code is distributed in the hope that it will be useful, but WITHOUT
341N/A# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
341N/A# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
341N/A# version 2 for more details (a copy is included in the LICENSE file that
341N/A# accompanied this code).
341N/A#
341N/A# You should have received a copy of the GNU General Public License version
341N/A# 2 along with this work; if not, write to the Free Software Foundation,
341N/A# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
341N/A#
341N/A# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
341N/A# CA 95054 USA or visit www.sun.com if you need additional information or
341N/A# have any questions.
341N/A#
341N/A
341N/A#
341N/A# Build rmi tools, and sun.rmi.* implementation classes
341N/A#
341N/ABUILDDIR = ../..
341N/Ainclude $(BUILDDIR)/common/Defs.gmk
341N/A
341N/A#
341N/A# Order is important -- you can't build stubs without building rmic first.
341N/A# We need corbalogsources to be built first, since it builds LogWrappers to
341N/A# log the exceptions and generate the right minorcodes. These classes are
341N/A# references in com/sun/corba/se/impl/io and util classes which in turn will
341N/A# be built from rmic Makefile.
341N/A#
341N/ASUBDIRS = oldtools rmic
341N/A
341N/ASUBDIRS += rmi registry rmid
341N/Aifeq ($(PLATFORM), windows)
341N/A SUBDIRS += cgi
341N/Aendif # PLATFORM
341N/A
341N/Ainclude $(BUILDDIR)/common/Subdirs.gmk
341N/A
341N/A# Then do the rest
341N/Aall build clean clobber ::
341N/A $(SUBDIRS-loop)
341N/A
341N/Aclean::
341N/A $(RM) -r $(CLASSBINDIR)/sun/rmi $(CLASSBINDIR)/com/sun/rmi
341N/A