2010-01-04 Jb Evain <jbevain@novell.com>
[mono.git] / mcs / class / System.ServiceModel / Makefile
old mode 100644 (file)
new mode 100755 (executable)
index b393189..88a4aff
@@ -1,23 +1,60 @@
-thisdir = class/System.Runtime.Serialization
+thisdir = class/System.ServiceModel
 SUBDIRS = 
 include ../../build/rules.make
 
-LIBRARY = System.Runtime.Serialization.dll
+RESOURCE_FILES = \
+       resources/WS-Addressing.schema  \
+       resources/ws-addr.xsd
+
+LIBRARY = System.ServiceModel.dll
 LIB_MCS_FLAGS = \
+               /nowarn:414,169,67,3005,436,219,618 \
+               /unsafe \
                /r:System.dll \
-               /r:System.Xml.dll
+               /r:System.Xml.dll \
+               /r:System.Core.dll \
+               /r:System.Runtime.Serialization.dll \
+               $(RESOURCE_FILES:%=/resource:%)
+
+ifneq (2.1, $(FRAMEWORK_VERSION))
+LIB_MCS_FLAGS += /d:NET_3_0    \
+                       /r:System.Configuration.dll \
+                       /r:System.Data.dll      \
+                       /r:System.Security.dll \
+                       /r:System.IdentityModel.dll \
+                       /r:System.IdentityModel.Selectors.dll \
+                       /r:System.Transactions.dll \
+                       /r:System.Messaging.dll \
+                       /r:System.Web.dll \
+                       /r:System.Web.Services.dll \
+                       /r:Mono.Security.dll
+endif
+
+ifeq (net_2_1_raw, $(PROFILE))
+LIB_MCS_FLAGS += /r:System.Net
+endif
 
 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
 
-EXTRA_DISTFILES =
+TEST_EXTRA_FILES = \
+       System.ServiceModel_test_net_3_0.dll.config \
+       Test/config/* \
+       Test/Resources/* \
+       Test/System.ServiceModel.Description/dump.xml
 
-# This is a WinFX only assembly
-VALID_PROFILE := $(filter net_2_0 net_3_0, $(PROFILE))
+EXTRA_DISTFILES = $(RESOURCE_FILES) $(TEST_EXTRA_FILES)
+
+# Useful for debugging under Visual Studio 2005
+# NO_SIGN_ASSEMBLY = yes
+
+VALID_PROFILE := $(filter 2.0 2.1 4.0, $(FRAMEWORK_VERSION))
 ifndef VALID_PROFILE
-LIBRARY_NAME = dummy-System.Runtime.Serialization.dll
+LIBRARY_NAME = dummy-System.ServiceModel.dll
 NO_INSTALL = yes
 NO_SIGN_ASSEMBLY = yes
 NO_TEST = yes
 endif
 
+
+
 include ../../build/library.make