Makefile 1009 B

1234567891011121314151617181920212223242526272829303132333435
  1. thisdir = class/System.Runtime.Serialization
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. RESOURCE_FILES = \
  5. resources/mstypes.schema
  6. LIBRARY = System.Runtime.Serialization.dll
  7. LIB_MCS_FLAGS = \
  8. -unsafe \
  9. /nowarn:168,169,219,414 \
  10. /r:System.dll \
  11. /r:System.Xml.dll \
  12. /r:System.Core.dll \
  13. $(RESOURCE_FILES:%=/resource:%)
  14. RESOURCE_STRINGS = ../../../external/referencesource/System.Runtime.Serialization/System.Runtime.Serialization.txt
  15. ifneq (2.1, $(FRAMEWORK_VERSION))
  16. LIB_MCS_FLAGS += /d:NET_3_0 /r:System.Data.dll /r:System.Configuration.dll
  17. endif
  18. TEST_RESOURCE_FILES = \
  19. Test/Resources/WSDL/collections.wsdl \
  20. Test/Resources/WSDL/custom-collections.wsdl
  21. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /r:System.ServiceModel.dll /r:System.Web.Services.dll \
  22. $(TEST_RESOURCE_FILES:%=/resource:%)
  23. EXTRA_DISTFILES = $(RESOURCE_FILES) $(TEST_RESOURCE_FILES) \
  24. Test/Resources/FrameworkTypes/* \
  25. Test/Resources/Schemas/*.xsd \
  26. Test/System.Runtime.Serialization/one.xml
  27. include ../../build/library.make