Makefile 784 B

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