move to from olive to mcs
[mono.git] / mcs / class / System.ServiceModel / Makefile
1 thisdir = class/System.ServiceModel
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 RESOURCE_FILES = \
6         resources/WS-Addressing.schema  \
7         resources/ws-addr.xsd
8
9 LIBRARY = System.ServiceModel.dll
10 LIB_MCS_FLAGS = \
11                 /nowarn:414,169,67,3005,436,219,618 \
12                 /unsafe \
13                 /r:System.dll \
14                 /r:System.Xml.dll \
15                 /r:System.Configuration.dll \
16                 /r:../lib/net_3_0/System.Runtime.Serialization.dll \
17                 /r:System.Security.dll \
18                 /r:../lib/net_3_0/System.IdentityModel.dll \
19                 /r:../lib/net_3_0/System.IdentityModel.Selectors.dll \
20                 /r:System.Transactions.dll \
21                 /r:System.Messaging.dll \
22                 /r:System.Web.dll \
23                 /r:System.Web.Services.dll \
24                 /r:Mono.Security.dll \
25                 $(RESOURCE_FILES:%=/resource:%)
26
27 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
28
29 TEST_EXTRA_FILES = \
30         System.ServiceModel_test_net_3_0.dll.config \
31         Test/config/* \
32         Test/Resources/* \
33         Test/System.ServiceModel.Description/dump.xml
34
35 EXTRA_DISTFILES = $(RESOURCE_FILES) $(TEST_EXTRA_FILES)
36
37 # This is a WinFX only assembly
38
39 # Useful for debugging under Visual Studio 2005
40 # NO_SIGN_ASSEMBLY = yes
41
42 VALID_PROFILE := $(filter net_3_0 net_3_5, $(PROFILE))
43 ifndef VALID_PROFILE
44 LIBRARY_NAME = dummy-System.ServiceModel.dll
45 NO_INSTALL = yes
46 NO_SIGN_ASSEMBLY = yes
47 NO_TEST = yes
48 endif
49
50
51 include ../../build/library.make