Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2015-02-27 06:27:27 +0300
committerZoltan Varga <vargaz@gmail.com>2015-02-27 06:27:27 +0300
commit37983f7fc3098e23522298e721896c559d84975a (patch)
treea47084c228f21039c04712ecd628d9a80e114dc7 /mcs/class/System.ServiceModel.Discovery
parent5cf4cbde3a5d18d3a2e9d8698a2f3a5798eb3152 (diff)
[build] Add dependency information for class libraries using a LIB_REFS variable which lists the assemblies a given assembly depends on to build.
Diffstat (limited to 'mcs/class/System.ServiceModel.Discovery')
-rw-r--r--mcs/class/System.ServiceModel.Discovery/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/mcs/class/System.ServiceModel.Discovery/Makefile b/mcs/class/System.ServiceModel.Discovery/Makefile
index 8b6932e7084..cf399e2e0d0 100644
--- a/mcs/class/System.ServiceModel.Discovery/Makefile
+++ b/mcs/class/System.ServiceModel.Discovery/Makefile
@@ -3,9 +3,11 @@ SUBDIRS =
include ../../build/rules.make
LIBRARY = System.ServiceModel.Discovery.dll
+LIB_REFS = System System.Xml System.Runtime.Serialization System.ServiceModel System.Core System.Xml.Linq
LIB_MCS_FLAGS = -r:System.dll -r:System.Xml.dll -r:System.Runtime.Serialization.dll -r:System.ServiceModel.dll -r:System.Core.dll -r:System.Xml.Linq.dll
ifneq (2.1, $(FRAMEWORK_VERSION))
+LIB_REFS += System.Configuration
LIB_MCS_FLAGS += -d:NET_3_5 -d:NET_3_0 \
-r:System.Configuration.dll
endif