Makefile revision 1365
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Copyright 2003-2005 Sun Microsystems, Inc. All Rights Reserved.
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# This code is free software; you can redistribute it and/or modify it
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# under the terms of the GNU General Public License version 2 only, as
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# published by the Free Software Foundation. Sun designates this
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# particular file as subject to the "Classpath" exception as provided
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# by Sun in the LICENSE file that accompanied this code.
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# This code is distributed in the hope that it will be useful, but WITHOUT
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# version 2 for more details (a copy is included in the LICENSE file that
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# accompanied this code).
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac#
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# You should have received a copy of the GNU General Public License version
8cf870d281dc8c242f083d14dfef05f24aa5fceeJnRouvignac# 2 along with this work; if not, write to the Free Software Foundation,
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# CA 95054 USA or visit www.sun.com if you need additional information or
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# have any questions.
06332cdbe10aaf7af368090091f6f0aeffdeac85jvergara#
9b09e08b4d4f555d0d0d294df4c8dc601754ad92JnRouvignac
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Makefile for building sun.rmi.rmic.* and the "rmic" command
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffBUILDDIR = ../../..
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffPACKAGE = sun.rmi.rmic
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffPRODUCT = sun
06332cdbe10aaf7af368090091f6f0aeffdeac85jvergarainclude $(BUILDDIR)/common/Defs.gmk
06332cdbe10aaf7af368090091f6f0aeffdeac85jvergara
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# This program must contain a manifest that defines the execution level
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# needed to follow standard Vista User Access Control Guidelines
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# This must be set before Program.gmk is included
ad9d86a5c3b3d0a2373882a4ef34efb984b53ceajvergara#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffBUILD_MANIFEST=true
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Files
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffinclude FILES.gmk
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff
06332cdbe10aaf7af368090091f6f0aeffdeac85jvergaraFILES_java = $(RMIC_java)
06332cdbe10aaf7af368090091f6f0aeffdeac85jvergara
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Resources
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffLOCALE_SET_DEFINITION = jdk
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffRESOURCE_BUNDLES_UNCOMPILED_PROPERTIES = $(PKGDIR)/resources/rmic.properties
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff# Rules
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff#
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduffinclude $(BUILDDIR)/common/Classes.gmk
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff
d25372dc8e65a9ed019a88fdf659ca61313f1b31jcduff