< prev index next >

make/common/RMICompilation.gmk

Print this page




  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Setup make rules for creating an RMI compilation.
  27 #
  28 # Parameter 1 is the name of the rule. This name is used as variable prefix,
  29 # and the targets generated are listed in a variable by that name.
  30 #
  31 # Remaining parameters are named arguments. These include:
  32 #   CLASSES:=List of classes to generate stubs for
  33 #   CLASSES_DIR:=Directory where to look for classes
  34 #   STUB_CLASSES_DIR:=Directory in where to put stub classes
  35 #   RUN_V11:=Set to run rmic with -v1.1
  36 #   RUN_V12:=Set to run rmic with -v1.2
  37 #   RUN_IIOP:=Set to run rmic with -iiop
  38 #   RUN_IIOP_STDPKG:=Set to run rmic with -iiop -standardPackage
  39 #   KEEP_GENERATED:=Set to keep generated sources around
  40 SetupRMICompilation = $(NamedParamsMacroTemplate)
  41 define SetupRMICompilationBody
  42 
  43   $1_DEP_FILE := $$($1_STUB_CLASSES_DIR)/_the.$1_rmic.generated
  44 
  45   $1_CLASSES_SLASH := $$(subst .,/,$$($1_CLASSES))
  46   $1_CLASS_FILES := $$(addprefix $$($1_CLASSES_DIR)/,$$(addsuffix .class,$$($1_CLASSES_SLASH)))
  47   $1_STUB_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Stub.class,$$($1_CLASSES_SLASH)))
  48   $1_TARGETS := $$($1_STUB_FILES)
  49   $1_ARGS :=
  50   ifneq (,$$($1_RUN_V11))
  51     $1_SKEL_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Skel.class,$$($1_CLASSES_SLASH)))
  52     $1_TARGETS += $$($1_SKEL_FILES)
  53     $1_ARGS += -v1.1
  54   endif
  55   ifneq (,$$($1_RUN_V12))
  56     $1_ARGS += -v1.2
  57   endif
  58 
  59   $1_TIE_BASE_FILES := $$(foreach f,$$($1_CLASSES_SLASH),$$(dir $$f)_$$(notdir $$f))
  60   $1_TIE_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/org/omg/stub/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
  61   $1_TIE_STDPKG_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
  62 
  63   ifneq (,$$($1_RUN_IIOP))
  64     $1_TARGETS += $$($1_TIE_FILES)
  65     $1_ARGS += -iiop -emitPermissionCheck
  66   endif
  67   ifneq (,$$($1_RUN_IIOP_STDPKG))
  68     $1_TARGETS += $$($1_TIE_STDPKG_FILES)
  69     $1_ARGS2 := -iiop -emitPermissionCheck -standardPackage
  70   endif
  71 
  72   ifneq (,$$($1_KEEP_GENERATED))
  73     $1_ARGS += -keepgenerated
  74     $1_TARGETS += $$(subst .class,.java,$$($1_TARGETS))
  75   endif
  76 
  77   $1_DOLLAR_SAFE_CLASSES := $$(subst $$$$,\$$$$,$$($1_CLASSES))
  78 
  79   $$($1_TARGETS): $$($1_DEP_FILE) $$($1_CLASS_FILES)
  80 
  81   $$($1_DEP_FILE): $$($1_CLASS_FILES)
  82         $(MKDIR) -p $$($1_STUB_CLASSES_DIR)
  83         $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS) for $$($1_DOLLAR_SAFE_CLASSES) && \
  84         $(RMIC) $$($1_ARGS) -classpath "$$($1_CLASSES_DIR)" \
  85             -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  86         if [ "x$$($1_ARGS2)" != "x" ]; then \
  87           $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS2) for $$($1_DOLLAR_SAFE_CLASSES) && \
  88           $(RMIC) $$($1_ARGS2) -classpath "$$($1_CLASSES_DIR)" \
  89               -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  90         fi;


  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 # Setup make rules for creating an RMI compilation.
  27 #
  28 # Parameter 1 is the name of the rule. This name is used as variable prefix,
  29 # and the targets generated are listed in a variable by that name.
  30 #
  31 # Remaining parameters are named arguments. These include:
  32 #   CLASSES:=List of classes to generate stubs for
  33 #   CLASSES_DIR:=Directory where to look for classes
  34 #   STUB_CLASSES_DIR:=Directory in where to put stub classes
  35 #   RUN_V11:=Set to run rmic with -v1.1
  36 #   RUN_V12:=Set to run rmic with -v1.2


  37 #   KEEP_GENERATED:=Set to keep generated sources around
  38 SetupRMICompilation = $(NamedParamsMacroTemplate)
  39 define SetupRMICompilationBody
  40 
  41   $1_DEP_FILE := $$($1_STUB_CLASSES_DIR)/_the.$1_rmic.generated
  42 
  43   $1_CLASSES_SLASH := $$(subst .,/,$$($1_CLASSES))
  44   $1_CLASS_FILES := $$(addprefix $$($1_CLASSES_DIR)/,$$(addsuffix .class,$$($1_CLASSES_SLASH)))
  45   $1_STUB_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Stub.class,$$($1_CLASSES_SLASH)))
  46   $1_TARGETS := $$($1_STUB_FILES)
  47   $1_ARGS :=
  48   ifneq (,$$($1_RUN_V11))
  49     $1_SKEL_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Skel.class,$$($1_CLASSES_SLASH)))
  50     $1_TARGETS += $$($1_SKEL_FILES)
  51     $1_ARGS += -v1.1
  52   endif
  53   ifneq (,$$($1_RUN_V12))
  54     $1_ARGS += -v1.2
  55   endif
  56 
  57   $1_TIE_BASE_FILES := $$(foreach f,$$($1_CLASSES_SLASH),$$(dir $$f)_$$(notdir $$f))
  58   $1_TIE_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/org/omg/stub/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))
  59   $1_TIE_STDPKG_FILES := $$(addprefix $$($1_STUB_CLASSES_DIR)/,$$(addsuffix _Tie.class,$$($1_TIE_BASE_FILES)))









  60 
  61   ifneq (,$$($1_KEEP_GENERATED))
  62     $1_ARGS += -keepgenerated
  63     $1_TARGETS += $$(subst .class,.java,$$($1_TARGETS))
  64   endif
  65 
  66   $1_DOLLAR_SAFE_CLASSES := $$(subst $$$$,\$$$$,$$($1_CLASSES))
  67 
  68   $$($1_TARGETS): $$($1_DEP_FILE) $$($1_CLASS_FILES)
  69 
  70   $$($1_DEP_FILE): $$($1_CLASS_FILES)
  71         $(MKDIR) -p $$($1_STUB_CLASSES_DIR)
  72         $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS) for $$($1_DOLLAR_SAFE_CLASSES) && \
  73         $(RMIC) $$($1_ARGS) -classpath "$$($1_CLASSES_DIR)" \
  74             -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  75         if [ "x$$($1_ARGS2)" != "x" ]; then \
  76           $(ECHO) $(LOG_INFO) Running rmic $$($1_ARGS2) for $$($1_DOLLAR_SAFE_CLASSES) && \
  77           $(RMIC) $$($1_ARGS2) -classpath "$$($1_CLASSES_DIR)" \
  78               -d $$($1_STUB_CLASSES_DIR) $$($1_DOLLAR_SAFE_CLASSES); \
  79         fi;
< prev index next >