[btls] Remove the statically linked btls code, the dynamic version should work on...
[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
8 ifneq (2.1, $(FRAMEWORK_VERSION))
9 RESOURCE_FILES = \
10         resources/Asterisk.wav  \
11         resources/Beep.wav      \
12         resources/Exclamation.wav       \
13         resources/Hand.wav      \
14         resources/Question.wav
15 endif
16
17 TEST_RESOURCES = \
18         Test/System/test-uri-props.txt \
19         Test/System/test-uri-props-manual.txt \
20         Test/System/test-uri-relative-props.txt
21
22 ifndef NO_MONO_SECURITY
23 MONO_SECURITY=Mono.Security
24 MONO_SECURITY_REF=MonoSecurity=Mono.Security
25 MONO_SECURITY_DLL=$(the_libdir_base)Mono.Security.dll
26 endif
27
28 ifndef MOBILE_PROFILE
29 TEST_LIB_REFS = System.Drawing $(MONO_SECURITY) System.Data System.Xml System.Core System.Configuration
30 else
31 TEST_LIB_REFS = $(MONO_SECURITY) System.Data System.Xml System.Core
32 endif
33
34 TEST_MCS_FLAGS = -nowarn:618,672,219,67,169,612 \
35         $(foreach f, $(TEST_RESOURCES), -resource:$(f),$(notdir $(f)))
36
37 REFERENCE_SOURCES_FLAGS = -d:FEATURE_PAL,SYSTEM_NAMESPACE,MONO,PLATFORM_UNIX
38 ifndef NO_PROCESS_START
39 REFERENCE_SOURCES_FLAGS += -d:MONO_FEATURE_PROCESS_START
40 TEST_MCS_FLAGS += -d:MONO_FEATURE_PROCESS_START
41 endif
42
43 LIB_MCS_FLAGS = -d:CONFIGURATION_2_0 $(REFERENCE_SOURCES_FLAGS) -unsafe $(RESOURCE_FILES:%=-resource:%)
44
45 ifndef PROFILE_DISABLE_BTLS
46 ifdef HAVE_BTLS
47
48 LIB_MCS_FLAGS += -d:MONO_FEATURE_BTLS
49
50 endif
51 endif
52
53 ifndef NO_THREAD_ABORT
54 REFERENCE_SOURCES_FLAGS += -d:MONO_FEATURE_THREAD_ABORT
55 TEST_MCS_FLAGS += -d:MONO_FEATURE_THREAD_ABORT
56 endif
57
58 ifndef NO_THREAD_SUSPEND_RESUME
59 REFERENCE_SOURCES_FLAGS += -d:MONO_FEATURE_THREAD_SUSPEND_RESUME
60 TEST_MCS_FLAGS += -d:MONO_FEATURE_THREAD_SUSPEND_RESUME
61 endif
62
63 ifndef NO_MULTIPLE_APPDOMAINS
64 REFERENCE_SOURCES_FLAGS += -d:MONO_FEATURE_MULTIPLE_APPDOMAINS
65 TEST_MCS_FLAGS += -d:MONO_FEATURE_MULTIPLE_APPDOMAINS
66 endif
67
68 TXT_RESOURCE_STRINGS = ../referencesource/System/System.txt
69
70 #
71 # MOBILE_PROFILE needs SECURITY_DEP
72 #
73 ifdef MOBILE_PROFILE
74 LIB_MCS_FLAGS += -d:INSIDE_SYSTEM -d:SECURITY_DEP -nowarn:618,1635
75 else
76 EXTERN_ALIAS_FLAGS = -d:MONO_SECURITY_ALIAS
77 endif
78
79 #
80 # Flags used to build the secxml version of System.
81 #
82 ifeq (secxml/, $(intermediate))
83 LOCAL_MCS_FLAGS =
84 LIB_REFS += bare/System.Xml $(MONO_SECURITY_REF)
85 LIB_MCS_FLAGS += -d:SECURITY_DEP -d:XML_DEP $(EXTERN_ALIAS_FLAGS)
86 endif
87
88 #
89 # Flags used to build the final version of System (when intermediate is not defined)
90 #
91 ifndef intermediate
92 LIB_REFS += System.Xml $(MONO_SECURITY_REF)
93 LIB_MCS_FLAGS += -d:SECURITY_DEP -d:XML_DEP $(EXTERN_ALIAS_FLAGS)
94
95 ifndef MOBILE_PROFILE
96 LIB_REFS += System.Configuration
97 LIB_MCS_FLAGS += -d:CONFIGURATION_DEP
98 endif
99
100 endif
101
102 EXTRA_DISTFILES = \
103         Test/test-config-file                           \
104         Test/test-config-file-net-2.0                   \
105         Test/System.Security.Cryptography.X509Certificates/pkits/Makefile       \
106         Test/System.Security.Cryptography.X509Certificates/pkits/README         \
107         Test/System.Security.Cryptography.X509Certificates/pkits/x509build.cs   \
108         $(RESOURCE_FILES)                               \
109         $(TEST_RESOURCES)
110
111 include ../../build/library.make
112
113 system_library_deps := \
114         $(secxml_libdir)/System.dll             \
115         $(the_libdir_base)System.Xml.dll        \
116         $(MONO_SECURITY_DLL)                            \
117         $(bare_libdir)/System.dll
118
119 ifndef MOBILE_PROFILE
120 system_library_deps += $(the_libdir_base)System.Configuration.dll       
121 endif
122
123 artifacts = $(system_library_deps)                      \
124         $(bare_libdir)/System.Xml.dll                   \
125         $(MONO_SECURITY_DLL)                            \
126         $(the_libdir_base)System.Configuration.dll
127
128 .NOTPARALLEL: $(system_library_deps)
129
130 $(the_libdir_base)System.dll: $(system_library_deps) ../Mono.Security/Makefile
131
132 ifeq (bare/,$(intermediate))
133 build-bare:
134 else
135 $(bare_libdir)/System.dll:
136         $(MAKE) intermediate=bare/ $(bare_libdir)/System.dll
137 endif
138
139 ifneq (secxml/,$(intermediate))
140 $(secxml_libdir)/System.dll: $(bare_libdir)/System.dll $(bare_libdir)/System.Xml.dll $(MONO_SECURITY_DLL) $(bare_libdir)/System.dll
141         $(MAKE) intermediate=secxml/ $(secxml_libdir)/System.dll
142 else
143 build-sec:
144 endif
145
146 $(the_libdir_base)System.Xml.dll:
147         (cd ../System.XML; $(MAKE) $@)
148
149 $(bare_libdir)/System.Xml.dll:
150         (cd ../System.XML; $(MAKE) $@)
151
152 $(the_libdir_base)Mono.Security.dll: ../Mono.Security/Makefile
153         (cd ../Mono.Security; $(MAKE))
154
155 $(the_libdir_base)System.Configuration.dll:
156         (cd ../System.Configuration; $(MAKE))
157
158 $(build_lib): $(CYCLIC_DEP_FILES)
159
160 $(test_lib): $(test_lib).config $(TEST_RESOURCES)
161
162 $(test_lib).config: Test/test-config-file
163         cp $< $@
164
165 CLEAN_FILES = $(test_lib).config $(bare_libdir)/System.dll $(secxml_libdir)/System.dll $(bare_libdir)/System.dll.mdb $(secxml_libdir)/System.dll.mdb
166
167 # Helper target to run the perl regex test suite
168 regex-check:
169         $(MAKE) check FIXTURE=System.Text.RegularExpressions.PerlTest
170
171 #Debuging target
172 fresh: clean
173         rm -rf ../../class/lib/$(PROFILE)/bare ../../class/lib/$(PROFILE)/bare/ $(system_library_deps)
174
175 ifndef intermediate
176 ifneq ($(PROFILE),basic)
177 csproj-local:
178         $(MAKE) csproj-local intermediate=bare/
179         $(MAKE) csproj-local intermediate=secxml/
180 endif
181 endif