Add unit test for AggregateException.GetBaseException that works on .net but is broke...
[mono.git] / mcs / class / System.Web.Services / Makefile
1 thisdir = class/System.Web.Services
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Web.Services.dll
6 MOBILE := $(filter monotouch monodroid mobile mobile_static, $(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
24
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
33
34 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618
35
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
42
43 include ../../build/library.make