jdk/make/rmic/RmicCommon.gmk
changeset 27565 729f9700483a
parent 25859 3317bb8137f4
child 32500 164fa1c0bad8
equal deleted inserted replaced
27564:eaaa79b68cd5 27565:729f9700483a
     1 #
     1 #
     2 # Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
     2 # Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     7 # published by the Free Software Foundation.  Oracle designates this
    29 include MakeBase.gmk
    29 include MakeBase.gmk
    30 include RMICompilation.gmk
    30 include RMICompilation.gmk
    31 
    31 
    32 ##########################################################################################
    32 ##########################################################################################
    33 
    33 
    34 BTRMIC_CP := $(INTERIM_CORBA_JAR)$(PATH_SEP)$(JDK_OUTPUTDIR)/interim_rmic_classes$(PATH_SEP)$(INTERIM_LANGTOOLS_JAR)
    34 BTRMIC_CP := $(INTERIM_CORBA_JAR)$(PATH_SEP)$(BUILDTOOLS_OUTPUTDIR)/interim_rmic_classes$(PATH_SEP)$(INTERIM_LANGTOOLS_JAR)
    35 BTRMIC_ARGS := "-Xbootclasspath/p:$(BTRMIC_CP)" -cp "$(BTRMIC_CP)"
    35 BTRMIC_ARGS := "-Xbootclasspath/p:$(BTRMIC_CP)" -cp "$(BTRMIC_CP)"
    36 RMIC := $(JAVA) $(BTRMIC_ARGS) sun.rmi.rmic.Main
    36 RMIC := $(JAVA) $(BTRMIC_ARGS) sun.rmi.rmic.Main
    37 
    37 
    38 CLASSES_DIR := $(JDK_OUTPUTDIR)/modules
    38 CLASSES_DIR := $(JDK_OUTPUTDIR)/modules
    39 # NOTE: If the smart javac dependency management is reintroduced, these classes risk
    39 # NOTE: If the smart javac dependency management is reintroduced, these classes risk
    40 # interfering with the dependency checking. In that case they will need to be kept separate.
    40 # interfering with the dependency checking. In that case they will need to be kept separate.
    41 STUB_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules
    41 STUB_CLASSES_DIR := $(JDK_OUTPUTDIR)/modules
    42 RMIC_GENSRC_DIR := $(JDK_OUTPUTDIR)/gendocsrc_rmic
    42 RMIC_GENSRC_DIR := $(SUPPORT_OUTPUTDIR)/rmic
    43 
    43 
    44 ##########################################################################################
    44 ##########################################################################################