jdk/make/sun/management/Makefile
changeset 4665 d14dc3d9e1fa
parent 2285 37fdbed8178f
child 4917 c98da2209f8c
equal deleted inserted replaced
4664:0b0443cbc448 4665:d14dc3d9e1fa
    26 #
    26 #
    27 # Makefile for building JDK out of the box management support 
    27 # Makefile for building JDK out of the box management support 
    28 #
    28 #
    29 
    29 
    30 BUILDDIR = ../..
    30 BUILDDIR = ../..
       
    31 MODULE   = management
       
    32 
    31 include $(BUILDDIR)/common/Defs.gmk
    33 include $(BUILDDIR)/common/Defs.gmk
    32 
    34 
    33 MGMT_LIBDIR = $(LIBDIR)/management
    35 MGMT_LIBDIR = $(LIBDIR)/management
    34 MGMT_LIB_SRC = $(SHARE_SRC)/lib/management
    36 MGMT_LIB_SRC = $(SHARE_SRC)/lib/management
    35 
    37 
    54 
    56 
    55 jmxremotefiles: $(MGMT_LIBDIR)/jmxremote.password.template $(MGMT_LIBDIR)/jmxremote.access
    57 jmxremotefiles: $(MGMT_LIBDIR)/jmxremote.password.template $(MGMT_LIBDIR)/jmxremote.access
    56 
    58 
    57 $(MGMT_LIBDIR)/management.properties: $(MGMT_LIB_SRC)/management.properties
    59 $(MGMT_LIBDIR)/management.properties: $(MGMT_LIB_SRC)/management.properties
    58 	$(install-file)
    60 	$(install-file)
    59 	$(CHMOD) 644 $@
    61 	$(call chmod-file, 644)
    60 
    62 
    61 $(MGMT_LIBDIR)/snmp.acl.template: $(MGMT_LIB_SRC)/snmp.acl.template
    63 $(MGMT_LIBDIR)/snmp.acl.template: $(MGMT_LIB_SRC)/snmp.acl.template
    62 	$(install-file)
    64 	$(install-file)
    63 	$(CHMOD) 444 $@
    65 	$(call chmod-file, 444)
    64 
    66 
    65 $(MGMT_LIBDIR)/jmxremote.password.template: $(MGMT_LIB_SRC)/jmxremote.password.template
    67 $(MGMT_LIBDIR)/jmxremote.password.template: $(MGMT_LIB_SRC)/jmxremote.password.template
    66 	$(install-file)
    68 	$(install-file)
    67 	$(CHMOD) 444 $@
    69 	$(call chmod-file, 444)
    68 
    70 
    69 $(MGMT_LIBDIR)/jmxremote.access: $(MGMT_LIB_SRC)/jmxremote.access 
    71 $(MGMT_LIBDIR)/jmxremote.access: $(MGMT_LIB_SRC)/jmxremote.access 
    70 	$(install-file)
    72 	$(install-file)
    71 	$(CHMOD) 644 $@
    73 	$(call chmod-file, 644)
    72 
    74