Makefile 831 B

123456789101112131415161718192021222324252627282930313233
  1. thisdir = class/System.Configuration
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Configuration.dll
  5. LOCAL_MCS_FLAGS = -lib:$(secxml_libdir) -lib:$(bare_libdir)
  6. test_remove = $(LOCAL_MCS_FLAGS)
  7. LIB_REFS = System System.Xml System.Security
  8. LIB_MCS_FLAGS = -r:$(corlib) -nowarn:618
  9. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  10. include ../../build/library.make
  11. configuration_library_deps = \
  12. $(secxml_libdir)/System.dll \
  13. $(the_libdir_base)System.Security.dll \
  14. $(bare_libdir)/System.Xml.dll
  15. $(build_lib): $(configuration_library_deps)
  16. .NOTPARALLEL: $(configuration_library_deps)
  17. $(secxml_libdir)/System.dll:
  18. @echo System.Configuration: GETTING: $@
  19. (cd ../System; $(MAKE) $@)
  20. $(the_libdir_base)System.Security.dll:
  21. (cd ../System.Security; $(MAKE) $@)
  22. $(bare_libdir)/System.Xml.dll:
  23. (cd ../System.XML; $(MAKE) $@)