2
0

Makefile 1.0 KB

123456789101112131415161718192021222324252627
  1. thisdir = class/System.ServiceModel.Web
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.ServiceModel.Web.dll
  5. LIB_MCS_FLAGS = -d:NET_3_0 -r:System.dll -r:System.Xml.dll -r:System.Configuration.dll -r:System.Runtime.Serialization.dll -r:System.ServiceModel.dll
  6. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  7. EXTRA_DISTFILES = $(RESOURCE_FILES)
  8. VALID_PROFILE := $(filter net_2_0 net_2_1_raw, $(PROFILE))
  9. ifndef VALID_PROFILE
  10. LIBRARY_NAME = dummy-System.ServiceModel.Web.dll
  11. NO_INSTALL = yes
  12. NO_SIGN_ASSEMBLY = yes
  13. endif
  14. test-data-ondotnet:
  15. csc -out:SyndicationSerializerUtil.exe -r:System.ServiceModel.Web.dll $(LIB_MCS_FLAGS) Test\\System.ServiceModel.Syndication\\SyndicationSerializerUtil.cs Test\\System.ServiceModel.Syndication\\FeedLib.cs
  16. ./SyndicationSerializerUtil.exe
  17. test-data:
  18. $(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)
  19. ./SyndicationSerializerUtil.exe
  20. include ../../build/library.make