Makefile 952 B

12345678910111213141516171819202122232425262728293031
  1. thisdir = class/System.Web.Services
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Web.Services.dll
  5. LIB_MCS_FLAGS = \
  6. -nowarn:649 -nowarn:169 \
  7. -r:$(corlib) \
  8. -r:System.dll \
  9. -r:System.EnterpriseServices.dll \
  10. -r:System.Xml.dll \
  11. -r:System.Web.dll
  12. ifneq (1, $(FRAMEWORK_VERSION_MAJOR))
  13. LIB_MCS_FLAGS += \
  14. -r:System.Configuration.dll \
  15. -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd \
  16. -resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd \
  17. -resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd
  18. endif
  19. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618
  20. EXTRA_DISTFILES = \
  21. System.Web.Services.Description/web-reference.xsd \
  22. System.Web.Services.Description/wsdl-1.1.xsd \
  23. System.Web.Services.Description/wsdl-1.1-soap.xsd \
  24. System.Web.Services.Description/wsdl.genxs \
  25. Test/System.Web.Services.Description/*.wsdl
  26. include ../../build/library.make