Merge pull request #2799 from BrzVlad/fix-conc-card-clean
[mono.git] / mcs / class / System.Runtime.Remoting / Makefile
index 3767a4efb867d77f51489c380db220eecbf419dc..eeb73d0894eefe4d3fa471d20c063fb544c3abad 100644 (file)
@@ -3,9 +3,19 @@ SUBDIRS =
 include ../../build/rules.make
 
 LIBRARY = System.Runtime.Remoting.dll
-LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:System.Web.dll \
-       /r:System.Runtime.Serialization.Formatters.Soap.dll
-NO_TEST = yes
+
+LIB_REFS = System System.Xml System.Runtime.Serialization.Formatters.Soap
+LIB_MCS_FLAGS = /r:$(corlib)
+
+ifndef NO_SYSTEM_WEB_DEPENDENCY
+LIB_REFS += System.Web
+endif
+
+TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618 /r:System.Runtime.Remoting.dll
+
+TEST_MONO_PATH = .
+
 EXTRA_DISTFILES = Test/corba-example.cs Test/simple-example.cs
 
 include ../../build/library.make
+