Merge pull request #2768 from lambdageek/dev/monoerror-cominterop
[mono.git] / mcs / class / System.Runtime.Remoting / Makefile
index 98d8f0475dd1040be18e67de230fa0c645e3cdb8..eeb73d0894eefe4d3fa471d20c063fb544c3abad 100644 (file)
@@ -4,8 +4,12 @@ include ../../build/rules.make
 
 LIBRARY = System.Runtime.Remoting.dll
 
-LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:System.Web.dll \
-       /r:System.Xml.dll /r:System.Runtime.Serialization.Formatters.Soap.dll
+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
 
@@ -14,3 +18,4 @@ TEST_MONO_PATH = .
 EXTRA_DISTFILES = Test/corba-example.cs Test/simple-example.cs
 
 include ../../build/library.make
+