2009-10-02 Marek Safar <marek.safar@gmail.com>
[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 ifneq (2.1, $(FRAMEWORK_VERSION))
10 RESOURCE_FILES = \
11         resources/Asterisk.wav  \
12         resources/Beep.wav      \
13         resources/Exclamation.wav       \
14         resources/Hand.wav      \
15         resources/Question.wav
16 endif
17
18 TEST_RESOURCES = \
19         Test/System/test-uri-props.txt \
20         Test/System/test-uri-props-manual.txt \
21         Test/System/test-uri-relative-props.txt
22
23 TEST_MCS_FLAGS = -r:System.Drawing.dll -r:Mono.Security.dll -r:System.Data -nowarn:1595 -nowarn:0618 -nowarn:219 -nowarn:67 -nowarn:169 -nowarn:612 \
24         $(foreach f, $(TEST_RESOURCES), -resource:$(f),$(notdir $(f)))
25
26 ifneq (1, $(FRAMEWORK_VERSION_MAJOR))
27 LIB_MCS_FLAGS = -nowarn:618 -d:CONFIGURATION_2_0 -unsafe $(RESOURCE_FILES:%=-resource:%)
28 TEST_MCS_FLAGS += -r:System.Configuration
29 PROFILE_2_OR_4 := $(filter net_2_0 net_4_0, $(PROFILE))
30 NOT_SL := $(filter net_2_0 net_4_0 monotouch, $(PROFILE))
31 endif
32
33 EXTRA_DISTFILES = \
34         System.Text.RegularExpressions/notes.txt        \
35         System.ComponentModel.Design/Changelog          \
36         Test/test-config-file                           \
37         Test/test-config-file-net-2.0                   \
38         Test/System.Security.Cryptography.X509Certificates/pkits/ChangeLog      \
39         Test/System.Security.Cryptography.X509Certificates/pkits/Makefile       \
40         Test/System.Security.Cryptography.X509Certificates/pkits/README         \
41         Test/System.Security.Cryptography.X509Certificates/pkits/x509build.cs   \
42         $(RESOURCE_FILES)                               \
43         $(TEST_RESOURCES)
44
45 lib_file := $(wildcard ../lib/$(PROFILE)/System.dll)
46 ifdef lib_file
47 ifdef NOT_SL
48 LIB_MCS_FLAGS += -r:PrebuiltSystem=$(lib_file)
49 endif
50 else
51 USE_BOOT_COMPILE = yes
52 endif
53
54 ifdef USE_BOOT_COMPILE
55 LIBRARY_COMPILE = $(BOOT_COMPILE)
56 endif
57
58 # Because System.dll, Mono.Security.dll System.Xml.dll have a cyclic dependency, we need a two-pass build.
59 # 1st pass - build System.dll without System.Xml.dll or Mono.Security.dll or System.Configuration.dll references
60 # 2nd pass - build System.dll with System.Xml.dll and Mono.Security.dll or System.Configuration.dll references
61
62 CYCLIC_DEPS :=
63 CYCLIC_DEP_FILES :=
64
65 # define cyclic-dep
66 # # Note the '$$' -- those are to be delayed till the eval
67 # CYCLIC_DEPS += $1
68 # ifndef USE_BOOT_COMPILE
69 # FILE_$2 := $$(wildcard ../lib/$(PROFILE)/$1)
70 # endif
71 # ifdef FILE_$2
72 # CYCLIC_DEP_FILES += $$(FILE_$2)
73 # LIB_MCS_FLAGS += -d:$2 -r:$1
74 # endif
75 # endef
76
77 ifneq (2.1, $(FRAMEWORK_VERSION))
78 # $(eval $(call cyclic-dep,System.Xml.dll,XML_DEP))
79 CYCLIC_DEPS += System.Xml.dll
80 ifndef USE_BOOT_COMPILE
81 FILE_XML_DEP := $(wildcard ../lib/$(PROFILE)/System.Xml.dll)
82 endif
83 ifdef FILE_XML_DEP
84 CYCLIC_DEP_FILES += $(FILE_XML_DEP)
85 LIB_MCS_FLAGS += -d:XML_DEP -r:System.Xml.dll
86 endif
87
88 endif
89
90 ifdef NOT_SL
91 # $(eval $(call cyclic-dep,Mono.Security.dll,SECURITY_DEP))
92 CYCLIC_DEPS += Mono.Security.dll
93 ifndef USE_BOOT_COMPILE
94 FILE_SECURITY_DEP := $(wildcard ../lib/$(PROFILE)/Mono.Security.dll)
95 endif
96 ifdef FILE_SECURITY_DEP
97 CYCLIC_DEP_FILES += $(FILE_SECURITY_DEP)
98 LIB_MCS_FLAGS += -d:SECURITY_DEP -r:Mono.Security.dll
99 endif
100
101 # $(eval $(call cyclic-dep,System.Configuration.dll,CONFIGURATION_DEP))
102 CYCLIC_DEPS += System.Configuration.dll
103 ifndef USE_BOOT_COMPILE
104 FILE_CONFIGURATION_DEP := $(wildcard ../lib/$(PROFILE)/System.Configuration.dll)
105 endif
106 ifdef FILE_CONFIGURATION_DEP
107 CYCLIC_DEP_FILES += $(FILE_CONFIGURATION_DEP)
108 LIB_MCS_FLAGS += -d:CONFIGURATION_DEP -r:System.Configuration.dll
109 endif
110
111 endif
112
113 MISSING_DEPS := $(filter-out $(notdir $(CYCLIC_DEP_FILES)), $(CYCLIC_DEPS))
114 ifdef MISSING_DEPS
115 NO_SIGN_ASSEMBLY = yes
116 NO_INSTALL = yes
117 all-local: handle-missing-deps
118 .PHONY: handle-missing-deps
119 handle-missing-deps:
120         @echo "** Warning: System.dll built without parts that depend on: $(MISSING_DEPS)"
121         @for f in $(MISSING_DEPS:%=../lib/$(PROFILE)/%); do \
122           test ! -f $$f || { echo "   purging stale $$f"; rm -f $$f; }; done
123 endif
124
125 include ../../build/library.make
126
127 $(build_lib): $(CYCLIC_DEP_FILES)
128
129 $(test_lib): $(test_lib).config $(TEST_RESOURCES)
130
131 ifeq (net_2_0, $(PROFILE))
132 $(test_lib).config: Test/test-config-file-net-2.0
133         cp $< $@
134 else
135 $(test_lib).config: Test/test-config-file
136         cp $< $@
137 endif
138
139 CLEAN_FILES = $(test_lib).config
140
141 # run the PKITS tests only if the data was installed/activated, otherwise ignore them
142 ifeq (net_2_0, $(PROFILE))
143 pkits_files := $(wildcard Test/System.Security.Cryptography.X509Certificates/pkits/hint)
144 ifndef pkits_files
145 TEST_HARNESS_EXCLUDES = -exclude=$(PLATFORM_TEST_HARNESS_EXCLUDES)NotWorking,ValueAdd,CAS,InetAccess,PKITS
146 TEST_HARNESS_EXCLUDES_ONDOTNET = -exclude=$(PLATFORM_TEST_HARNESS_EXCLUDES)NotDotNet,CAS,PKITS
147 endif
148 endif
149
150 # Helper target to run the perl regex test suite
151 regex-check:
152         $(MAKE) check FIXTURE=System.Text.RegularExpressions.PerlTest