equal
deleted
inserted
replaced
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 |