Makefile 722 B

12345678910111213141516171819202122232425262728
  1. thisdir = class/System.ServiceModel.Web.Extensions
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.ServiceModel.Web.Extensions.dll
  5. LIB_REFS = System System.Xml System.Runtime.Serialization System.ServiceModel System.Core System.ServiceModel.Web
  6. LIB_MCS_FLAGS =
  7. ifeq (2.1, $(FRAMEWORK_VERSION))
  8. LIB_REFS += System.Xml.Serialization System.Net
  9. endif
  10. ifneq (2.1, $(FRAMEWORK_VERSION))
  11. LIB_REFS += System.Configuration
  12. endif
  13. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  14. EXTRA_DISTFILES = $(RESOURCE_FILES)
  15. VALID_PROFILE := $(filter 2.1, $(FRAMEWORK_VERSION))
  16. ifndef VALID_PROFILE
  17. LIBRARY_NAME = dummy-System.ServiceModel.Web.Extensions.dll
  18. NO_INSTALL = yes
  19. NO_SIGN_ASSEMBLY = yes
  20. endif
  21. include ../../build/library.make