make/rmic/Rmic-java.management.gmk

Print this page
rev 10551 : 8056246: Fix AIX build after the Modular Source Code change 8054834


  44 $(eval $(call SetupRMICompilation,RMI_IIOP, \
  45     CLASSES := $(JMX_RMI_CLASSES), \
  46     CLASSES_DIR := $(CLASSES_DIR)/java.management, \
  47     STUB_CLASSES_DIR := $(STUB_CLASSES_DIR)/java.management, \
  48     RUN_V12 := true, \
  49     RUN_IIOP := $(GENRMIIIOPCLASSES), \
  50     RUN_IIOP_STDPKG := $(GENRMIIIOPCLASSES)))
  51 
  52 # Keep generated RMI/JRMP Stub source files and copy them to RMIC_GENSRC_DIR
  53 # so that javadoc can include them in the API (4997471)
  54 $(eval $(call SetupRMICompilation,RMI_SRC, \
  55     CLASSES := $(JMX_RMI_CLASSES), \
  56     CLASSES_DIR := $(CLASSES_DIR)/java.management, \
  57     STUB_CLASSES_DIR := $(RMIC_GENSRC_DIR), \
  58     RUN_V12 := true, \
  59     KEEP_GENERATED := true))
  60 
  61 ##########################################################################################
  62 
  63 $(RMIC_GENSRC_DIR)/_the.classes.removed: $(RMI_IIOP) $(RMI_SRC)
  64         $(FIND) $(RMIC_GENSRC_DIR) -name "*.class" $(FIND_DELETE)
  65         $(TOUCH) $@
  66 
  67 all: $(RMIC_GENSRC_DIR)/_the.classes.removed $(RMI_IIOP) $(RMI_SRC)
  68 
  69 .PHONY: all


  44 $(eval $(call SetupRMICompilation,RMI_IIOP, \
  45     CLASSES := $(JMX_RMI_CLASSES), \
  46     CLASSES_DIR := $(CLASSES_DIR)/java.management, \
  47     STUB_CLASSES_DIR := $(STUB_CLASSES_DIR)/java.management, \
  48     RUN_V12 := true, \
  49     RUN_IIOP := $(GENRMIIIOPCLASSES), \
  50     RUN_IIOP_STDPKG := $(GENRMIIIOPCLASSES)))
  51 
  52 # Keep generated RMI/JRMP Stub source files and copy them to RMIC_GENSRC_DIR
  53 # so that javadoc can include them in the API (4997471)
  54 $(eval $(call SetupRMICompilation,RMI_SRC, \
  55     CLASSES := $(JMX_RMI_CLASSES), \
  56     CLASSES_DIR := $(CLASSES_DIR)/java.management, \
  57     STUB_CLASSES_DIR := $(RMIC_GENSRC_DIR), \
  58     RUN_V12 := true, \
  59     KEEP_GENERATED := true))
  60 
  61 ##########################################################################################
  62 
  63 $(RMIC_GENSRC_DIR)/_the.classes.removed: $(RMI_IIOP) $(RMI_SRC)
  64         $(FIND) $(RMIC_GENSRC_DIR) \( -name "*.class" -o -name $(@F) \) $(FIND_DELETE)
  65         $(TOUCH) $@
  66 
  67 all: $(RMIC_GENSRC_DIR)/_the.classes.removed $(RMI_IIOP) $(RMI_SRC)
  68 
  69 .PHONY: all