equal
deleted
inserted
replaced
39 # |
39 # |
40 # Rules |
40 # Rules |
41 # |
41 # |
42 include $(BUILDDIR)/common/Classes.gmk |
42 include $(BUILDDIR)/common/Classes.gmk |
43 |
43 |
|
44 # |
|
45 # Rules for XML properties provider configuration file |
|
46 # |
|
47 SERVICEDIR = $(CLASSBINDIR)/META-INF/services |
|
48 FILES_copy = $(SERVICEDIR)/sun.util.spi.XmlPropertiesProvider |
|
49 |
|
50 copy-files: $(FILES_copy) |
|
51 |
|
52 $(SERVICEDIR)/%: $(SHARE_SRC)/classes/sun/util/xml/META-INF/services/% |
|
53 $(install-file) |
|
54 |
|
55 build: copy-files |
|
56 |
|
57 clean:: |
|
58 $(RM) $(FILES_copy) |
|
59 |
|
60 |