Makefile 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. thisdir = class/System.ServiceModel.Web
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.ServiceModel.Web.dll
  5. LIB_MCS_FLAGS = -r:System.dll -r:System.Xml.dll -r:System.Runtime.Serialization.dll -r:System.ServiceModel.dll -r:System.Core.dll
  6. ifneq (2.1, $(FRAMEWORK_VERSION))
  7. LIB_MCS_FLAGS += -d:NET_3_5 -d:NET_3_0 \
  8. /r:System.Configuration.dll
  9. endif
  10. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  11. EXTRA_DISTFILES = $(RESOURCE_FILES)
  12. VALID_PROFILE := $(filter 2.0 2.1 4.0, $(FRAMEWORK_VERSION))
  13. ifndef VALID_PROFILE
  14. LIBRARY_NAME = dummy-System.ServiceModel.Web.dll
  15. NO_INSTALL = yes
  16. NO_SIGN_ASSEMBLY = yes
  17. endif
  18. test-data-ondotnet:
  19. csc -out:SyndicationSerializerUtil.exe -r:System.ServiceModel.Web.dll $(LIB_MCS_FLAGS) Test\\System.ServiceModel.Syndication\\SyndicationSerializerUtil.cs Test\\System.ServiceModel.Syndication\\FeedLib.cs
  20. ./SyndicationSerializerUtil.exe
  21. test-data:
  22. $(LIBRARY_COMPILE) Test/System.ServiceModel.Syndication/SyndicationSerializerUtil.cs Test/System.ServiceModel.Syndication/FeedLib.cs -out:SyndicationSerializerUtil.exe -r:System.ServiceModel.Web.dll $(LIB_MCS_FLAGS)
  23. ./SyndicationSerializerUtil.exe
  24. include ../../build/library.make