Add a mono_arch_context_set_int_reg () function, amd64 only for now.
[mono-project/dkf.git] / mcs / class / System.Web.Services / Makefile
blob666ebdbcf36f1ede9671b71274191d1964b86b1b
1 thisdir = class/System.Web.Services
2 SUBDIRS =
3 include ../../build/rules.make
5 LIBRARY = System.Web.Services.dll
6 MOBILE := $(filter monotouch monodroid, $(PROFILE))
7 ifdef MOBILE
8 LIB_MCS_FLAGS = \
9 -nowarn:649 -nowarn:169 \
10 -r:$(corlib) \
11 -r:System.dll \
12 -r:System.Xml.dll \
13 -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd \
14 -resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd \
15 -resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd
16 else
17 LIB_MCS_FLAGS = \
18 -nowarn:649 -nowarn:169 \
19 -r:$(corlib) \
20 -r:System.dll \
21 -r:System.EnterpriseServices.dll \
22 -r:System.Xml.dll \
23 -r:System.Web.dll
25 ifneq (1, $(FRAMEWORK_VERSION_MAJOR))
26 LIB_MCS_FLAGS += \
27 -r:System.Configuration.dll \
28 -resource:System.Web.Services.Description/wsdl-1.1.xsd,wsdl-1.1.xsd \
29 -resource:System.Web.Services.Description/wsdl-1.1-soap.xsd,wsdl-1.1-soap.xsd \
30 -resource:System.Web.Services.Description/web-reference.xsd,web-reference.xsd
31 endif
32 endif
34 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618
36 EXTRA_DISTFILES = \
37 System.Web.Services.Description/web-reference.xsd \
38 System.Web.Services.Description/wsdl-1.1.xsd \
39 System.Web.Services.Description/wsdl-1.1-soap.xsd \
40 System.Web.Services.Description/wsdl.genxs \
41 Test/System.Web.Services.Description/*.wsdl
43 include ../../build/library.make