jdk/make/java/net/Makefile
changeset 2446 07047237e4d4
parent 1247 b4c26443dee5
child 4157 558590fb3b49
equal deleted inserted replaced
2445:a1fa6863fc50 2446:07047237e4d4
   106 #
   106 #
   107 # Resources
   107 # Resources
   108 #
   108 #
   109 LOCALE_SET_DEFINITION = jre
   109 LOCALE_SET_DEFINITION = jre
   110 
   110 
   111 properties: $(LIBDIR) $(LIBDIR)/net.properties
   111 MISC_FILES = $(LIBDIR) $(LIBDIR)/net.properties
   112 
   112 
   113 $(LIBDIR)/net.properties: $(SHARE_SRC)/lib/net.properties
   113 $(LIBDIR)/net.properties: $(SHARE_SRC)/lib/net.properties
   114 	@$(RM) $@
   114 	@$(RM) $@
   115 	$(CP) $< $@
   115 	$(CP) $< $@
   116 
   116 
   117 build: properties
   117 # 
       
   118 # SDP configuration template
       
   119 #
       
   120 ifeq ($(PLATFORM), solaris)
       
   121 SDP_PATH = sdp/sdp.conf.template
       
   122 SDP_CONF = $(LIBDIR)/$(SDP_PATH)
       
   123 $(SDP_CONF): $(PLATFORM_SRC)/lib/$(SDP_PATH)
       
   124 	@$(RM) $*
       
   125 	$(install-file)
   118 
   126 
       
   127 MISC_FILES += $(SDP_CONF)
       
   128 endif
       
   129 
       
   130 build: $(MISC_FILES)
       
   131