RmicCommon.gmk revision 13901:b2a69d66dc65
1170477Salc#
2170477Salc# Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
3170477Salc# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4170477Salc#
5170477Salc# This code is free software; you can redistribute it and/or modify it
6170477Salc# under the terms of the GNU General Public License version 2 only, as
7170477Salc# published by the Free Software Foundation.  Oracle designates this
8170477Salc# particular file as subject to the "Classpath" exception as provided
9170477Salc# by Oracle in the LICENSE file that accompanied this code.
10170477Salc#
11170477Salc# This code is distributed in the hope that it will be useful, but WITHOUT
12170477Salc# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13170477Salc# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14170477Salc# version 2 for more details (a copy is included in the LICENSE file that
15170477Salc# accompanied this code).
16170477Salc#
17170477Salc# You should have received a copy of the GNU General Public License version
18170477Salc# 2 along with this work; if not, write to the Free Software Foundation,
19170477Salc# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20170477Salc#
21170477Salc# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22170477Salc# or visit www.oracle.com if you need additional information or have any
23170477Salc# questions.
24170477Salc#
25170477Salc
26170477Salcdefault: all
27170477Salc
28170477Salcinclude $(SPEC)
29170477Salcinclude MakeBase.gmk
30170477Salcinclude RMICompilation.gmk
31170477Salc
32227568Salc##########################################################################################
33227568Salc
34227568SalcRMIC := $(JAVA) $(INTERIM_OVERRIDE_MODULES_ARGS) sun.rmi.rmic.Main
35227568Salc
36227568SalcCLASSES_DIR := $(JDK_OUTPUTDIR)/modules
37227568Salc# NOTE: If the smart javac dependency management is reintroduced, these classes risk
38227568Salc# interfering with the dependency checking. In that case they will need to be kept separate.
39170477SalcSTUB_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules
40170477SalcRMIC_GENSRC_DIR := $(SUPPORT_OUTPUTDIR)/rmic
41170477Salc
42170477Salc##########################################################################################
43246805Sjhb