Makefile 996 B

1234567891011121314151617181920212223242526272829303132
  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. ifeq (net_2_0, $(PROFILE))
  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/test.wsdl \
  26. Test/System.Web.Services.Description/test2.wsdl
  27. include ../../build/library.make