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:
Diffstat (limited to 'mcs/class/System.Web.Services/Makefile')
-rw-r--r--mcs/class/System.Web.Services/Makefile18
1 files changed, 2 insertions, 16 deletions
diff --git a/mcs/class/System.Web.Services/Makefile b/mcs/class/System.Web.Services/Makefile
index 566da23778b..308990590f3 100644
--- a/mcs/class/System.Web.Services/Makefile
+++ b/mcs/class/System.Web.Services/Makefile
@@ -16,15 +16,11 @@ LIB_REFS = System System.EnterpriseServices System.Xml System.Data
LIB_MCS_FLAGS = -nowarn:168,612,618,649 -d:MONO_BROKEN_CONFIGURATION_DLL
ifndef NO_SYSTEM_WEB_DEPENDENCY
-plainweb = $(the_libdir_base)plainweb/System.Web.dll
-system_web_deps = $(plainweb)
-LIB_REFS += plainweb/System.Web
+API_BIN_REFS := System.Web
endif
ifndef NO_SYSTEM_DESIGN_DEPENDENCY
-plaindesign = $(the_libdir_base)plaindesign/System.Design.dll
-system_design_deps = $(plaindesign)
-LIB_REFS += plaindesign/System.Design
+LIB_REFS += System.Design
endif
ifndef NO_SYSTEM_DIRECTORY_SERVICES_DEPENDENCY
@@ -56,13 +52,3 @@ EXTRA_DISTFILES = \
Test/System.Web.Services.Description/*.wsdl
include ../../build/library.make
-
-$(the_libdir_base)$(LIBRARY): $(system_web_deps) $(system_design_deps)
-
-$(plainweb):
- (cd ../System.Web; $(MAKE) $@)
-
-$(plaindesign):
- (cd ../System.Design; $(MAKE) $@)
-
-.NOTPARALLEL: $(plainweb) $(plaindesign)