be94478c7294566a91a86036e65e78c0c9671c51
[mono.git] / mcs / class / System / Makefile
1 thisdir = class/System
2 SUBDIRS =
3 include ../../build/rules.make
4 export __SECURITY_BOOTSTRAP_DB=$(topdir)/class/lib/$(PROFILE)
5
6 LIBRARY = System.dll
7 LIBRARY_USE_INTERMEDIATE_FILE = yes
8
9 # Because System.dll, Mono.Security.dll System.Xml.dll have a cyclic dependency, we need a two-pass build.
10 # 1st pass - build System.dll without System.Xml.dll or Mono.Security.dll or System.Configuration.dll references
11 # 2nd pass - build System.dll with System.Xml.dll and Mono.Security.dll or System.Configuration.dll references
12
13 TEST_RESOURCES = \
14         Test/System/test-uri-props.txt \
15         Test/System/test-uri-props-manual.txt \
16         Test/System/test-uri-relative-props.txt
17
18 TEST_MCS_FLAGS = -r:System.Drawing.dll -r:Mono.Security.dll -nowarn:1595 -nowarn:0618 -nowarn:219 -nowarn:67 -nowarn:169 -nowarn:612 \
19         $(foreach f, $(TEST_RESOURCES), -resource:$(f),$(notdir $(f)))
20
21 XML_DEP := System.Xml.dll
22 XML_DEP_FILE := $(wildcard ../lib/$(PROFILE)/$(XML_DEP))
23 CYCLIC_DEPS := $(XML_DEP)
24 CYCLIC_DEP_FILES := $(XML_DEP_FILE)
25
26 ifeq (2.0, $(FRAMEWORK_VERSION))
27 # Happens on net_2_0_bootstrap and net_2_0 profiles
28 SECURITY_DEP := Mono.Security.dll
29 SECURITY_DEP_FILE := $(wildcard ../lib/$(PROFILE)/$(SECURITY_DEP))
30 CONFIGURATION_DEP := System.Configuration.dll
31 CONFIGURATION_DEP_FILE := $(wildcard ../lib/$(PROFILE)/$(CONFIGURATION_DEP))
32 CYCLIC_DEPS += $(SECURITY_DEP) $(CONFIGURATION_DEP)
33 CYCLIC_DEP_FILES += $(SECURITY_DEP_FILE) $(CONFIGURATION_DEP_FILE)
34 LIB_MCS_FLAGS = -nowarn:618 -d:CONFIGURATION_2_0
35 endif
36
37 EXTRA_DISTFILES = \
38         System.Text.RegularExpressions/notes.txt        \
39         System.ComponentModel.Design/Changelog          \
40         Test/test-config-file                           \
41         $(TEST_RESOURCES)
42
43 lib_file := $(wildcard ../lib/$(PROFILE)/System.dll)
44 ifndef lib_file
45 USE_BOOT_COMPILE = yes
46 endif
47
48 ifeq (net_2_0, $(PROFILE))
49 BOOTSTRAP_MCS = MONO_PATH="$(topdir)/class/lib/net_2_0$(PLATFORM_PATH_SEPARATOR)$(topdir)/class/lib/net_2_0_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(INTERNAL_GMCS)
50 endif
51
52 ifdef USE_BOOT_COMPILE
53 LIBRARY_COMPILE = $(BOOT_COMPILE)
54 endif
55
56 ifneq ($(CYCLIC_DEPS:%=../lib/$(PROFILE)/%), $(CYCLIC_DEP_FILES))
57 NO_SIGN_ASSEMBLY = yes
58 NO_INSTALL = yes
59 all-local: echo-warning
60 .PHONY: echo-warning
61
62 ifeq   (, $(strip $(CYCLIC_DEP_FILES)))
63 echo-warning:
64         @echo "** Warning: System.dll built without parts that depend on: $(CYCLIC_DEPS)"
65 else     # defined CYCLIC_DEP_FILES
66 ifdef      SECURITY_DEP_FILE
67 echo-warning:
68         @echo "** Warning: built System.dll with 'Mono.Security.dll'-dependent parts"
69         @echo "** Warning: ... without 'System.Xml.dll' present: it may not be usable"
70         @echo "** Warning: ... without 'System.Configuration.dll' present: it may not be usable"
71 else
72 echo-warning:
73         @echo "** Warning: System.dll built without parts that depend on Mono.Security.dll"
74 endif
75 endif
76 endif
77
78 include ../../build/library.make
79
80 ifdef XML_DEP_FILE
81 LIB_MCS_FLAGS += /define:XML_DEP /r:$(XML_DEP)
82 $(the_lib): $(XML_DEP_FILE)
83 endif
84
85 ifdef SECURITY_DEP_FILE
86 LIB_MCS_FLAGS += /define:SECURITY_DEP -r:Mono.Security.dll
87 $(the_lib): $(SECURITY_DEP_FILE)
88 endif
89
90 ifdef CONFIGURATION_DEP_FILE
91 LIB_MCS_FLAGS += /define:CONFIGURATION_DEP /r:$(CONFIGURATION_DEP) /r:PrebuiltSystem=$(topdir)/class/lib/$(PROFILE)/System.dll
92 $(the_lib): $(CONFIGURATION_DEP_FILE)
93 endif
94
95 $(test_lib): $(test_lib).config $(TEST_RESOURCES)
96
97 $(test_lib).config: Test/test-config-file
98         cp $< $@
99
100 CLEAN_FILES = $(test_lib).config