Makefile 842 B

1234567891011121314151617181920212223242526272829303132
  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_MCS_FLAGS = -r:$(corlib) -r:System.dll -r:System.Xml.dll -r:System.Security.dll -nowarn:618
  8. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  9. include ../../build/library.make
  10. configuration_library_deps = \
  11. $(secxml_libdir)/System.dll \
  12. $(the_libdir_base)System.Security.dll \
  13. $(bare_libdir)/System.Xml.dll
  14. $(build_lib): $(configuration_library_deps)
  15. .NOTPARALLEL: $(configuration_library_deps)
  16. $(secxml_libdir)/System.dll:
  17. @echo System.Configuration: GETTING: $@
  18. (cd ../System; $(MAKE) $@)
  19. $(the_libdir_base)System.Security.dll:
  20. (cd ../System.Security; $(MAKE) $@)
  21. $(bare_libdir)/System.Xml.dll:
  22. (cd ../System.XML; $(MAKE) $@)