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:
authorRaja R Harinath <harinath@hurrynot.org>2004-06-09 14:02:25 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-06-09 14:02:25 +0400
commitfb98cfaf905296153edeb48631a00713e2bc085c (patch)
tree1845c0eb05777b0e56d49c3f0e385794708d550e /mcs/class/System/Makefile
parent31fdfdaac3b3e8943f94d16a55cf64744e08aca8 (diff)
Simplify slightly.
svn path=/trunk/mcs/; revision=29101
Diffstat (limited to 'mcs/class/System/Makefile')
-rw-r--r--mcs/class/System/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/mcs/class/System/Makefile b/mcs/class/System/Makefile
index 96b36c920ca..41d2c0ab8c3 100644
--- a/mcs/class/System/Makefile
+++ b/mcs/class/System/Makefile
@@ -12,15 +12,14 @@ LIB_MCS_FLAGS = /r:$(corlib)
TEST_MCS_FLAGS = /nowarn:1595 /nowarn:0618
CYCLIC_DEP := System.Xml.dll
-CYCLIC_DEP_FILE := ../lib/$(PROFILE)/$(CYCLIC_DEP)
-HAVE_CYCLIC_DEP_FILE := $(wildcard $(CYCLIC_DEP_FILE))
+CYCLIC_DEP_FILE := $(wildcard ../lib/$(PROFILE)/$(CYCLIC_DEP))
EXTRA_DISTFILES = \
System.Text.RegularExpressions/notes.txt \
System.ComponentModel.Design/Changelog \
Test/test-config-file
-ifdef HAVE_CYCLIC_DEP_FILE
+ifdef CYCLIC_DEP_FILE
LIB_MCS_FLAGS += /define:XML_DEP /r:$(CYCLIC_DEP)
else
@@ -33,11 +32,11 @@ endif
include ../../build/library.make
-ifdef HAVE_CYCLIC_DEP_FILE
+ifdef CYCLIC_DEP_FILE
$(the_lib): $(CYCLIC_DEP_FILE)
else
$(the_lib): echo-warning
.PHONY: echo-warning
echo-warning:
@echo "** Building temporary System.dll without parts that depend on System.Xml"
-endif \ No newline at end of file
+endif