make/sun/corba/core/Makefile

Tue, 28 Dec 2010 15:52:36 -0800

author
ohair
date
Tue, 28 Dec 2010 15:52:36 -0800
changeset 240
f90b3e014e83
parent 166
888a846a860a
permissions
-rw-r--r--

6962318: Update copyright year
Reviewed-by: xdono

alanb@166 1 #
ohair@240 2 # Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.
alanb@166 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
alanb@166 4 #
alanb@166 5 # This code is free software; you can redistribute it and/or modify it
alanb@166 6 # under the terms of the GNU General Public License version 2 only, as
alanb@166 7 # published by the Free Software Foundation. Oracle designates this
alanb@166 8 # particular file as subject to the "Classpath" exception as provided
alanb@166 9 # by Oracle in the LICENSE file that accompanied this code.
alanb@166 10 #
alanb@166 11 # This code is distributed in the hope that it will be useful, but WITHOUT
alanb@166 12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
alanb@166 13 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
alanb@166 14 # version 2 for more details (a copy is included in the LICENSE file that
alanb@166 15 # accompanied this code).
alanb@166 16 #
alanb@166 17 # You should have received a copy of the GNU General Public License version
alanb@166 18 # 2 along with this work; if not, write to the Free Software Foundation,
alanb@166 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
alanb@166 20 #
alanb@166 21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
alanb@166 22 # or visit www.oracle.com if you need additional information or have any
alanb@166 23 # questions.
alanb@166 24 #
alanb@166 25
alanb@166 26 #
alanb@166 27 # Makefile for building RMI/IIOP
alanb@166 28 #
alanb@166 29
alanb@166 30 BUILDDIR = ../../..
alanb@166 31 PRODUCT = sun
alanb@166 32 include $(BUILDDIR)/common/Defs.gmk
alanb@166 33
alanb@166 34 #
alanb@166 35 # Files to compile.
alanb@166 36 #
alanb@166 37 CORBA_JMK_DIRECTORY=$(TOPDIR)/make/com/sun/corba/minclude/
alanb@166 38 include $(CORBA_JMK_DIRECTORY)javax_rmi.jmk
alanb@166 39 include $(CORBA_JMK_DIRECTORY)javax_rmi_CORBA.jmk
alanb@166 40 include $(CORBA_JMK_DIRECTORY)javax_transaction.jmk
alanb@166 41 include $(CORBA_JMK_DIRECTORY)javax_activity.jmk
alanb@166 42 include $(CORBA_JMK_DIRECTORY)sun_corba.jmk
alanb@166 43
alanb@166 44 FILES_java = \
alanb@166 45 $(javax_rmi_java) \
alanb@166 46 $(javax_rmi_CORBA_java) \
alanb@166 47 $(javax_transaction_java) \
alanb@166 48 $(javax_activity_java) \
alanb@166 49 $(sun_corba_java)
alanb@166 50
alanb@166 51 #
alanb@166 52 # Resources
alanb@166 53 #
alanb@166 54 LOCALE_SET_DEFINITION = jre
alanb@166 55 RESOURCE_BUNDLES_PROPERTIES = \
alanb@166 56 com/sun/corba/se/impl/orbutil/resources/sunorb.properties
alanb@166 57
alanb@166 58 #
alanb@166 59 # Rules
alanb@166 60 #
alanb@166 61 include $(BUILDDIR)/common/Classes.gmk
alanb@166 62
alanb@166 63
alanb@166 64 #
alanb@166 65 # Extra clean rules because we build more than one package.
alanb@166 66 #
alanb@166 67 clean:: classheaders.clean objects.clean
alanb@166 68 $(RM) -r $(CLASSBINDIR)/javax/rmi
alanb@166 69 $(RM) -r $(CLASSBINDIR)/javax/transaction
alanb@166 70 $(RM) -r $(CLASSBINDIR)/javax/activity
alanb@166 71 $(RM) -r $(CLASSBINDIR)/com/sun/corba/se/impl
alanb@166 72

mercurial